Skip to content

Commit

Permalink
fix: b
Browse files Browse the repository at this point in the history
  • Loading branch information
sangjanai committed Jul 9, 2024
1 parent 6d6f7fa commit f4ae635
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions .github/workflows/quality-gate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
cmake-flags: "-DCORTEXAUDIO_VERSION=${{github.event.pull_request.head.sha}} -DGGML_NATIVE=OFF -DBUILD_SHARED_LIBS=OFF -DCMAKE_CXX_COMPILER_LAUNCHER=sccache -DCMAKE_C_COMPILER_LAUNCHER=sccache -DCMAKE_BUILD_TYPE='Release' -GNinja"
run-e2e: false
vulkan: false
sccache: true
sccache: false
sccache-conf-path: "/tmp/sccache.conf"

# - os: "linux"
Expand Down Expand Up @@ -246,12 +246,7 @@ jobs:
echo 'server_side_encryption = false' >> ${{ matrix.sccache-conf-path }}
echo 'no_credentials = false' >> ${{ matrix.sccache-conf-path }}
- name: Fetch SDL2 on Windows
if: runner.os == 'Windows'
run: |
C:/msys64/usr/bin/wget.exe -qO sdl2.zip https://github.com/libsdl-org/SDL/releases/download/release-2.28.5/SDL2-devel-2.28.5-VC.zip
7z x sdl2.zip -aoa
echo "SDL2_DIR=$env:GITHUB_WORKSPACE/SDL2-2.28.5/cmake" >> $env:GITHUB_ENV

- name: Install SDL2 on MacOS
if: runner.os == 'macOS'
Expand All @@ -264,6 +259,14 @@ jobs:
if: runner.os == 'Windows'
run: |
choco install make sccache ninja -y
choco install wget -y
- name: Fetch SDL2 on Windows
if: runner.os == 'Windows'
run: |
wget -qO sdl2.zip https://github.com/libsdl-org/SDL/releases/download/release-2.28.5/SDL2-devel-2.28.5-VC.zip
7z x sdl2.zip -aoa
echo "SDL2_DIR=$env:GITHUB_WORKSPACE/SDL2-2.28.5/cmake" >> $env:GITHUB_ENV
- name: Install ninja build on Linux
if: runner.os == 'Linux'
Expand Down

0 comments on commit f4ae635

Please sign in to comment.