Skip to content

Commit

Permalink
Update cmake.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
JuanDiegoMontoya authored Jun 29, 2024
1 parent 2926cfd commit f2bcbba
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,13 @@ jobs:
- uses: actions/checkout@v3
- name: Install Dependencies
run: sudo apt-get update && sudo apt-get install libgl1-mesa-dev libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev

- name: Add Repository to find newer versions of gcc
run: sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test

- name: Update Repos
run: sudo apt-get update

- name: Install gcc-${{ matrix.gccversion }}
run: sudo apt-get install gcc-${{ matrix.gccversion }} g++-${{ matrix.gccversion }}

Expand All @@ -32,4 +38,4 @@ jobs:
CXX: g++-${{ matrix.gccversion }}

- name: Build with gcc-${{ matrix.gccversion }}
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}

0 comments on commit f2bcbba

Please sign in to comment.