Skip to content

Commit

Permalink
GitHub Actions: set default shell
Browse files Browse the repository at this point in the history
  • Loading branch information
SimeonEhrig committed Nov 18, 2024
1 parent f34dcfa commit 30d4165
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,9 @@ jobs:
runs-on: ${{ matrix.os }}
env: ${{ matrix.env }}
container: ${{ matrix.container }}
defaults:
run:
shell: bash

strategy:
fail-fast: false
Expand Down Expand Up @@ -201,13 +204,6 @@ jobs:
run: exit 1
- uses: actions/checkout@v3
- name: build + test
if: (runner.os == 'Windows')
env:
ALPAKA_CI_OS_NAME: ${{runner.os}}
shell: bash
run: cd ${GITHUB_WORKSPACE} && source ./script/set_default_env_vars.sh && ./script/ci.sh
- name: build + test
if: (runner.os == 'Linux' || runner.os == 'macOS')
env:
ALPAKA_CI_OS_NAME: ${{runner.os}}
run: cd ${GITHUB_WORKSPACE} && ./script/ci.sh

0 comments on commit 30d4165

Please sign in to comment.