Skip to content

Commit

Permalink
Remove gcc-14 from builders.
Browse files Browse the repository at this point in the history
Partially fixing #67.
  • Loading branch information
tommie authored Oct 2, 2024
1 parent 82a7f5c commit b5600fa
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/v8build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ jobs:
outputs:
v8_hash: ${{ steps.update_v8.outputs.v8_hash }}
steps:
- name: Remove GCC 14
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 @@ -74,6 +80,12 @@ jobs:
platform: macos-latest
runs-on: ${{ matrix.platform }}
steps:
- name: Remove GCC 14
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 b5600fa

Please sign in to comment.