Skip to content

Commit 2520d0e

Browse files
committed
Use the Bash shell everywhere to keep the same scripts for all OSes
1 parent d418f9f commit 2520d0e

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/test-conda-forge-package.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ jobs:
3838
python-version: ${{ matrix.python-version }}
3939
conda-remove-defaults: true
4040
- name: Install the Khiops Conda package
41+
shell: bash
4142
run: |
4243
# Add the Conda `rc` label for alpha or RC pre-releases
4344
if [[ $(echo ${{ inputs.khiops-python-version }} | grep -E ".*(a|rc)\.[0-9]+") ]]; then
@@ -47,8 +48,10 @@ jobs:
4748
fi
4849
conda install "${RC_LABEL}"khiops==${{ inputs.khiops-python-version }}
4950
- name: Test Khiops Installation Status
51+
shell: bash
5052
run: kh-status
5153
- name: Test Khiops Installation Status (Conda-Based Environments)
54+
shell: bash
5255
run: |
5356
# Set `python` to the current Conda Python executable
5457
PYTHON="$(type -P python)"
@@ -96,6 +99,7 @@ jobs:
9699
OMPI_MCA_rmaps_base_oversubscribe: true
97100
# Oversubscribe for Open MPI >= 5
98101
PRTE_MCA_rmaps_default_mapping_policy: :oversubscribe
102+
shell: bash
99103
run: |
100104
# Set `python` to the current Conda Python executable
101105
PYTHON="$(type -P python)"
@@ -132,6 +136,7 @@ jobs:
132136
- name: Install the Test Requirements
133137
run: conda install -y --file test-requirements.txt
134138
- name: Run the Runner Initialization Integration Test
139+
shell: bash
135140
run: |
136141
python -m unittest -v \
137142
tests.test_khiops_integrations.KhiopsRunnerEnvironmentTests.test_runner_environment_initialization

0 commit comments

Comments
 (0)