Skip to content

Commit c1b05d9

Browse files
authored
Merge pull request #4820 from boegel/ci_5.0.x_develop_branch
go back to using `develop` branch rather than `5.0.x` branch in GitHub Actions workflows
2 parents 217da3c + 5f79807 commit c1b05d9

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/container_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
ls dist
7575
export PREFIX=/tmp/$USER/$GITHUB_SHA
7676
pip install --prefix $PREFIX dist/easybuild[-_]framework*tar.gz
77-
pip install --prefix $PREFIX https://github.com/easybuilders/easybuild-easyblocks/archive/5.0.x.tar.gz
77+
pip install --prefix $PREFIX https://github.com/easybuilders/easybuild-easyblocks/archive/develop.tar.gz
7878
7979
- name: run test
8080
run: |
@@ -95,7 +95,7 @@ jobs:
9595
echo '%_dbpath %{_var}/lib/rpm' >> $HOME/.rpmmacros
9696
# build CentOS 7 container image for bzip2 1.0.8 using EasyBuild;
9797
# see https://docs.easybuild.io/en/latest/Containers.html
98-
curl -OL https://raw.githubusercontent.com/easybuilders/easybuild-easyconfigs/5.0.x/easybuild/easyconfigs/b/bzip2/bzip2-1.0.8.eb
98+
curl -OL https://raw.githubusercontent.com/easybuilders/easybuild-easyconfigs/develop/easybuild/easyconfigs/b/bzip2/bzip2-1.0.8.eb
9999
export EASYBUILD_CONTAINERPATH=$PWD
100100
export EASYBUILD_CONTAINER_CONFIG='bootstrap=docker,from=ghcr.io/easybuilders/centos-7.9-python3-amd64'
101101
eb bzip2-1.0.8.eb --containerize --experimental --container-build-image

.github/workflows/container_tests_apptainer.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
ls dist
6969
export PREFIX=/tmp/$USER/$GITHUB_SHA
7070
pip install --prefix $PREFIX dist/easybuild[-_]framework*tar.gz
71-
pip install --prefix $PREFIX https://github.com/easybuilders/easybuild-easyblocks/archive/5.0.x.tar.gz
71+
pip install --prefix $PREFIX https://github.com/easybuilders/easybuild-easyblocks/archive/develop.tar.gz
7272
7373
- name: run test
7474
run: |
@@ -89,7 +89,7 @@ jobs:
8989
echo '%_dbpath %{_var}/lib/rpm' >> $HOME/.rpmmacros
9090
# build CentOS 7 container image for bzip2 1.0.8 using EasyBuild;
9191
# see https://docs.easybuild.io/en/latest/Containers.html
92-
curl -OL https://raw.githubusercontent.com/easybuilders/easybuild-easyconfigs/5.0.x/easybuild/easyconfigs/b/bzip2/bzip2-1.0.8.eb
92+
curl -OL https://raw.githubusercontent.com/easybuilders/easybuild-easyconfigs/develop/easybuild/easyconfigs/b/bzip2/bzip2-1.0.8.eb
9393
export EASYBUILD_CONTAINERPATH=$PWD
9494
export EASYBUILD_CONTAINER_CONFIG='bootstrap=docker,from=ghcr.io/easybuilders/centos-7.9-python3-amd64'
9595
export EASYBUILD_CONTAINER_TYPE='apptainer'

.github/workflows/end2end.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,17 @@ jobs:
2626
run: |
2727
cd $HOME
2828
for pkg in easyblocks easyconfigs; do
29-
curl -OL https://github.com/easybuilders/easybuild-${pkg}/archive/5.0.x.tar.gz
30-
tar xfz 5.0.x.tar.gz
31-
rm -f 5.0.x.tar.gz
29+
curl -OL https://github.com/easybuilders/easybuild-${pkg}/archive/develop.tar.gz
30+
tar xfz develop.tar.gz
31+
rm -f develop.tar.gz
3232
done
3333
3434
- name: Set up environment
3535
shell: bash
3636
run: |
3737
# collect environment variables to be set in subsequent steps in script that can be sourced
3838
echo "export PATH=$PWD:$PATH" > /tmp/eb_env
39-
echo "export PYTHONPATH=$PWD:$HOME/easybuild-easyblocks-5.0.x:$HOME/easybuild-easyconfigs-5.0.x" >> /tmp/eb_env
39+
echo "export PYTHONPATH=$PWD:$HOME/easybuild-easyblocks-develop:$HOME/easybuild-easyconfigs-develop" >> /tmp/eb_env
4040
4141
- name: Run commands to check test environment
4242
shell: bash

test/framework/github.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -606,7 +606,7 @@ def test_github_download_repo(self):
606606
self.assertExists(repodir)
607607
shafile = os.path.join(repodir, 'latest-sha')
608608
self.assertTrue(re.match('^[0-9a-f]{40}$', read_file(shafile)))
609-
self.assertExists(os.path.join(repodir, 'easybuild', 'easyconfigs', 'f', 'foss', 'foss-2019b.eb'))
609+
self.assertExists(os.path.join(repodir, 'easybuild', 'easyconfigs', 'f', 'foss', 'foss-2024a.eb'))
610610

611611
# current directory should not have changed after calling download_repo
612612
self.assertTrue(os.path.samefile(cwd, os.getcwd()))

0 commit comments

Comments
 (0)