-
Notifications
You must be signed in to change notification settings - Fork 100
executable file
·89 lines (82 loc) · 2.65 KB
/
ci.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
name: CI
on:
push:
branches: [ master ]
tags:
- 'v[0-9]+.[0-9]+.[0-9]+*'
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-24.04
strategy:
matrix:
engine: [ 'docker', 'podman' ]
steps:
- uses: actions/checkout@v4
- uses: taiki-e/install-action@just
- name: Set preference to use ${{ matrix.engine }}
run: just prefer ${{ matrix.engine }}
- name: Build development image
run: just build
- name: Pull other images
run: just pull
- name: Start ancillary services
run: just start-ancillary
- name: Run unit tests
run: just test-unit
- name: Run integration tests
run: just test-integration
build:
needs: [ test ]
if: github.event_name == 'push' || github.event_name == 'release'
runs-on: ubuntu-24.04
env:
repo_name: fnndsc/cube
steps:
- name: Determine image tags
id: determine
run: |
repo="${{ env.repo_name }}"
tag="${GITHUB_REF_NAME:-latest}" # if build triggered by tag, use tag name
# if tag is a version number prefixed by 'v', remove the 'v'
if [[ "$tag" =~ ^v[0-9].* ]]; then
tag="${tag:1}"
fi
dock_image=$repo:$tag
echo $dock_image
echo "dock_image=$dock_image" >> $GITHUB_OUTPUT
- uses: actions/checkout@v4
- uses: docker/setup-qemu-action@v3
- uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
push: true
context: .
file: ./Dockerfile
tags: |
docker.io/${{ steps.determine.outputs.dock_image }}
ghcr.io/${{ steps.determine.outputs.dock_image }}
platforms: linux/amd64,linux/ppc64le,linux/arm64
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Update Docker Hub description
uses: peter-evans/dockerhub-description@v4
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
short-description: ChRIS backend
readme-filepath: ./README.md
repository: ${{ env.repo_name }}