-
Notifications
You must be signed in to change notification settings - Fork 5
39 lines (30 loc) · 1.17 KB
/
build.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
---
name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- "*"
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
# Use GitHub's Docker registry to cache intermediate layers
- run: echo ${{ secrets.GITHUB_TOKEN }} | docker login docker.pkg.github.com
-u $GITHUB_ACTOR --password-stdin
- run: docker pull docker.pkg.github.com/$GITHUB_REPOSITORY/aleph-message-build-cache
|| true
- name: Build the Docker image
run: |
git fetch --tags
docker build . -t aleph-message:${GITHUB_REF##*/} -f Dockerfile --cache-from=docker.pkg.github.com/$GITHUB_REPOSITORY/aleph-message-build-cache
- name: Cache the image on GitHub's repository
run: docker tag aleph-message:${GITHUB_REF##*/} docker.pkg.github.com/$GITHUB_REPOSITORY/aleph-message-build-cache
&& docker push docker.pkg.github.com/$GITHUB_REPOSITORY/aleph-message-build-cache
|| true
- name: Test that aleph_message is correctly installed
run: |-
docker run aleph-message:${GITHUB_REF##*/} python -c "from aleph_message import parse_message"