Build toolchains
Some checks are pending
Build Linux Containers / build-and-push-linux-image (linux-arm64, fw13-ubuntu-latest) (push) Waiting to run
Build Linux Containers / build-and-push-linux-image (linux-riscv64, fw13-ubuntu-latest) (push) Waiting to run
Build Linux Containers / build-and-push-linux-image (linux-x64, fw13-ubuntu-latest) (push) Waiting to run
Build Linux Containers / build-and-push-mingw-image (push) Successful in 1m13s
Some checks are pending
Build Linux Containers / build-and-push-linux-image (linux-arm64, fw13-ubuntu-latest) (push) Waiting to run
Build Linux Containers / build-and-push-linux-image (linux-riscv64, fw13-ubuntu-latest) (push) Waiting to run
Build Linux Containers / build-and-push-linux-image (linux-x64, fw13-ubuntu-latest) (push) Waiting to run
Build Linux Containers / build-and-push-mingw-image (push) Successful in 1m13s
This commit is contained in:
@@ -5,9 +5,30 @@ on: [push]
|
|||||||
env:
|
env:
|
||||||
GITEA_DOMAIN: git.tesses.org
|
GITEA_DOMAIN: git.tesses.org
|
||||||
GITEA_REGISTRY_USER: tesses50
|
GITEA_REGISTRY_USER: tesses50
|
||||||
|
RESULT_MINGW_IMAGE_NAME: tesses50/global-containers-mingw
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build-and-push-mingw-image:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v3
|
||||||
|
- name: Log in to registry
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
registry: ${{ env.GITEA_DOMAIN }}
|
||||||
|
username: ${{ env.GITEA_REGISTRY_USER }}
|
||||||
|
password: ${{ secrets.PACKAGE_AND_BREW }}
|
||||||
|
- name: Publish mingw image
|
||||||
|
uses: docker/build-push-action@v6
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
file: ./Dockerfile.mingw
|
||||||
|
push: true
|
||||||
|
tags: ${{ env.GITEA_DOMAIN }}/${{ env.RESULT_MINGW_IMAGE_NAME }}:latest
|
||||||
|
build-and-push-linux-image:
|
||||||
# The 'container' tag replaces the runner OS; the job runs INSIDE this image
|
# The 'container' tag replaces the runner OS; the job runs INSIDE this image
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: true
|
fail-fast: true
|
||||||
@@ -1,30 +0,0 @@
|
|||||||
name: Build Windows Containers
|
|
||||||
run-name: ${{ gitea.actor }} is building the global containers 🚀
|
|
||||||
on: [push]
|
|
||||||
|
|
||||||
env:
|
|
||||||
GITEA_DOMAIN: git.tesses.org
|
|
||||||
GITEA_REGISTRY_USER: tesses50
|
|
||||||
RESULT_MINGW_IMAGE_NAME: tesses50/global-containers-mingw
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build-and-push-mingw-image:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
- name: Set up Docker Buildx
|
|
||||||
uses: docker/setup-buildx-action@v3
|
|
||||||
- name: Log in to registry
|
|
||||||
uses: docker/login-action@v3
|
|
||||||
with:
|
|
||||||
registry: ${{ env.GITEA_DOMAIN }}
|
|
||||||
username: ${{ env.GITEA_REGISTRY_USER }}
|
|
||||||
password: ${{ secrets.PACKAGE_AND_BREW }}
|
|
||||||
- name: Publish mingw image
|
|
||||||
uses: docker/build-push-action@v6
|
|
||||||
with:
|
|
||||||
context: .
|
|
||||||
file: ./Dockerfile.mingw
|
|
||||||
push: true
|
|
||||||
tags: ${{ env.GITEA_DOMAIN }}/${{ env.RESULT_MINGW_IMAGE_NAME }}:latest
|
|
||||||
Reference in New Issue
Block a user