mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
7ed51dfff5
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 5.0.0 to 5.1.0.
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](0a5c615913...82c7e631bb
)
---
updated-dependencies:
- dependency-name: actions/setup-python
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
178 lines
6.2 KiB
YAML
178 lines
6.2 KiB
YAML
# 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'
|
|
pull_request:
|
|
branches:
|
|
- 'master'
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
paths-filter:
|
|
permissions:
|
|
contents: read # for dorny/paths-filter to fetch a list of changed files
|
|
pull-requests: read # for dorny/paths-filter to read pull requests
|
|
name: Filter
|
|
runs-on: ubuntu-latest
|
|
|
|
outputs:
|
|
docker: ${{ steps.filter.outputs.docker }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # pin@v4.1.1
|
|
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # pin@v3.0.2
|
|
id: filter
|
|
with:
|
|
filters: |
|
|
docker:
|
|
- .github/workflows/docker.yaml
|
|
- docker/**
|
|
- docker-compose.yml
|
|
- docker.dev.env
|
|
- Dockerfile
|
|
- InvenTree/settings.py
|
|
- requirements.txt
|
|
- tasks.py
|
|
|
|
# Build the docker image
|
|
build:
|
|
needs: paths-filter
|
|
if: needs.paths-filter.outputs.docker == 'true' || github.event_name == 'release' || github.event_name == 'push'
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
id-token: write
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
python_version: "3.11"
|
|
runs-on: ubuntu-latest # in the future we can try to use alternative runners here
|
|
|
|
steps:
|
|
- name: Check out repo
|
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # pin@v4.1.1
|
|
- name: Set Up Python ${{ env.python_version }}
|
|
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # pin@v5.1.0
|
|
with:
|
|
python-version: ${{ env.python_version }}
|
|
- name: Version Check
|
|
run: |
|
|
pip install requests
|
|
pip install pyyaml
|
|
python3 ci/version_check.py
|
|
echo "git_commit_hash=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
|
|
echo "git_commit_date=$(git show -s --format=%ci)" >> $GITHUB_ENV
|
|
- name: Test Docker Image
|
|
id: test-docker
|
|
run: |
|
|
docker build . --target production --tag inventree-test
|
|
docker run --rm inventree-test invoke --version
|
|
docker run --rm inventree-test invoke --list
|
|
docker run --rm inventree-test gunicorn --version
|
|
docker run --rm inventree-test pg_dump --version
|
|
- name: Build Docker Image
|
|
# Build the development docker image (using docker-compose.yml)
|
|
run: docker-compose build --no-cache
|
|
- name: Update Docker Image
|
|
run: |
|
|
docker-compose run inventree-dev-server invoke update
|
|
docker-compose run inventree-dev-server invoke setup-dev
|
|
docker-compose up -d
|
|
docker-compose run inventree-dev-server invoke wait
|
|
- name: Check Data Directory
|
|
# The following file structure should have been created by the docker image
|
|
run: |
|
|
test -d data
|
|
test -d data/env
|
|
test -d data/pgdb
|
|
test -d data/media
|
|
test -d data/static
|
|
test -d data/plugins
|
|
test -f data/config.yaml
|
|
test -f data/plugins.txt
|
|
test -f data/secret_key.txt
|
|
- name: Run Unit Tests
|
|
run: |
|
|
echo "GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}" >> docker.dev.env
|
|
docker-compose run inventree-dev-server invoke test --disable-pty
|
|
docker-compose run inventree-dev-server invoke test --migrations --disable-pty
|
|
docker-compose down
|
|
- name: Clean up test folder
|
|
run: |
|
|
rm -rf InvenTree/_testfolder
|
|
- name: Set up QEMU
|
|
if: github.event_name != 'pull_request'
|
|
uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # pin@v3.0.0
|
|
- name: Set up Docker Buildx
|
|
if: github.event_name != 'pull_request'
|
|
uses: docker/setup-buildx-action@2b51285047da1547ffb1b2203d8be4c0af6b1f20 # pin@v3.2.0
|
|
- name: Set up cosign
|
|
if: github.event_name != 'pull_request'
|
|
uses: sigstore/cosign-installer@e1523de7571e31dbe865fd2e80c5c7c23ae71eb4 # pin@v3.4.0
|
|
- name: Check if Dockerhub login is required
|
|
id: docker_login
|
|
run: |
|
|
if [ -z "${{ secrets.DOCKER_USERNAME }}" ]; then
|
|
echo "skip_dockerhub_login=true" >> $GITHUB_ENV
|
|
else
|
|
echo "skip_dockerhub_login=false" >> $GITHUB_ENV
|
|
fi
|
|
- name: Login to Dockerhub
|
|
if: github.event_name != 'pull_request' && steps.docker_login.outputs.skip_dockerhub_login != 'true'
|
|
uses: docker/login-action@e92390c5fb421da1463c202d546fed0ec5c39f20 # pin@v3.1.0
|
|
with:
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
- name: Log into registry ghcr.io
|
|
if: github.event_name != 'pull_request'
|
|
uses: docker/login-action@e92390c5fb421da1463c202d546fed0ec5c39f20 # pin@v3.1.0
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Extract Docker metadata
|
|
if: github.event_name != 'pull_request'
|
|
id: meta
|
|
uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 # pin@v5.5.1
|
|
with:
|
|
images: |
|
|
inventree/inventree
|
|
ghcr.io/${{ github.repository }}
|
|
|
|
- name: Push Docker Images
|
|
id: push-docker
|
|
if: github.event_name != 'pull_request'
|
|
uses: docker/build-push-action@2cdde995de11925a030ce8070c3d77a52ffcf1c0 # pin@v5.3.0
|
|
with:
|
|
context: .
|
|
platforms: linux/amd64,linux/arm64
|
|
push: true
|
|
sbom: true
|
|
provenance: false
|
|
target: production
|
|
tags: ${{ env.docker_tags }}
|
|
build-args: |
|
|
commit_hash=${{ env.git_commit_hash }}
|
|
commit_date=${{ env.git_commit_date }}
|