-
Notifications
You must be signed in to change notification settings - Fork 4
60 lines (58 loc) · 1.95 KB
/
docker_test.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
# this tests that the latest docker image works, and does linter checks
# linter checks happen here because docker images are faster than waiting for
# dependencies to install on GitHub Actions VMs
on: [push, pull_request]
name: Docker Tests
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
push: false
tags: mwatelescope/birli:latest
cache-from: type=gha
cache-to: type=gha,mode=max
check:
name: Docker Test and Release
needs: build
runs-on: ubuntu-latest
container: mwatelescope/birli:latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
with:
fetch-depth: 0
- run: /opt/cargo/bin/cargo check
- run: /opt/cargo/bin/cargo fmt --all -- --check
- run: /opt/cargo/bin/cargo clippy --all-targets --all-features -- -D warnings
- run: /opt/cargo/bin/cargo test --release
- run: /opt/cargo/bin/cargo test --no-default-features --release --features=cli
push:
needs: build # TODO: needs: check
runs-on: ubuntu-latest
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
push: true
tags: mwatelescope/birli:latest
cache-from: type=gha
cache-to: type=gha,mode=max