Skip to content

Commit

Permalink
Make shell configurable in CI scripts, to later enable re-using same …
Browse files Browse the repository at this point in the history
…scripts for Alpine musl CI.
  • Loading branch information
JohanEngelen committed Jul 12, 2024
1 parent 800b775 commit 71f8e86
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/actions/2-build-bootstrap/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,15 @@ inputs:
default: ''
arch:
required: false # Windows only
shell:
required: false
default: bash
runs:
using: composite
steps:

- name: Check CMake and ninja versions
shell: bash
shell: ${{ inputs.shell }}
run: |
set -eux
cmake --version
Expand All @@ -27,4 +30,4 @@ runs:
arch: ${{ inputs.arch }}

- run: ../bootstrap-ldc/bin/ldc2 --version
shell: bash
shell: ${{ inputs.shell }}

0 comments on commit 71f8e86

Please sign in to comment.