-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (47 loc) · 1.61 KB
/
build-dev.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: Build dev image
on:
workflow_dispatch: null
push:
branches:
- dev
paths:
- 'apt2.txt'
- 'environment.yml'
- 'start'
- 'postBuild'
- 'appendix'
- 'desktop.sh'
- 'rocker.sh'
- 'scripts/**'
- '.github/workflows/build-dev.yaml'
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
# For biggish images, github actions runs out of disk space.
# So we cleanup some unwanted things in the disk image, and reclaim that space for our docker use
# https://github.com/actions/virtual-environments/issues/2606#issuecomment-772683150
# and https://github.com/easimon/maximize-build-space/blob/b4d02c14493a9653fe7af06cc89ca5298071c66e/action.yml#L104
# This gives us a total of about 52G of free space, which should be enough for now
- name: cleanup disk space
run: |
sudo rm -rf /usr/local/lib/android /usr/share/dotnet /opt/ghc
df -h
- name: Checkout files in repo
uses: actions/checkout@main
with:
ref: dev
- name: Build and push the image to quay.io
uses: jupyterhub/repo2docker-action@master
with:
# Make sure username & password/token pair matches your registry credentials
DOCKER_USERNAME: ${{github.actor}}
DOCKER_PASSWORD: ${{secrets.GITHUB_TOKEN}}
DOCKER_REGISTRY: ghcr.io
IMAGE_NAME: nmfs-opensci/py-rocket-2
# REQUIRED
REPO_DIR: /srv/repo
APPENDIX_FILE: "appendix"
# Lets us monitor disks getting full as images get bigger over time
- name: Show how much disk space is left
run: df -h