Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
recp committed Jan 22, 2025
1 parent e161c4d commit cc79b44
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,16 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Add Ubuntu Toolchain PPA
if: matrix.target.os == 'ubuntu-20.04'
run: |
sudo apt-get update
sudo apt-get install -y software-properties-common
sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
sudo apt-get update
- name: Install Compiler and Ninja
run: |
sudo apt-get update -y
sudo apt-get install -y ${{ matrix.target.cc }} ninja-build
- name: Configure CMake
Expand Down Expand Up @@ -143,6 +150,13 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: microsoft/setup-msbuild@v2

- name: Install Windows SDK for ARM
if: matrix.platform.name == 'Windows (ARM)' || matrix.platform.name == 'Windows (ARM64)'
run: |
choco install windows-sdk-10.0 -y --version=10.0.26100.0
- name: Configure CMake
run: cmake -B build `
-DCGLM_STATIC=ON `
Expand Down

0 comments on commit cc79b44

Please sign in to comment.