Skip to content

Commit

Permalink
fix: do not specify gcc version 13 specifically
Browse files Browse the repository at this point in the history
  • Loading branch information
Laupetin committed May 16, 2024
1 parent 8d4381b commit ae30c63
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 16 deletions.
9 changes: 1 addition & 8 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,7 @@ jobs:
- name: Install g++ and multilib
run: |
sudo apt-get update
sudo apt-get install gcc-13 g++-13 gcc-13-multilib g++-13-multilib
- name: Set gcc/g++ to version 13
run: |
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 13
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-13 13
sudo update-alternatives --set gcc /usr/bin/gcc-13
sudo update-alternatives --set g++ /usr/bin/g++-13
sudo apt-get install gcc g++ gcc-multilib g++-multilib
- name: Setup premake
uses: abel0b/setup-premake@v2.4
Expand Down
9 changes: 1 addition & 8 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,7 @@ jobs:
- name: Install g++ and multilib
run: |
sudo apt-get update
sudo apt-get install gcc-13 g++-13 gcc-13-multilib g++-13-multilib
- name: Set gcc/g++ to version 13
run: |
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 13
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-13 13
sudo update-alternatives --set gcc /usr/bin/gcc-13
sudo update-alternatives --set g++ /usr/bin/g++-13
sudo apt-get install gcc g++ gcc-multilib g++-multilib
- name: Setup premake
uses: abel0b/setup-premake@v2.4
Expand Down

0 comments on commit ae30c63

Please sign in to comment.