Skip to content

Commit

Permalink
Install git in rocm container
Browse files Browse the repository at this point in the history
  • Loading branch information
cromefire committed Dec 10, 2023
1 parent 8a21760 commit 1e3fe32
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ jobs:
target: x86_64-unknown-linux-gnu
binary: x86_64-manylinux2014-rocm5.7
container: rocm/dev-ubuntu-22.04:5.7-complete
install_git: true
build_args: --features rocm

env:
Expand All @@ -52,6 +53,14 @@ jobs:
CARGO_INCREMENTAL: 0

steps:
- name: Update Git
uses: actions/shell@v3
if: matrix.install_git == 'true'
with:
run: |
apt-get update
apt-get install -y git
- name: Checkout
uses: actions/checkout@v3
with:
Expand Down

0 comments on commit 1e3fe32

Please sign in to comment.