Skip to content

Commit

Permalink
Move to ubuntu-latest and single cell Jupyter (#140)
Browse files Browse the repository at this point in the history
* Move to ubuntu latest

* Comment to trigger docker build

* Master seems frozen for 6 months now

* Comment change to trigger build

* Trigger action

* Change tag

* Try freeing up space

* Remove extra ls
  • Loading branch information
pcm32 authored Oct 13, 2023
1 parent cbb2ec4 commit 2dd8855
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 10 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/conda-templated.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,15 @@ on:
paths:
- "*/templated-conda-env.yaml"
- "*/image_tag"
- "*/pre_install_dockerfile"
- "*/post_install_dockerfile"
- "miniconda_template/*"
- ".github/workflows/miniconda_template.yaml"

jobs:
getchanges:
name: Get changed repos
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
Expand Down Expand Up @@ -45,7 +46,7 @@ jobs:

test:
name: Build image and optionally deploy
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
needs: getchanges
strategy:
matrix:
Expand Down Expand Up @@ -74,6 +75,11 @@ jobs:
- name: Assemble Dockerfile
run: miniconda_template/create_dockerfile.sh ${{ matrix.changed }}

- name: Free up some space for building large images
run: |
sudo rm -rf /usr/share/dotnet
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
- name: Build image
id: build-image
uses: redhat-actions/buildah-build@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ens_update_env_container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
jobs:
test:
name: Build image
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
env:
IMAGE_NAME: ensembl-update-env

Expand All @@ -34,7 +34,7 @@ jobs:
deploy:
name: Build and deploy image to quay.io/ebigxa
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
env:
IMAGE_NAME: ensembl-update-env

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/github-actions-runner.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
build:
name: Build and push image
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
env:
IMAGE_NAME: github-actions-runner

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/irap-fedora-ci-runner.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
jobs:
deploy:
name: Build and deploy image to quay.io/ebigxa
runs-on: ubuntu-20.04
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scxa-solrcloud.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
build:
name: Build and push image
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
env:
IMAGE_NAME: scxa-solrcloud

Expand Down
2 changes: 1 addition & 1 deletion galaxy-jupyter-single-cell/image_tag
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pseq-galaxy-jupyter-single-cell:0.1
pseq-galaxy-jupyter-single-cell:0.2
2 changes: 1 addition & 1 deletion galaxy-jupyter-single-cell/pre_install_dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# uses the same image as the original interactive environment in Galaxy
FROM quay.io/bgruening/docker-jupyter-notebook:2021-03-05
# uses the same image as the original interactive environment in Galaxy

# install micromamba
RUN "${SHELL}" <(curl -L micro.mamba.pm/install.sh)
Expand Down
3 changes: 2 additions & 1 deletion github-actions-runner/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM quay.io/evryfs/github-actions-runner:master
FROM quay.io/evryfs/github-actions-runner:latest
# based on

USER root
RUN sudo apt-key adv --refresh-keys --keyserver keyserver.ubuntu.com && \
Expand Down

0 comments on commit 2dd8855

Please sign in to comment.