forked from archsink/aarch64
-
Notifications
You must be signed in to change notification settings - Fork 0
81 lines (77 loc) · 2.32 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
name: Build
on:
push:
schedule:
# Run every day at 5:20
- cron: '20 5 * * *'
workflow_dispatch:
permissions:
contents: write
jobs:
build-and-release:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- platform: linux/arm64
arch: aarch64
steps:
- uses: actions/checkout@v3
- name: Install system dependencies
run: sudo apt-get install -y tree
- name: Update submodule
working-directory: pkgbuilds
run: |
git submodule update --init
git checkout main
git pull
- 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
--rm
--env BUILDER_UID=$(id -u)
--env BUILDER_GID=$(id -g)
--platform "${{ matrix.platform }}"
--mount type=bind,src="$PWD",dst="/src/${{ github.repository }}"
--workdir "/src/${{ github.repository }}/pkgbuilds"
--entrypoint "/src/${{ github.repository }}/pkgbuilds/with-builder-user"
ghcr.io/fwcd/archlinux
./build-pkgs
- name: Build package database
run: >
docker run
--rm
--user "$(id -u):$(id -g)"
--mount type=bind,src="$PWD",dst="/src/${{ github.repository }}"
--workdir "/src/${{ github.repository }}/pkgbuilds"
ghcr.io/fwcd/archlinux
./build-db
- name: Output build trees for debugging
run: |
echo "==> Build tree"
tree pkgbuilds/build
echo "==> Database tree"
tree pkgbuilds/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: Commit and push updates
if: github.ref == 'refs/heads/main'
run: |
git add -A
git commit --allow-empty -m "Update packages ($(date '+%Y-%m-%d-%H-%M'))"
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" pkgbuilds/db/*