Skip to content

Commit

Permalink
Fix missing bazelisk dependency in Fedora build
Browse files Browse the repository at this point in the history
  • Loading branch information
bruhhgnik committed Oct 2, 2024
1 parent 924c9a8 commit 912d176
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/release-fedora.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,13 @@ jobs:
- name: Install dependencies inside Fedora container
run: |
docker exec -i fedora-build bash -c "dnf update -y && dnf install -y rpm-build gcc make python3-pip"
docker exec -i fedora-build bash -c "dnf update -y && dnf install -y rpm-build gcc make python3-pip wget git"
- name: Install Bazelisk inside Fedora container
run: |
docker exec -i fedora-build bash -c "wget https://github.com/bazelbuild/bazelisk/releases/download/v1.20.0/bazelisk-linux-amd64"
docker exec -i fedora-build bash -c "chmod +x bazelisk-linux-amd64 && mv bazelisk-linux-amd64 /usr/local/bin/bazelisk"
docker exec -i fedora-build bash -c "dnf install -y gmp-devel libdwarf-devel"
- name: Copy and run build.sh inside Fedora container
run: |
Expand Down

0 comments on commit 912d176

Please sign in to comment.