Skip to content

Commit

Permalink
[CI] Post-merge fixes for the workflow definitions. (#9388)
Browse files Browse the repository at this point in the history
The #9322-generated changes did not include some later changes to the generator.
  • Loading branch information
mwu-tow authored Mar 12, 2024
1 parent a1c0d9a commit ef82637
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/engine-benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
clean: false
submodules: recursive
- name: Build Script Setup
run: ./run --help
run: ./run --help || (git clean -ffdx && ./run --help)
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- if: (always())
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/scala-new.yml
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ jobs:
clean: false
submodules: recursive
- name: Build Script Setup
run: ./run --help
run: ./run --help || (git clean -ffdx && ./run --help)
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- if: "(contains(github.event.pull_request.labels.*.name, 'CI: Clean build required') || inputs.clean_build_required)"
Expand Down Expand Up @@ -442,7 +442,7 @@ jobs:
clean: false
submodules: recursive
- name: Build Script Setup
run: ./run --help
run: ./run --help || (git clean -ffdx && ./run --help)
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- if: "(contains(github.event.pull_request.labels.*.name, 'CI: Clean build required') || inputs.clean_build_required)"
Expand Down Expand Up @@ -698,7 +698,7 @@ jobs:
clean: false
submodules: recursive
- name: Build Script Setup
run: ./run --help
run: ./run --help || (git clean -ffdx && ./run --help)
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- if: "(contains(github.event.pull_request.labels.*.name, 'CI: Clean build required') || inputs.clean_build_required)"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/std-libs-benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
clean: false
submodules: recursive
- name: Build Script Setup
run: ./run --help
run: ./run --help || (git clean -ffdx && ./run --help)
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- if: (always())
Expand Down

0 comments on commit ef82637

Please sign in to comment.