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