generated from opensafely-core/repo-template
-
Notifications
You must be signed in to change notification settings - Fork 0
109 lines (87 loc) · 2.76 KB
/
main.yml
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
---
name: CI
env:
IMAGE_NAME: research-template
IMAGE_VERSION: v0
PUBLIC_IMAGE_NAME: ghcr.io/opensafely-core/research-template
REGISTRY: ghcr.io
on:
workflow_dispatch:
pull_request:
push:
branches: [main]
schedule:
- cron: "0 12 * * SUN"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: hadolint/hadolint-action@54c9adbab1582c2ef04b2016b760714a4bfde3cf # v3.1.0
# Lint the dockerfile before building
with:
failure-threshold: error
- uses: "opensafely-core/setup-action@v1"
with:
install-just: true
- name: Build docker image
run: just build
- name: Save docker image
run: |
docker image save research-template | zstd --fast -o /tmp/research-template.tar.zst
- name: Upload docker image
uses: actions/upload-artifact@v4
with:
name: research-template-image
path: /tmp/research-template.tar.zst
# Disable compression; the file is already compressed
compression-level: 0
test-docker-image:
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install just
uses: "opensafely-core/setup-action@v1"
with:
install-just: true
- name: Download Docker image
uses: actions/download-artifact@v4
with:
name: research-template-image
path: /tmp/image
- name: Import Docker image
run: docker image load --input /tmp/image/research-template.tar.zst
- name: Test Python installation
run: just test-python-install
- name: Test R Studio installation
run: just test-rstudio-install
- name: Test packages
run: just test-packages
publish:
needs: [build, test-docker-image]
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v4
- uses: "opensafely-core/setup-action@v1"
with:
install-just: true
- name: Download docker image
uses: actions/download-artifact@v4
with:
name: research-template-image
path: /tmp/image
- name: Import docker image
run: docker image load --input /tmp/image/research-template.tar.zst
- name: Publish image
run: |
echo ${{ secrets.GITHUB_TOKEN }} | docker login "$REGISTRY" -u ${{ github.actor }} --password-stdin
docker tag "$IMAGE_NAME" "$PUBLIC_IMAGE_NAME:$IMAGE_VERSION"
docker tag "$IMAGE_NAME" "$PUBLIC_IMAGE_NAME:latest"
docker push "$PUBLIC_IMAGE_NAME:$IMAGE_VERSION"
docker push "$PUBLIC_IMAGE_NAME:latest"