Merge branch 'v4' into pr@v4@perf_refactor_sync_cloud #82
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Run Build Test" | |
on: | |
push: | |
paths: | |
- 'Dockerfile' | |
- 'Dockerfile*' | |
- 'Dockerfile-*' | |
- 'pyproject.toml' | |
- 'poetry.lock' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: docker/setup-buildx-action@v3 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build Base Image | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
push: true | |
file: Dockerfile.base | |
tags: ghcr.io/jumpserver/core:v4-base | |
platforms: linux/amd64 | |
build-args: | | |
APT_MIRROR=http://deb.debian.org | |
PIP_MIRROR=https://pypi.org/simple | |
outputs: type=image,oci-mediatypes=true,compression=zstd,compression-level=3,force-compression=true | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
- name: Build CE Image | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
push: true | |
file: Dockerfile | |
tags: ghcr.io/jumpserver/core:v4-lite | |
platforms: linux/amd64 | |
build-args: | | |
VERSION=v4 | |
APT_MIRROR=http://deb.debian.org | |
BASE_IMAGE=ghcr.io/jumpserver/core | |
outputs: type=image,oci-mediatypes=true,compression=zstd,compression-level=3,force-compression=true | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
- name: Prepare EE Image | |
run: | | |
sed -i 's@^FROM registry.fit2cloud.com/jumpserver/xpack@# FROM registry.fit2cloud.com/jumpserver/xpack@' Dockerfile-ee | |
sed -i 's@^FROM registry.fit2cloud.com/jumpserver@FROM ghcr.io/jumpserver@g' Dockerfile-ee | |
sed -i 's@^COPY --from=build-xpack@# COPY --from=build-xpack@g' Dockerfile-ee | |
- name: Build EE Image | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
push: false | |
file: Dockerfile-ee | |
tags: jumpserver/core:v4 | |
platforms: linux/amd64 | |
build-args: | | |
VERSION=v4 | |
APT_MIRROR=http://deb.debian.org | |
BASE_IMAGE=ghcr.io/jumpserver/core | |
outputs: type=image,oci-mediatypes=true,compression=zstd,compression-level=3,force-compression=true | |
cache-from: type=gha | |
cache-to: type=gha,mode=max |