runner-images/.gitea/workflows/action.yml
Snoweuph cdffd10c8a
Some checks failed
CI / build_java (21) (push) Blocked by required conditions
CI / build_act (push) Successful in 5m29s
CI / build_java (17) (push) Waiting to run
CI / build_java (180) (push) Failing after 2m20s
CI / build_php (8.1) (push) Failing after 54s
CI / build_php (8.2) (push) Has been cancelled
.gitea/workflows/action.yml aktualisiert
2024-04-25 12:27:54 +00:00

94 lines
No EOL
3.1 KiB
YAML

name: CI
on:
push:
branches:
- 'master'
jobs:
build_act:
runs-on: 'ubuntu-latest'
steps:
- name: Install Docker
run: 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: 'ubuntu-latest'
needs: build_act
strategy:
matrix:
version: [8.1, 8.2]
steps:
- name: Install Docker
run: 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
tags: |
git.euph.dev/actions/runner-php-${{ matrix.version }}:latest
git.euph.dev/actions/runner-php-${{ matrix.version }}:${{ gitea.run_number }}
env:
PACKAGE_VERSION: ${{ matrix.version }}
build_java:
runs-on: 'ubuntu-latest'
needs: build_act
strategy:
matrix:
version: [1_8_0, 17, 21]
steps:
- name: Install Docker
run: 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
tags: |
git.euph.dev/actions/runner-java-${{ matrix.version }}:latest
git.euph.dev/actions/runner-java-${{ matrix.version }}:${{ gitea.run_number }}
env:
PACKAGE_VERSION: ${{ matrix.version }}