Skip to content

Commit

Permalink
Make github action init git in clayx repo
Browse files Browse the repository at this point in the history
Calyx Docker container 0.6.0 does not have git initialized in /home/calyx
  • Loading branch information
nathanielnrn committed Sep 4, 2023
1 parent 9463e99 commit 619d4ab
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ jobs:
- name: Checkout commit that triggered run
working-directory: /home/calyx
run: |
git init
git remote add origin [email protected]:cucapra/calyx.git
git fetch --all
git checkout $GITHUB_SHA
Expand Down Expand Up @@ -78,6 +80,8 @@ jobs:
- name: Checkout commit that triggered run
working-directory: /home/calyx
run: |
git init
git remote add origin [email protected]:cucapra/calyx.git
git fetch --all
git checkout $GITHUB_SHA
Expand Down Expand Up @@ -136,6 +140,8 @@ jobs:
- name: Checkout commit that triggered run
working-directory: /home/calyx
run: |
git init
git remote add origin [email protected]:cucapra/calyx.git
git fetch --all
git checkout $GITHUB_SHA
Expand Down

0 comments on commit 619d4ab

Please sign in to comment.