-
Notifications
You must be signed in to change notification settings - Fork 8
62 lines (60 loc) · 1.82 KB
/
build_arm64.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
name: Build ARM64
concurrency:
group: "master-arm64-build"
#cancel-in-progress: true
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
env:
ARCH: amd64
steps:
- uses: actions/checkout@v2
- run: |
git fetch --prune --unshallow
mkdir build
- name: Set up QEMU
uses: docker/setup-qemu-action@master
with:
platforms: all
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@master
# - name: Download meta 🔧
# uses: luet-lab/luet-github-action@master
# with:
# FINAL_REPO: quay.io/c3os/packages-arm64
# REPOSITORY_TYPE: docker
# downloadAllMeta: true
# downloadFromList: true
# downloadMeta: true
- name: Build packages 🔧
uses: luet-lab/luet-github-action@master
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
with:
build: true
fromIndex: true
onlyMissing: true
buildx: true
platform: linux/arm/v8
FINAL_REPO: quay.io/mocaccino/desktop-arm64
DOCKER_USERNAME: ${{ secrets.QUAY_ROBOT_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.QUAY_ROBOT_PASSWORD }}
DOCKER_ENDPOINT: quay.io
REPOSITORY_TYPE: docker
pushFinalImages: true
pushCache: true
values: values/arm64.yaml
- name: Create repo 🔧
uses: luet-lab/luet-github-action@master
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
with:
FINAL_REPO: quay.io/mocaccino/desktop-arm64
DOCKER_USERNAME: ${{ secrets.QUAY_ROBOT_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.QUAY_ROBOT_PASSWORD }}
DOCKER_ENDPOINT: quay.io
REPOSITORY_TYPE: docker
createRepo: true
pushCache: true