Snoweuph
5ecf0ddb88
Some checks failed
Build Runner Go / build_go (push) Blocked by required conditions
Build Runner Base / build_act (push) Failing after 13s
Build Runner csharp / build_csharp (6) (push) Failing after 14s
Build Runner Godot / build_godot (4.2.2) (push) Failing after 15s
Build Runner csharp / build_csharp (8) (push) Failing after 15s
Build Runner Java / build_java (17) (push) Failing after 16s
Build Runner Java / build_java (21) (push) Failing after 16s
Build Runner Java / build_java (8) (push) Failing after 17s
Build Runner JS / build_lua (latest) (push) Failing after 17s
Build Runner Lua / build_lua (5.1) (push) Failing after 15s
Build Runner Lua / build_lua (5.2) (push) Failing after 15s
Build Runner Lua / build_lua (5.4) (push) Failing after 15s
Build Runner Lua / build_lua (5.3) (push) Failing after 16s
Build Runner Php / build_php (8.2) (push) Failing after 10s
Build Runner Php / build_php (8.3) (push) Failing after 10s
Build Runner Redot / build_redot (4.3) (push) Failing after 9s
48 lines
1.3 KiB
YAML
48 lines
1.3 KiB
YAML
name: "Build Runner Base"
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * *"
|
|
push:
|
|
branches:
|
|
- "master"
|
|
|
|
jobs:
|
|
build_act:
|
|
runs-on: "docker"
|
|
container:
|
|
image: docker:27.5.1-alpine3.21
|
|
services:
|
|
docker:
|
|
image: docker:27.5.1-dind-alpine3.21
|
|
options: --privileged --shm-size=2g
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
|
ports:
|
|
- 2375:2375
|
|
env:
|
|
DOCKER_TLS_CERTDIR: ""
|
|
steps:
|
|
- name: Check
|
|
run: docker ps
|
|
- name: Install Node
|
|
run: apk add nodejs
|
|
- 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:${{ forgejo.run_number }}
|