.gitea/workflows/action.yml aktualisiert
All checks were successful
CI / build_act (push) Successful in 45s
CI / build_php (8.1) (push) Successful in 1m26s
CI / build_php (8.2) (push) Successful in 1m34s
CI / build_php (8.3) (push) Successful in 1m45s
CI / build_lua (5.1) (push) Successful in 1m52s
CI / build_lua (5.2) (push) Successful in 1m50s
CI / build_lua (5.3) (push) Successful in 1m53s
CI / build_lua (5.4) (push) Successful in 1m52s
CI / build_java (17) (push) Successful in 2m16s
CI / build_java (8) (push) Successful in 2m24s
CI / build_java (21) (push) Successful in 2m30s
All checks were successful
CI / build_act (push) Successful in 45s
CI / build_php (8.1) (push) Successful in 1m26s
CI / build_php (8.2) (push) Successful in 1m34s
CI / build_php (8.3) (push) Successful in 1m45s
CI / build_lua (5.1) (push) Successful in 1m52s
CI / build_lua (5.2) (push) Successful in 1m50s
CI / build_lua (5.3) (push) Successful in 1m53s
CI / build_lua (5.4) (push) Successful in 1m52s
CI / build_java (17) (push) Successful in 2m16s
CI / build_java (8) (push) Successful in 2m24s
CI / build_java (21) (push) Successful in 2m30s
This commit is contained in:
parent
f77fac366a
commit
11dd6b6a62
1 changed files with 75 additions and 28 deletions
|
@ -6,11 +6,12 @@ on:
|
||||||
- 'master'
|
- 'master'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build_act_base:
|
build_act:
|
||||||
runs-on: 'priviliged'
|
runs-on: 'priviliged'
|
||||||
steps:
|
steps:
|
||||||
- name: Install Docker
|
- name: Install Docker
|
||||||
run: 'rm $(which docker) && curl -fsSL https://get.docker.com | sh'
|
run: |
|
||||||
|
rm $(which docker) && curl -fsSL https://get.docker.com | sh
|
||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
uses: 'https://git.euph.dev/actions/docker-setup-qemu@v3'
|
uses: 'https://git.euph.dev/actions/docker-setup-qemu@v3'
|
||||||
- name: Setup Buildx
|
- name: Setup Buildx
|
||||||
|
@ -25,38 +26,22 @@ jobs:
|
||||||
id: build_act_base
|
id: build_act_base
|
||||||
uses: 'https://git.euph.dev/actions/docker-build-push@v5'
|
uses: 'https://git.euph.dev/actions/docker-build-push@v5'
|
||||||
with:
|
with:
|
||||||
context: '{{defaultContext}}:images/actions/act'
|
context: "{{defaultContext}}:images/actions/act"
|
||||||
push: true
|
push: true
|
||||||
tags: |
|
tags: |
|
||||||
git.euph.dev/actions/runner-basic:latest
|
git.euph.dev/actions/runner-basic:latest
|
||||||
git.euph.dev/actions/runner-basic:${{ gitea.run_number }}
|
git.euph.dev/actions/runner-basic:${{ gitea.run_number }}
|
||||||
|
|
||||||
build_act_images:
|
build_php:
|
||||||
runs-on: 'priviliged'
|
runs-on: 'priviliged'
|
||||||
needs: build_act
|
needs: build_act
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
language: [java, php, lua]
|
version: [8.1, 8.2, 8.3]
|
||||||
include:
|
|
||||||
- version:
|
|
||||||
- 8
|
|
||||||
- 17
|
|
||||||
- 21
|
|
||||||
language: java
|
|
||||||
- version:
|
|
||||||
- 8.1
|
|
||||||
- 8.2
|
|
||||||
- 8.3
|
|
||||||
language: php
|
|
||||||
- version:
|
|
||||||
- 5.1
|
|
||||||
- 5.2
|
|
||||||
- 5.3
|
|
||||||
- 5.4
|
|
||||||
language: lua
|
|
||||||
steps:
|
steps:
|
||||||
- name: Install Docker
|
- name: Install Docker
|
||||||
run: 'rm $(which docker) && curl -fsSL https://get.docker.com | sh'
|
run: |
|
||||||
|
rm $(which docker) && curl -fsSL https://get.docker.com | sh
|
||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
uses: 'https://git.euph.dev/actions/docker-setup-qemu@v3'
|
uses: 'https://git.euph.dev/actions/docker-setup-qemu@v3'
|
||||||
- name: Setup Buildx
|
- name: Setup Buildx
|
||||||
|
@ -67,13 +52,75 @@ jobs:
|
||||||
registry: git.euph.dev
|
registry: git.euph.dev
|
||||||
username: ${{ secrets.DEPLOY_USER }}
|
username: ${{ secrets.DEPLOY_USER }}
|
||||||
password: ${{ secrets.DEPLOY_SECRET }}
|
password: ${{ secrets.DEPLOY_SECRET }}
|
||||||
- name: Build and push ${{ matrix.language }} image
|
- name: Build and push php image
|
||||||
id: build_act_${{ matrix.language }}
|
id: build_act_php
|
||||||
uses: 'https://git.euph.dev/actions/docker-build-push@v5'
|
uses: 'https://git.euph.dev/actions/docker-build-push@v5'
|
||||||
with:
|
with:
|
||||||
context: '{{defaultContext}}:images/actions/${{ matrix.language }}'
|
context: "{{defaultContext}}:images/actions/php"
|
||||||
push: true
|
push: true
|
||||||
build-args: PACKAGE_VERSION=${{ matrix.version }}
|
build-args: PACKAGE_VERSION=${{ matrix.version }}
|
||||||
tags: |
|
tags: |
|
||||||
git.euph.dev/actions/runner-${{ matrix.language }}-${{ matrix.version }}:latest
|
git.euph.dev/actions/runner-php-${{ matrix.version }}:latest
|
||||||
git.euph.dev/actions/runner-${{ matrix.language }}-${{ matrix.version }}:${{ gitea.run_number }}
|
git.euph.dev/actions/runner-php-${{ matrix.version }}:${{ gitea.run_number }}
|
||||||
|
|
||||||
|
build_java:
|
||||||
|
runs-on: 'priviliged'
|
||||||
|
needs: build_act
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
version: [8, 17, 21]
|
||||||
|
steps:
|
||||||
|
- name: Install Docker
|
||||||
|
run: |
|
||||||
|
rm $(which docker) && curl -fsSL https://get.docker.com | sh
|
||||||
|
- name: Set up QEMU
|
||||||
|
uses: 'https://git.euph.dev/actions/docker-setup-qemu@v3'
|
||||||
|
- name: Setup Buildx
|
||||||
|
uses: 'https://git.euph.dev/actions/docker-setup-buildx@v3'
|
||||||
|
- name: Login to Registry
|
||||||
|
uses: 'https://git.euph.dev/actions/docker-login@v3'
|
||||||
|
with:
|
||||||
|
registry: git.euph.dev
|
||||||
|
username: ${{ secrets.DEPLOY_USER }}
|
||||||
|
password: ${{ secrets.DEPLOY_SECRET }}
|
||||||
|
- name: Build and push java image
|
||||||
|
id: build_act_java
|
||||||
|
uses: 'https://git.euph.dev/actions/docker-build-push@v5'
|
||||||
|
with:
|
||||||
|
context: "{{defaultContext}}:images/actions/java"
|
||||||
|
push: true
|
||||||
|
build-args: PACKAGE_VERSION=${{ matrix.version }}
|
||||||
|
tags: |
|
||||||
|
git.euph.dev/actions/runner-java-${{ matrix.version }}:latest
|
||||||
|
git.euph.dev/actions/runner-java-${{ matrix.version }}:${{ gitea.run_number }}
|
||||||
|
|
||||||
|
build_lua:
|
||||||
|
runs-on: 'priviliged'
|
||||||
|
needs: build_act
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
version: [5.1, 5.2, 5.3, 5.4]
|
||||||
|
steps:
|
||||||
|
- name: Install Docker
|
||||||
|
run: |
|
||||||
|
rm $(which docker) && curl -fsSL https://get.docker.com | sh
|
||||||
|
- name: Set up QEMU
|
||||||
|
uses: 'https://git.euph.dev/actions/docker-setup-qemu@v3'
|
||||||
|
- name: Setup Buildx
|
||||||
|
uses: 'https://git.euph.dev/actions/docker-setup-buildx@v3'
|
||||||
|
- name: Login to Registry
|
||||||
|
uses: 'https://git.euph.dev/actions/docker-login@v3'
|
||||||
|
with:
|
||||||
|
registry: git.euph.dev
|
||||||
|
username: ${{ secrets.DEPLOY_USER }}
|
||||||
|
password: ${{ secrets.DEPLOY_SECRET }}
|
||||||
|
- name: Build and push Lua image
|
||||||
|
id: build_act_lua
|
||||||
|
uses: 'https://git.euph.dev/actions/docker-build-push@v5'
|
||||||
|
with:
|
||||||
|
context: "{{defaultContext}}:images/actions/lua"
|
||||||
|
push: true
|
||||||
|
build-args: PACKAGE_VERSION=${{ matrix.version }}
|
||||||
|
tags: |
|
||||||
|
git.euph.dev/actions/runner-lua-${{ matrix.version }}:latest
|
||||||
|
git.euph.dev/actions/runner-lua-${{ matrix.version }}:${{ gitea.run_number }}
|
Loading…
Reference in a new issue