Snoweuph
7a9eaa1c94
Some checks failed
CI / build_act (push) Successful in 5m0s
CI / build_php (8.1) (push) Failing after 1m23s
CI / build_php (8.2) (push) Successful in 2m51s
CI / build_java (17) (push) Failing after 1m20s
CI / build_java (180) (push) Failing after 1m0s
CI / build_java (21) (push) Failing after 2m5s
94 lines
No EOL
3.1 KiB
YAML
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 }} |