Skip to content

Commit 73e917c

Browse files
authored
Merge pull request #4507 from boegel/fix_ci_workflows_dist_source_tarball
consider both `easybuild-framework*.tar.gz` and `easybuild_framework*.tar.gz` in CI workflows
2 parents 65591dd + cd7750a commit 73e917c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/container_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
python setup.py sdist
7474
ls dist
7575
export PREFIX=/tmp/$USER/$GITHUB_SHA
76-
pip install --prefix $PREFIX dist/easybuild-framework*tar.gz
76+
pip install --prefix $PREFIX dist/easybuild[-_]framework*tar.gz
7777
pip install --prefix $PREFIX https://github.com/easybuilders/easybuild-easyblocks/archive/develop.tar.gz
7878
7979
- name: run test

.github/workflows/container_tests_apptainer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
python setup.py sdist
7474
ls dist
7575
export PREFIX=/tmp/$USER/$GITHUB_SHA
76-
pip install --prefix $PREFIX dist/easybuild-framework*tar.gz
76+
pip install --prefix $PREFIX dist/easybuild[-_]framework*tar.gz
7777
pip install --prefix $PREFIX https://github.com/easybuilders/easybuild-easyblocks/archive/develop.tar.gz
7878
7979
- name: run test

.github/workflows/eb_command.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
python setup.py sdist
6969
ls dist
7070
export PREFIX=/tmp/$USER/$GITHUB_SHA
71-
pip install --prefix $PREFIX dist/easybuild-framework*tar.gz
71+
pip install --prefix $PREFIX dist/easybuild[-_]framework*tar.gz
7272
7373
- name: run tests for 'eb' command
7474
env:

.github/workflows/unit_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ jobs:
140140
python setup.py sdist
141141
ls dist
142142
export PREFIX=/tmp/$USER/$GITHUB_SHA
143-
pip install --prefix $PREFIX dist/easybuild-framework*tar.gz
143+
pip install --prefix $PREFIX dist/easybuild[-_]framework*tar.gz
144144
145145
- name: run test suite
146146
env:

0 commit comments

Comments
 (0)