mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-02-09 23:58:44 +01:00
switch to more recent ubuntu version for CI
This commit is contained in:
parent
77aacc2e5d
commit
ff9a19381b
4
.github/workflows/cmake.yml
vendored
4
.github/workflows/cmake.yml
vendored
@ -5,8 +5,6 @@ on: [push]
|
|||||||
env:
|
env:
|
||||||
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
|
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
|
||||||
BUILD_TYPE: Release
|
BUILD_TYPE: Release
|
||||||
CC: gcc-8
|
|
||||||
CXX: g++-8
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
@ -14,7 +12,7 @@ jobs:
|
|||||||
# well on Windows or Mac. You can convert this to a matrix build if you need
|
# well on Windows or Mac. You can convert this to a matrix build if you need
|
||||||
# cross-platform coverage.
|
# cross-platform coverage.
|
||||||
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
|
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-20.04
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
@ -33,19 +33,19 @@ namespace credits {
|
|||||||
|
|
||||||
ImGui::Text("Contributors");
|
ImGui::Text("Contributors");
|
||||||
for (int i = 0; i < sdrpp_credits::contributorCount; i++) {
|
for (int i = 0; i < sdrpp_credits::contributorCount; i++) {
|
||||||
ImGui::BulletText(sdrpp_credits::contributors[i]);
|
ImGui::BulletText("%s", sdrpp_credits::contributors[i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
ImGui::NextColumn();
|
ImGui::NextColumn();
|
||||||
ImGui::Text("Libraries");
|
ImGui::Text("Libraries");
|
||||||
for (int i = 0; i < sdrpp_credits::libraryCount; i++) {
|
for (int i = 0; i < sdrpp_credits::libraryCount; i++) {
|
||||||
ImGui::BulletText(sdrpp_credits::libraries[i]);
|
ImGui::BulletText("%s", sdrpp_credits::libraries[i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
ImGui::NextColumn();
|
ImGui::NextColumn();
|
||||||
ImGui::Text("Patrons");
|
ImGui::Text("Patrons");
|
||||||
for (int i = 0; i < sdrpp_credits::patronCount; i++) {
|
for (int i = 0; i < sdrpp_credits::patronCount; i++) {
|
||||||
ImGui::BulletText(sdrpp_credits::patrons[i]);
|
ImGui::BulletText("%s", sdrpp_credits::patrons[i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
ImGui::Columns(1, "CreditColumnsEnd", true);
|
ImGui::Columns(1, "CreditColumnsEnd", true);
|
||||||
|
@ -44,19 +44,19 @@ namespace LoadingScreen {
|
|||||||
|
|
||||||
ImGui::Text("Contributors");
|
ImGui::Text("Contributors");
|
||||||
for (int i = 0; i < sdrpp_credits::contributorCount; i++) {
|
for (int i = 0; i < sdrpp_credits::contributorCount; i++) {
|
||||||
ImGui::BulletText(sdrpp_credits::contributors[i]);
|
ImGui::BulletText("%s", sdrpp_credits::contributors[i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
ImGui::NextColumn();
|
ImGui::NextColumn();
|
||||||
ImGui::Text("Libraries");
|
ImGui::Text("Libraries");
|
||||||
for (int i = 0; i < sdrpp_credits::libraryCount; i++) {
|
for (int i = 0; i < sdrpp_credits::libraryCount; i++) {
|
||||||
ImGui::BulletText(sdrpp_credits::libraries[i]);
|
ImGui::BulletText("%s", sdrpp_credits::libraries[i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
ImGui::NextColumn();
|
ImGui::NextColumn();
|
||||||
ImGui::Text("Patrons");
|
ImGui::Text("Patrons");
|
||||||
for (int i = 0; i < sdrpp_credits::patronCount; i++) {
|
for (int i = 0; i < sdrpp_credits::patronCount; i++) {
|
||||||
ImGui::BulletText(sdrpp_credits::patrons[i]);
|
ImGui::BulletText("%s", sdrpp_credits::patrons[i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
ImGui::Columns(1, "CreditColumnsEnd", true);
|
ImGui::Columns(1, "CreditColumnsEnd", true);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user