Skip to content

Add release binaries from git main #9

Add release binaries from git main

Add release binaries from git main #9

Workflow file for this run

name: Build binaries
on: push
permissions:
actions: read
jobs:
build:
strategy:
matrix:
base:
- docker.io/library/ubuntu:22.04
- docker.io/library/ubuntu:24.04
- quay.io/fedora/fedora:41
- quay.io/centos/centos:stream9
runs-on: ubuntu-24.04
container: ${{ matrix.base }}
steps:
- name: Bootstrap git:

Check failure on line 20 in .github/workflows/builds.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/builds.yaml

Invalid workflow file

You have an error in your yaml syntax on line 20
run: if test -x /usr/bin/apt; then apt -y update && apt -y install git; else dnf -y install git; fi
- name: Checkout repository
uses: actions/checkout@v4
- name: Install dependencies
run: ./hacking/installdeps.sh
- name: Set SOURCE_DATE_EPOCH
run: echo "SOURCE_DATE_EPOCH=$(git log -1 --pretty=%ct)" >> $GITHUB_ENV
- name: Configure
run: meson setup build --prefix=/usr -Dfuse=disabled
- name: Build
run: meson compile -C build
- name: Capture build
run: DESTDIR=$(pwd)/instroot meson install -C build && \
tar -C instroot --sort=name --owner=0 --group=0 --numeric-owner \
--mtime="${SOURCE_DATE_EPOCH}" \
--pax-option=exthdr.name=%d/PaxHeaders/%f,delete=atime,delete=ctime \
-czf composefs.tar.gz .
- name: Upload binary
uses: actions/upload-artifact@v4
with:
name: composefs-${{ matrix.base }}.tar
path: composefs.tar.gz
- name: Upload log
uses: actions/upload-artifact@v4
if: always()
with:
name: testlog-asan.txt
path: build/meson-logs/testlog.txt