Skip to content

Commit

Permalink
GHA: use WSL + wsl-bash for windows job.
Browse files Browse the repository at this point in the history
  • Loading branch information
kanaka committed Aug 9, 2024
1 parent a911b03 commit 0db627b
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,23 +139,24 @@ jobs:
matrix: ${{ fromJson(needs.get-matrix.outputs.matrix-windows) }}
steps:
- uses: actions/checkout@v4
- uses: Vampire/setup-wsl@v3
- name: Build
shell: bash
shell: wsl-bash {0}
run: |
export ${{ matrix.IMPL }}
./ci.sh build ${IMPL}
- name: Step Tests
shell: bash
shell: wsl-bash {0}
run: |
export ${{ matrix.IMPL }}
./ci.sh test ${IMPL}
- name: Regression Tests
shell: bash
shell: wsl-bash {0}
run: |
export ${{ matrix.IMPL }}
STEP=stepA REGRESS=1 HARD=1 OPTIONAL=0 ./ci.sh test ${IMPL}
- name: Performance Tests
shell: bash
shell: wsl-bash {0}
run: |
export ${{ matrix.IMPL }}
./ci.sh perf ${IMPL}
Expand Down

0 comments on commit 0db627b

Please sign in to comment.