Skip to content

Commit

Permalink
Only removes GCC 14 on Ubuntu latest.
Browse files Browse the repository at this point in the history
Fixup for #68.
  • Loading branch information
tommie committed Oct 2, 2024
1 parent de5b23e commit 51cad8a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/v8build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,12 @@ jobs:
v8_hash: ${{ steps.update_v8.outputs.v8_hash }}
steps:
- name: Remove GCC 14
if: matrix.platform == 'ubuntu-latest'
run: |
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115119
sudo apt-get purge -yq gcc-14 g++-14 libstdc++-14-dev
sudo apt-get autopurge -yq
- name: Checkout
uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -81,11 +82,12 @@ jobs:
runs-on: ${{ matrix.platform }}
steps:
- name: Remove GCC 14
if: matrix.platform == 'ubuntu-latest'
run: |
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115119
sudo apt-get purge -yq gcc-14 g++-14 libstdc++-14-dev
sudo apt-get autopurge -yq
- name: Install g++-aarch64-linux-gnu
if: matrix.os == 'linux' && matrix.arch == 'arm64'
run: sudo apt update && sudo apt install g++-aarch64-linux-gnu -y
Expand Down

0 comments on commit 51cad8a

Please sign in to comment.