feat: Switch to Fedora for OS builds, use ccache
for OS builds
#9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: hydrun CI | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: "0 0 * * 0" | |
permissions: | |
contents: write | |
jobs: | |
build-linux: | |
runs-on: ${{ matrix.target.runner }} | |
strategy: | |
matrix: | |
target: | |
# Tests | |
- id: test | |
src: . | |
os: golang:bookworm | |
flags: -e '-v /tmp/ssh-key:/tmp/ssh-key' | |
cmd: GOFLAGS="-short" ./Hydrunfile test | |
dst: out/nonexistent | |
runner: depot-ubuntu-22.04-32 | |
# Binaries | |
- id: go.drafter-nat | |
src: . | |
os: golang:bookworm | |
flags: -e '-v /tmp/ssh-key:/tmp/ssh-key' | |
cmd: ./Hydrunfile go drafter-nat | |
dst: out/* | |
runner: depot-ubuntu-22.04-32 | |
- id: go.drafter-forwarder | |
src: . | |
os: golang:bookworm | |
flags: -e '-v /tmp/ssh-key:/tmp/ssh-key' | |
cmd: ./Hydrunfile go drafter-forwarder | |
dst: out/* | |
runner: depot-ubuntu-22.04-32 | |
- id: go.drafter-agent | |
src: . | |
os: golang:bookworm | |
flags: -e '-v /tmp/ssh-key:/tmp/ssh-key' | |
cmd: ./Hydrunfile go drafter-agent | |
dst: out/* | |
runner: depot-ubuntu-22.04-32 | |
- id: go.drafter-liveness | |
src: . | |
os: golang:bookworm | |
flags: -e '-v /tmp/ssh-key:/tmp/ssh-key' | |
cmd: ./Hydrunfile go drafter-liveness | |
dst: out/* | |
runner: depot-ubuntu-22.04-32 | |
- id: go.drafter-snapshotter | |
src: . | |
os: golang:bookworm | |
flags: -e '-v /tmp/ssh-key:/tmp/ssh-key' | |
cmd: ./Hydrunfile go drafter-snapshotter | |
dst: out/* | |
runner: depot-ubuntu-22.04-32 | |
- id: go.drafter-packager | |
src: . | |
os: golang:bookworm | |
flags: -e '-v /tmp/ssh-key:/tmp/ssh-key' | |
cmd: ./Hydrunfile go drafter-packager | |
dst: out/* | |
runner: depot-ubuntu-22.04-32 | |
- id: go.drafter-runner | |
src: . | |
os: golang:bookworm | |
flags: -e '-v /tmp/ssh-key:/tmp/ssh-key' | |
cmd: ./Hydrunfile go drafter-runner | |
dst: out/* | |
runner: depot-ubuntu-22.04-32 | |
- id: go.drafter-registry | |
src: . | |
os: golang:bookworm | |
flags: -e '-v /tmp/ssh-key:/tmp/ssh-key' | |
cmd: ./Hydrunfile go drafter-registry | |
dst: out/* | |
runner: depot-ubuntu-22.04-32 | |
- id: go.drafter-peer | |
src: . | |
os: golang:bookworm | |
flags: -e '-v /tmp/ssh-key:/tmp/ssh-key' | |
cmd: ./Hydrunfile go drafter-peer | |
dst: out/* | |
runner: depot-ubuntu-22.04-32 | |
- id: go.drafter-terminator | |
src: . | |
os: golang:bookworm | |
flags: -e '-v /tmp/ssh-key:/tmp/ssh-key' | |
cmd: ./Hydrunfile go drafter-terminator | |
dst: out/* | |
runner: depot-ubuntu-22.04-32 | |
# OS | |
- id: os.drafter-x86_64 | |
src: . | |
os: fedora:40 | |
flags: -e '-v /tmp/ssh-key:/tmp/ssh-key -v /tmp/ccache:/root/.buildroot-ccache' | |
cmd: ./Hydrunfile os drafteros-firecracker-x86_64_defconfig drafteros-x86_64.tar.zst | |
dst: out/drafteros-x86_64.tar.zst | |
runner: depot-ubuntu-22.04-32 | |
- id: os.drafter-aarch64 | |
src: . | |
os: fedora:40 | |
flags: -e '-v /tmp/ssh-key:/tmp/ssh-key -v /tmp/ccache:/root/.buildroot-ccache' | |
cmd: ./Hydrunfile os drafteros-firecracker-aarch64_defconfig drafteros-aarch64.tar.zst | |
dst: out/drafteros-aarch64.tar.zst | |
runner: depot-ubuntu-22.04-arm-32 | |
steps: | |
- name: Maximize build space | |
run: | | |
sudo rm -rf /usr/share/dotnet | |
sudo rm -rf /usr/local/lib/android | |
sudo rm -rf /opt/ghc | |
- 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: Setup SSH key | |
working-directory: . | |
env: | |
SSH_KEY: ${{ secrets.SSH_KEY }} | |
run: echo "${SSH_KEY}" | base64 -d >'/tmp/ssh-key' | |
- 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: Upload output | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ matrix.target.id }} | |
path: ${{ matrix.target.dst }} | |
publish-linux: | |
runs-on: ubuntu-latest | |
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 | |
id: extract_branch | |
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})" | |
- name: Publish pre-release to GitHub releases | |
if: ${{ github.ref == 'refs/heads/master' }} | |
uses: marvinpinto/action-automatic-releases@latest | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
automatic_release_tag: 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: marvinpinto/action-automatic-releases@latest | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
prerelease: false | |
files: | | |
/tmp/out/*/* |