Skip to content

Commit

Permalink
ci: Remove OCI stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
edmundmiller committed Nov 30, 2023
1 parent 7185255 commit 9b2a260
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -353,15 +353,11 @@ jobs:
with:
version: latest-everything

# For OCI containers
- name: Set XDG_RUNTIME_DIR
run: echo "XDG_RUNTIME_DIR=/run/user/$UID" >> $GITHUB_ENV

- name: Install Singularity
if: matrix.profile == 'singularity'
run: |
wget https://github.com/sylabs/singularity/releases/download/v4.0.2/singularity-ce_4.0.2-jammy_amd64.deb
sudo apt-get install -y crun libfuse2
sudo apt-get install -y libfuse2
sudo dpkg -i singularity-ce_4.0.2-jammy_amd64.deb
- name: Set up Singularity
Expand Down Expand Up @@ -543,9 +539,12 @@ jobs:
wget -qO- https://code.askimed.com/install/nf-test | bash
sudo mv nf-test /usr/local/bin/
- name: Setup apptainer
- name: Install Singularity
if: matrix.profile == 'singularity'
uses: eWaterCycle/setup-apptainer@main
run: |
wget https://github.com/sylabs/singularity/releases/download/v4.0.2/singularity-ce_4.0.2-jammy_amd64.deb
sudo apt-get install -y libfuse2
sudo dpkg -i singularity-ce_4.0.2-jammy_amd64.deb
- name: Set up Singularity
if: matrix.profile == 'singularity'
Expand Down
1 change: 0 additions & 1 deletion tests/config/nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ process {
if ("$PROFILE" == "singularity") {
singularity.enabled = true
singularity.autoMounts = true
singularity.oci = true
} else if ("$PROFILE" == "conda") {
conda.enabled = true
} else if ("$PROFILE" == "mamba") {
Expand Down

0 comments on commit 9b2a260

Please sign in to comment.