Skip to content

Build for both x86_64 and aarch64 #8

Build for both x86_64 and aarch64

Build for both x86_64 and aarch64 #8

Workflow file for this run

name: Build
on:
push:
schedule:
# Run every day at 5:20
- cron: '20 5 * * *'
workflow_dispatch:
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- platform: linux/amd64
arch: x86_64
image: docker.io/archlinux
- platform: linux/arm64
arch: aarch64
image: ghcr.io/fwcd/archlinuxarm-docker
steps:
- uses: actions/checkout@v3
- name: Set up QEMU
if: matrix.platform != 'linux/amd64'
uses: docker/setup-qemu-action@v2
with:
platforms: ${{ matrix.platform }}
- name: Build packages (${{ matrix.platform }})
run: >
docker run
--tty
--rm
--platform "${{ matrix.platform }}"
--user "$(id -u "$USER"):$(id -g "$USER")"
--mount type=bind,src="$PWD",dst=/src/arch-repo
--workdir /src/arch-repo
--entrypoint /src/arch-repo/install-deps-and-build-pkgs
${{ matrix.image }}
- name: Upload build artifacts
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.arch }}
path: build
retention-days: 1
release:
if: github.repository == 'fwcd/arch-repo'
runs-on: ubuntu-latest
needs: [build]
steps:
- uses: actions/checkout@v3
- name: Download build artifacts for each architecture
uses: actions/download-artifact@v3
with:
path: build
- name: Build package database
run: ./build-db
- name: Set up Git config
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
- name: Update PKGBUILDs and .SRCINFOs
run: cp -r build/x86_64/src/ .
- name: Commit updates
run: |
git add -A
git commit --allow-empty -m "Update packages ($(date '+%Y-%m-%d-%H-%M'))"
- name: Push changes
run: git push
- name: Publish release
if: github.ref == 'refs/heads/main'
env:
GH_TOKEN: ${{ github.token }}
run: |
tag="$(date '+%Y-%m-%d-%H-%M')"
gh release create --title "$tag" "$tag" || true
gh release upload --clobber "$tag" db/*