84 lines
2.5 KiB
YAML
84 lines
2.5 KiB
YAML
name: CI
|
|
on:
|
|
push:
|
|
paths:
|
|
- .github/workflows/docker.yml
|
|
- src/**
|
|
- .dockerignore
|
|
- Cargo.lock
|
|
- Cargo.toml
|
|
- Dockerfile
|
|
pull_request:
|
|
paths:
|
|
- .github/workflows/docker.yml
|
|
- src/**
|
|
- .dockerignore
|
|
- Cargo.lock
|
|
- Cargo.toml
|
|
- Dockerfile
|
|
|
|
jobs:
|
|
verify:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
DOCKER_BUILDKIT: "1"
|
|
steps:
|
|
- uses: actions/checkout@v2.3.4
|
|
|
|
- name: Lint
|
|
run: docker build --target lint .
|
|
|
|
- name: Build test image
|
|
run: docker build --target test -t test-container .
|
|
|
|
- name: Run tests in test container
|
|
run: |
|
|
docker run --rm test-container
|
|
|
|
# We run this using the caching from the previous steps
|
|
- name: Build final image
|
|
run: docker build .
|
|
|
|
publish:
|
|
needs: [verify]
|
|
if: github.event_name == 'push'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2.3.4
|
|
|
|
- uses: docker/setup-qemu-action@v1
|
|
- uses: docker/setup-buildx-action@v1
|
|
|
|
- uses: docker/login-action@v1.9.0
|
|
with:
|
|
username: mindflavor
|
|
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
|
|
|
- name: Set variables
|
|
id: vars
|
|
run: |
|
|
BRANCH=${GITHUB_REF#refs/heads/}
|
|
TAG=${GITHUB_REF#refs/tags/}
|
|
echo ::set-output name=commit::$(git rev-parse --short HEAD)
|
|
echo ::set-output name=build_date::$(date -u +%Y-%m-%dT%H:%M:%SZ)
|
|
if [ "$TAG" != "$GITHUB_REF" ]; then
|
|
echo ::set-output name=version::$TAG
|
|
echo ::set-output name=platforms::linux/amd64,linux/386,linux/arm64,linux/arm/v6,linux/arm/v7
|
|
elif [ "$BRANCH" = "master" ]; then
|
|
echo ::set-output name=version::latest
|
|
echo ::set-output name=platforms::linux/amd64,linux/386,linux/arm64,linux/arm/v6,linux/arm/v7
|
|
else
|
|
echo ::set-output name=version::$BRANCH
|
|
echo ::set-output name=platforms::linux/amd64,linux/386,linux/arm64,linux/arm/v6,linux/arm/v7
|
|
fi
|
|
|
|
- name: Build and push final image
|
|
uses: docker/build-push-action@v2.4.0
|
|
with:
|
|
platforms: ${{ steps.vars.outputs.platforms }}
|
|
build-args: |
|
|
BUILD_DATE=${{ steps.vars.outputs.build_date }}
|
|
COMMIT=${{ steps.vars.outputs.commit }}
|
|
VERSION=${{ steps.vars.outputs.version }}
|
|
tags: mindflavor/prometheus-wireguard-exporter:${{ steps.vars.outputs.version }}
|
|
push: true
|