initial commit
[skip ci]
This commit is contained in:
commit
5d8863e4d9
2 changed files with 149 additions and 0 deletions
36
.forgejo/workflows/alpine.yml
Normal file
36
.forgejo/workflows/alpine.yml
Normal file
|
@ -0,0 +1,36 @@
|
|||
name: Alpine
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
abuild:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
arch:
|
||||
- "aarch64"
|
||||
pkg:
|
||||
# https://gitlab.alpinelinux.org/alpine/aports/-/merge_requests/77851
|
||||
- path: testing/lsd
|
||||
branch: master
|
||||
repo: https://gitlab.alpinelinux.org/alpine/aports
|
||||
|
||||
# https://gitlab.alpinelinux.org/alpine/aports/-/merge_requests/77918
|
||||
- path: testing/hickory-dns
|
||||
branch: hickory-dns
|
||||
repo: https://gitlab.alpinelinux.org/msrd0/aports
|
||||
|
||||
steps:
|
||||
- name: Build Alpine Package ${{matrix.pkg.path}}
|
||||
uses: docker://ghcr.io/msrd0/abuild-aarch64:3.21
|
||||
with:
|
||||
entrypoint: ./build.sh
|
||||
args: |
|
||||
"${{github.event.repository.html_url}}"
|
||||
"${{matrix.pkg.path}}"
|
||||
"${{}}"
|
Loading…
Add table
Add a link
Reference in a new issue