.gitea/workflows/base.yml aktualisiert
All checks were successful
CI / build_act (push) Successful in 1m15s
All checks were successful
CI / build_act (push) Successful in 1m15s
This commit is contained in:
parent
583b7053f0
commit
8aabe59ee8
2 changed files with 33 additions and 126 deletions
|
@ -1,126 +0,0 @@
|
||||||
name: CI
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- 'master'
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build_act:
|
|
||||||
runs-on: 'priviliged'
|
|
||||||
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 act base image
|
|
||||||
id: build_act_base
|
|
||||||
uses: 'https://git.euph.dev/actions/docker-build-push@v5'
|
|
||||||
with:
|
|
||||||
context: "{{defaultContext}}:images/actions/act"
|
|
||||||
push: true
|
|
||||||
tags: |
|
|
||||||
git.euph.dev/actions/runner-basic:latest
|
|
||||||
git.euph.dev/actions/runner-basic:${{ gitea.run_number }}
|
|
||||||
|
|
||||||
build_php:
|
|
||||||
runs-on: 'priviliged'
|
|
||||||
needs: build_act
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
version: [8.1, 8.2, 8.3]
|
|
||||||
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 php image
|
|
||||||
id: build_act_php
|
|
||||||
uses: 'https://git.euph.dev/actions/docker-build-push@v5'
|
|
||||||
with:
|
|
||||||
context: "{{defaultContext}}:images/actions/php"
|
|
||||||
push: true
|
|
||||||
build-args: PACKAGE_VERSION=${{ matrix.version }}
|
|
||||||
tags: |
|
|
||||||
git.euph.dev/actions/runner-php-${{ matrix.version }}:latest
|
|
||||||
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 }}
|
|
33
.gitea/workflows/base.yml
Normal file
33
.gitea/workflows/base.yml
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
name: CI
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- 'master'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build_act:
|
||||||
|
runs-on: 'priviliged'
|
||||||
|
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 act base image
|
||||||
|
id: build_act_base
|
||||||
|
uses: 'https://git.euph.dev/actions/docker-build-push@v5'
|
||||||
|
with:
|
||||||
|
context: "{{defaultContext}}:images/actions/act"
|
||||||
|
push: true
|
||||||
|
tags: |
|
||||||
|
git.euph.dev/actions/runner-basic:latest
|
||||||
|
git.euph.dev/actions/runner-basic:${{ gitea.run_number }}
|
Loading…
Reference in a new issue