aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSaturn&Eric <[email protected]>2021-06-20 12:14:54 +0000
committerGitHub <[email protected]>2021-06-20 12:14:54 +0000
commitc6248e5c2e925b3953908c2d65d6c4b02e2ade80 (patch)
treea88f890826dd604ee71e277249215894100534a9
parentUpdate cmake.yml (diff)
downloadGpgFrontend-c6248e5c2e925b3953908c2d65d6c4b02e2ade80.tar.gz
GpgFrontend-c6248e5c2e925b3953908c2d65d6c4b02e2ade80.zip
Update cmake.yml
Diffstat (limited to '')
-rw-r--r--.github/workflows/cmake.yml8
1 files changed, 2 insertions, 6 deletions
diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml
index fb11c6a0..1b74cd20 100644
--- a/.github/workflows/cmake.yml
+++ b/.github/workflows/cmake.yml
@@ -78,12 +78,8 @@ jobs:
cd $(echo "/${{github.workspace}}" | sed 's/\\/\//g' | sed 's/://')
mkdir build && cd build
cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DEXECUTABLE_OUTPUT_PATH=${{env.EXECUTABLE_OUTPUT_PATH}} ..
- if: matrix.os == 'windows-latest'
-
- - name: Build GpgFrontend (Windows)
- shell: msys2 {0}
- # Build your program with the given configuration
- run: cmake --build . --config ${{env.BUILD_TYPE}} -- -j 2
+ # Build your program with the given configuration
+ cmake --build . --config ${{env.BUILD_TYPE}} -- -j 2
if: matrix.os == 'windows-latest'
- name: Upload Artifact(Linux)