Skip to content

Commit

Permalink
Update CI to accommodate script dir change
Browse files Browse the repository at this point in the history
  • Loading branch information
bdmendes committed Nov 4, 2024
1 parent 258563e commit ead9b6e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/gauntlet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
fetch-depth: 0

- name: Set up script permissions
run: chmod +x ./gauntlet.sh
run: chmod +x ./scripts/gauntlet.sh

- name: Set up local master branch
run: git fetch origin master:master
Expand All @@ -30,7 +30,7 @@ jobs:
env:
CURRENT_BRANCH: ${{ github.head_ref }}
run: |
./gauntlet.sh || echo "GAUNTLET_FAILED=1" >> $GITHUB_ENV
./scripts/gauntlet.sh || echo "GAUNTLET_FAILED=1" >> $GITHUB_ENV
- uses: mshick/add-pr-comment@v2
with:
Expand All @@ -53,7 +53,7 @@ jobs:
fetch-depth: 0

- name: Set up script permissions
run: chmod +x ./gauntlet.sh
run: chmod +x ./scripts/gauntlet.sh

- name: Set up local master branch
run: git fetch origin master:master
Expand All @@ -62,7 +62,7 @@ jobs:
env:
CURRENT_BRANCH: ${{ github.head_ref }}
run: |
./gauntlet.sh master 1 4 256 100 || echo "GAUNTLET_FAILED=1" >> $GITHUB_ENV
./scripts/gauntlet.sh master 1 4 256 100 || echo "GAUNTLET_FAILED=1" >> $GITHUB_ENV
- uses: mshick/add-pr-comment@v2
with:
Expand All @@ -85,7 +85,7 @@ jobs:
fetch-depth: 0

- name: Set up script permissions
run: chmod +x ./gauntlet.sh
run: chmod +x ./scripts/gauntlet.sh

- name: Set up local release tag
run: git fetch origin $(git describe --tags --abbrev=0)
Expand All @@ -94,7 +94,7 @@ jobs:
env:
CURRENT_BRANCH: ${{ github.head_ref }}
run: |
./gauntlet.sh $(git describe --tags --abbrev=0) || echo "GAUNTLET_FAILED=1" >> $GITHUB_ENV
./scripts/gauntlet.sh $(git describe --tags --abbrev=0) || echo "GAUNTLET_FAILED=1" >> $GITHUB_ENV
- uses: mshick/add-pr-comment@v2
with:
Expand All @@ -117,7 +117,7 @@ jobs:
fetch-depth: 0

- name: Set up script permissions
run: chmod +x ./gauntlet.sh
run: chmod +x ./scripts/gauntlet.sh

- name: Set up local release tag
run: git fetch origin $(git describe --tags --abbrev=0)
Expand All @@ -126,7 +126,7 @@ jobs:
env:
CURRENT_BRANCH: ${{ github.head_ref }}
run: |
./gauntlet.sh $(git describe --tags --abbrev=0) 1 4 256 100 || echo "GAUNTLET_FAILED=1" >> $GITHUB_ENV
./scripts/gauntlet.sh $(git describe --tags --abbrev=0) 1 4 256 100 || echo "GAUNTLET_FAILED=1" >> $GITHUB_ENV
- uses: mshick/add-pr-comment@v2
with:
Expand Down

0 comments on commit ead9b6e

Please sign in to comment.