Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ChillerDragon committed Jun 10, 2022
1 parent 9dbf781 commit 840e34d
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,20 @@ jobs:
${{ matrix.cmake-path }}cmake --version
${{ matrix.cmake-path }}cmake ${{ matrix.cmake-args }} -DHEADLESS_CLIENT=ON -DCMAKE_BUILD_TYPE=Debug -Werror=dev -DDOWNLOAD_GTEST=ON -DDEV=ON -DCMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG=. ..
${{ matrix.cmake-path }}cmake --build . --config Debug ${{ matrix.build-args }}
cp chillerbot-ux DDNet || true
cp chillerbot-ux.exe DDNet || true
mv chillerbot-ux.exe DDNet.exe || true
- name: Rename headless client nix
env: ${{ matrix.env }}
if: contains(matrix.os, 'ubuntu')
run: |
cd headless
cp chillerbot-ux DDNet
- name: Rename headless client win
env: ${{ matrix.env }}
if: contains(matrix.os, 'windows')
run: |
cd headless
ls
cp chillerbot-ux.exe DDNet.exe
- name: Test headless client
run: |
cd headless
Expand Down

0 comments on commit 840e34d

Please sign in to comment.