-
Notifications
You must be signed in to change notification settings - Fork 2
83 lines (77 loc) · 2.2 KB
/
build.yml
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
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/*