bootstrap: fix broken test (#44403)

This commit is contained in:
Harmen Stoppels 2024-05-29 19:03:49 +02:00 committed by GitHub
parent 1dc63dbea6
commit 6753f4a7cb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -84,13 +84,11 @@ jobs:
- name: Setup macOS - name: Setup macOS
if: ${{ matrix.runner != 'ubuntu-latest' }} if: ${{ matrix.runner != 'ubuntu-latest' }}
run: | run: |
brew install tree brew install tree gawk
# Remove GnuPG since we want to bootstrap it sudo rm -rf $(command -v gpg gpg2)
sudo rm -rf /usr/local/bin/gpg
- name: Setup Ubuntu - name: Setup Ubuntu
if: ${{ matrix.runner == 'ubuntu-latest' }} if: ${{ matrix.runner == 'ubuntu-latest' }}
run: | run: sudo rm -rf $(command -v gpg gpg2 patchelf)
sudo rm -rf $(which gpg) $(which gpg2) $(which patchelf)
- name: Checkout - name: Checkout
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
with: with: