2022-05-28 23:40:37 +00:00
|
|
|
# Build, test and push InvenTree docker image
|
|
|
|
# This workflow runs under any of the following conditions:
|
|
|
|
#
|
|
|
|
# - Push to the master branch
|
|
|
|
# - Publish release
|
|
|
|
#
|
|
|
|
# The following actions are performed:
|
|
|
|
#
|
|
|
|
# - Check that the version number matches the current branch or tag
|
|
|
|
# - Build the InvenTree docker image
|
|
|
|
# - Run suite of unit tests against the build image
|
|
|
|
# - Push the compiled, tested image to dockerhub
|
|
|
|
|
|
|
|
name: Docker
|
|
|
|
|
|
|
|
on:
|
|
|
|
release:
|
|
|
|
types: [published]
|
|
|
|
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'master'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
|
|
|
# Build the docker image
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
2022-07-20 06:20:58 +00:00
|
|
|
permissions:
|
|
|
|
id-token: write
|
2022-05-30 23:50:38 +00:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
2022-05-28 23:40:37 +00:00
|
|
|
steps:
|
|
|
|
- name: Check out repo
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Version Check
|
|
|
|
run: |
|
2022-06-06 22:57:51 +00:00
|
|
|
pip install requests
|
2022-05-30 23:50:38 +00:00
|
|
|
python3 ci/version_check.py
|
2022-05-28 23:40:37 +00:00
|
|
|
echo "git_commit_hash=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
|
|
|
|
echo "git_commit_date=$(git show -s --format=%ci)" >> $GITHUB_ENV
|
2022-06-28 03:47:10 +00:00
|
|
|
- name: Build Docker Image
|
2022-05-28 23:40:37 +00:00
|
|
|
run: |
|
|
|
|
docker-compose build
|
2022-06-28 03:47:10 +00:00
|
|
|
- name: Run Unit Tests
|
|
|
|
run: |
|
2022-05-28 23:40:37 +00:00
|
|
|
docker-compose run inventree-dev-server invoke update
|
2022-07-01 11:03:25 +00:00
|
|
|
docker-compose run inventree-dev-server invoke setup-dev
|
2022-05-28 23:40:37 +00:00
|
|
|
docker-compose up -d
|
|
|
|
docker-compose run inventree-dev-server invoke wait
|
|
|
|
docker-compose run inventree-dev-server invoke test
|
|
|
|
docker-compose down
|
|
|
|
- name: Set up QEMU
|
|
|
|
if: github.event_name != 'pull_request'
|
|
|
|
uses: docker/setup-qemu-action@v1
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
if: github.event_name != 'pull_request'
|
|
|
|
uses: docker/setup-buildx-action@v1
|
2022-07-20 06:20:58 +00:00
|
|
|
- name: Set up cosign
|
|
|
|
uses: sigstore/cosign-installer@48866aa521d8bf870604709cd43ec2f602d03ff2
|
2022-05-28 23:40:37 +00:00
|
|
|
- name: Login to Dockerhub
|
|
|
|
if: github.event_name != 'pull_request'
|
|
|
|
uses: docker/login-action@v1
|
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
2022-07-20 06:20:58 +00:00
|
|
|
- name: Extract Docker metadata
|
|
|
|
id: meta
|
|
|
|
uses: docker/metadata-action@69f6fc9d46f2f8bf0d5491e4aabe0bb8c6a4678a
|
2022-07-20 08:32:18 +00:00
|
|
|
with:
|
|
|
|
images: |
|
|
|
|
inventree/inventree
|
2022-05-28 23:40:37 +00:00
|
|
|
- name: Build and Push
|
2022-07-20 06:20:58 +00:00
|
|
|
id: build-and-push
|
2022-05-28 23:40:37 +00:00
|
|
|
if: github.event_name != 'pull_request'
|
|
|
|
uses: docker/build-push-action@v2
|
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
platforms: linux/amd64,linux/arm64,linux/arm/v7
|
2022-05-29 03:47:29 +00:00
|
|
|
push: true
|
2022-05-28 23:40:37 +00:00
|
|
|
target: production
|
2022-05-30 23:50:38 +00:00
|
|
|
tags: ${{ env.docker_tags }}
|
2022-05-31 04:26:35 +00:00
|
|
|
build-args: |
|
|
|
|
commit_hash=${{ env.git_commit_hash }}
|
|
|
|
commit_date=${{ env.git_commit_date }}
|
2022-07-20 06:20:58 +00:00
|
|
|
- name: Sign the published image
|
|
|
|
env:
|
|
|
|
COSIGN_EXPERIMENTAL: "true"
|
|
|
|
run: cosign sign ${{ steps.meta.outputs.tags }}@${{ steps.build-and-push.outputs.digest }}
|
2022-05-30 23:50:38 +00:00
|
|
|
- name: Push to Stable Branch
|
|
|
|
uses: ad-m/github-push-action@master
|
|
|
|
if: env.stable_release == 'true'
|
|
|
|
with:
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
branch: stable
|
|
|
|
force: true
|