Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch to use singularity 4.1.4 instead of 3.10.4 #207

Merged
merged 2 commits into from
Oct 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/build-ubuntu.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,16 @@ jobs:
run: |
# use if decide to get most recent release of singularity
# release="$(gh api --jq .tag_name repos/sylabs/singularity/releases/latest)"
release="v3.10.4"
release="v4.1.4"
codename="$(lsb_release -cs)"
arch="$(dpkg --print-architecture)"
cd /tmp
sudo apt-get install libfuse2t64
wget -O singularity-ce.deb https://github.com/sylabs/singularity/releases/download/$release/singularity-ce_${release#v}-${codename}_$arch.deb
sudo dpkg -i singularity-ce.deb
sudo dpkg -i singularity-ce.deb || :
sudo apt-get install -f
# Verify that singularity functions since might have failed before
singularity --version

- name: Determine git-annex ref to build
run: |
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/template/build-{{ostype}}.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,16 @@ jobs:
run: |
# use if decide to get most recent release of singularity
# release="$(gh api --jq .tag_name repos/sylabs/singularity/releases/latest)"
release="v3.10.4"
release="v4.1.4"
codename="$(lsb_release -cs)"
arch="$(dpkg --print-architecture)"
cd /tmp
sudo apt-get install libfuse2t64
wget -O singularity-ce.deb https://github.com/sylabs/singularity/releases/download/$release/singularity-ce_${release#v}-${codename}_$arch.deb
sudo dpkg -i singularity-ce.deb
sudo dpkg -i singularity-ce.deb || :
sudo apt-get install -f
# Verify that singularity functions since might have failed before
singularity --version

{% elif ostype == "macos" %}
- name: Set up system
Expand Down