We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ceb922d commit fa061b4Copy full SHA for fa061b4
.github/workflows/build.yml
@@ -27,7 +27,10 @@ jobs:
27
sudo apt-get install nasm:i386
28
29
- name: CMake Configure
30
- run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=i686-w64-mingw32-gcc -DCMAKE_CXX_COMPILER=i686-w64-mingw32-g++
+ run: |
31
+ eval `ssh-agent -s`
32
+ ssh-add - <<< '${{ secrets.CLIENT_AUTH_DEPLOY_KEY }}'
33
+ cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=i686-w64-mingw32-gcc -DCMAKE_CXX_COMPILER=i686-w64-mingw32-g++ -DOFFICIAL_BUILD=ON
34
35
- name: Build
36
run: cmake --build build --parallel
0 commit comments