-
-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(actions): move DB images building to a different job
- Loading branch information
Showing
1 changed file
with
37 additions
and
12 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,14 +10,14 @@ env: | |
DB_VERSION: "10.9" | ||
|
||
jobs: | ||
build: | ||
buildbase: | ||
name: Build base images | ||
strategy: | ||
matrix: | ||
platform: [amd64, arm64] | ||
|
||
runs-on: ubuntu-latest | ||
|
||
if: github.event_name == 'push' | ||
steps: | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
|
@@ -45,6 +45,41 @@ jobs: | |
type=ref,event=tag | ||
type=raw,value=latest,enable={{is_default_branch}} | ||
# - name: Log into registry | ||
# run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin | ||
|
||
- name: Build base image | ||
uses: docker/build-push-action@v6 | ||
with: | ||
platforms: linux/${{matrix.platform}} | ||
file: install/automated/docker/openvk.Dockerfile | ||
tags: ${{ steps.basemeta.outputs.tags }} | ||
labels: ${{ steps.basemeta.outputs.labels }} | ||
build-args: | | ||
GITREPO=${{ steps.repositorystring.outputs.lowercase }} | ||
builddb: | ||
name: Build DB images | ||
strategy: | ||
matrix: | ||
platform: [amd64, arm64] | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
|
||
- name: Set up Docker Buildx | ||
id: buildx | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Change repository string to lowercase | ||
id: repositorystring | ||
uses: Entepotenz/[email protected] | ||
with: | ||
string: ${{ github.repository }} | ||
|
||
- name: MariaDB primary meta | ||
id: db-primarymeta | ||
uses: docker/metadata-action@v5 | ||
|
@@ -73,16 +108,6 @@ jobs: | |
# - name: Log into registry | ||
# run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin | ||
|
||
- name: Build base image | ||
uses: docker/build-push-action@v6 | ||
with: | ||
platforms: linux/${{matrix.platform}} | ||
file: install/automated/docker/openvk.Dockerfile | ||
tags: ${{ steps.basemeta.outputs.tags }} | ||
labels: ${{ steps.basemeta.outputs.labels }} | ||
build-args: | | ||
GITREPO=${{ steps.repositorystring.outputs.lowercase }} | ||
|
||
- name: Build MariaDB primary image | ||
uses: docker/build-push-action@v6 | ||
|