Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
warp-core committed Jan 27, 2025
1 parent 595015a commit 1d51f43
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,39 @@ jobs:
path: ./build/ci/*.dll


build_windows_x86:
name: Windows x86
needs: changed
if: ${{ needs.changed.outputs.game_code == 'true' || needs.changed.outputs.unit_tests == 'true' || needs.changed.outputs.cmake_files == 'true' || needs.changed.outputs.ci_config == 'true' }}
runs-on: windows-2025
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
with:
show-progress: false
- name: Setup cached directories
uses: actions/cache@v4
with:
path: C:\Users\runneradmin\AppData\Local\Mozilla\sccache\cache
key: ${{ runner.os }}-${{ runner.arch }}-ci-sccache-${{ github.ref }}
restore-keys: |
${{ runner.os }}-${{ runner.arch }}-ci-sccache-refs/heads/master
- name: Setup sccache
uses: Mozilla-Actions/[email protected]
- uses: lukka/get-cmake@latest
- uses: lukka/run-vcpkg@v11
with:
vcpkgGitCommitId: 'c82f74667287d3dc386bce81e44964370c91a289'
- uses: lukka/run-cmake@v10
with:
configurePreset: 'mingw32-ci'
buildPreset: 'mingw32-ci'
testPreset: 'mingw32-ci'
- name: Run Benchmarks
run: ctest --preset mingw32-ci-benchmark


build_windows_clang:
name: Windows Clang
needs: changed
Expand Down

0 comments on commit 1d51f43

Please sign in to comment.