diff options
author | Saturneric <[email protected]> | 2021-06-26 12:07:35 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-06-26 12:07:35 +0000 |
commit | 9de2949c7eab102b300cd7f0f4a73242a1da935a (patch) | |
tree | 7321a2afdbe3d2b2370e47a95533044886cad06a | |
parent | Update CI (diff) | |
download | GpgFrontend-9de2949c7eab102b300cd7f0f4a73242a1da935a.tar.gz GpgFrontend-9de2949c7eab102b300cd7f0f4a73242a1da935a.zip |
Update CI
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/release-ci.yml | 4 | ||||
-rw-r--r-- | CMakeLists.txt | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/release-ci.yml b/.github/workflows/release-ci.yml index 566abe1e..4aed2c22 100644 --- a/.github/workflows/release-ci.yml +++ b/.github/workflows/release-ci.yml @@ -118,12 +118,12 @@ jobs: # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. # See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DEXECUTABLE_OUTPUT_PATH=${{env.EXECUTABLE_OUTPUT_PATH}} - if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest' + if: matrix.os == 'uubuntu-16.04' || matrix.os == 'macos-latest' - name: Build GpgFrontend # Build your program with the given configuration run: cmake --build ${{github.workspace}}/build --config $env.BUILD_TYPE}} -- -j 2 - if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest' + if: matrix.os == 'uubuntu-16.04' || matrix.os == 'macos-latest' - name: Package App Bundle (macOS) run: | diff --git a/CMakeLists.txt b/CMakeLists.txt index 75029131..6b177a7f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.16) +cmake_minimum_required(VERSION 3.5) project(GpgFrontend VERSION 1.0.6 LANGUAGES CXX) |