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

Adds GHA tests on 3 docker builds #818

Merged
merged 11 commits into from
Dec 6, 2023
25 changes: 25 additions & 0 deletions .github/workflows/docker-jupyterlab.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Docker Image Build Jupyterlab

on:
push:
branches: [ master, dev*, feature/docker* ]
pull_request:
branches: [ master, dev*, feature/docker* ]

jobs:

build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Build the Docker image
run: |
cd applications/jupyterlab
docker build -t myjlab -f Dockerfile --no-cache .

- name: Info on Docker image sizes
run: |
docker images
25 changes: 25 additions & 0 deletions .github/workflows/docker-netpyne.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Docker Image Build NetPyNE-UI

on:
push:
branches: [ master, dev*, feature/docker* ]
pull_request:
branches: [ master, dev*, feature/docker* ]

jobs:

build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Build the Docker image
run: |
cd applications/netpyne
docker build -t mynpui -f Dockerfile --no-cache .

- name: Info on Docker image sizes
run: |
docker images
27 changes: 27 additions & 0 deletions .github/workflows/docker-nwbe.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Docker Image Build NWB Explorer

on:
push:
branches: [ master, dev*, feature/docker* ]
pull_request:
branches: [ master, dev*, feature/docker* ]

jobs:

build:

runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v3

- name: Build the Docker image
run: |
cd applications/nwb-explorer
docker build -t mynwbosb -f Dockerfile --no-cache .

- name: Info on Docker image sizes
run: |
docker images


Loading