forked from pojntfx/ipxe-binaries
-
Notifications
You must be signed in to change notification settings - Fork 0
101 lines (92 loc) · 2.78 KB
/
hydrun.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
name: hydrun CI
on:
push:
pull_request:
schedule:
- cron: "0 0 * * 0"
workflow_dispatch:
jobs:
build-linux:
runs-on: ${{ matrix.target.runner }}
permissions:
id-token: write
contents: read
attestations: write
strategy:
matrix:
target:
# Binaries
- id: c.ipxe
src: .
os: debian:bookworm
flags: -e '-v /tmp/ccache:/root/.cache/ccache'
cmd: ./Hydrunfile c
dst: out/*
runner: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Restore ccache
uses: actions/cache/restore@v4
with:
path: |
/tmp/ccache
key: cache-ccache-${{ matrix.target.id }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Set up hydrun
run: |
curl -L -o /tmp/hydrun "https://github.com/pojntfx/hydrun/releases/latest/download/hydrun.linux-$(uname -m)"
sudo install /tmp/hydrun /usr/local/bin
- name: Build with hydrun
working-directory: ${{ matrix.target.src }}
run: hydrun -o ${{ matrix.target.os }} ${{ matrix.target.flags }} "${{ matrix.target.cmd }}"
- name: Fix permissions for output
run: sudo chown -R $USER .
- name: Save ccache
uses: actions/cache/save@v4
with:
path: |
/tmp/ccache
key: cache-ccache-${{ matrix.target.id }}
- name: Attest output
uses: actions/attest-build-provenance@v1
with:
subject-path: ${{ matrix.target.dst }}
- name: Upload output
uses: actions/upload-artifact@v4
with:
path: ${{ matrix.target.dst }}
publish-linux:
runs-on: ubuntu-latest
permissions:
contents: write
needs: build-linux
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download output
uses: actions/download-artifact@v4
with:
path: /tmp/out
- name: Extract branch name
shell: bash
run: echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT
id: extract_branch
- name: Publish pre-release to GitHub releases
if: startsWith(github.ref, 'refs/heads/main')
uses: softprops/action-gh-release@v2
with:
tag_name: release-${{ steps.extract_branch.outputs.branch }}
prerelease: true
files: |
/tmp/out/*/*
- name: Publish release to GitHub releases
if: startsWith(github.ref, 'refs/tags/v')
uses: softprops/action-gh-release@v2
with:
prerelease: false
files: |
/tmp/out/*/*