-
-
Notifications
You must be signed in to change notification settings - Fork 132
47 lines (39 loc) · 1.06 KB
/
daily-arm.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
---
name: Daily Build (ARM)
on:
push:
branches:
- master
- github-update
schedule:
- cron: "0 0 * * *"
workflow_dispatch: {}
jobs:
build:
name: Build (${{ matrix.configuration.name }})
runs-on: ubuntu-24.04
strategy:
matrix:
configuration:
- name: Pinebook Pro
script: ./build-pinebookpro.sh
- name: Raspberry Pi
script: ./build-rpi.sh
# Don't fail the whole workflow if one config fails
fail-fast: false
steps:
- name: Clean
uses: easimon/maximize-build-space@v10
with:
root-reserve-mb: 16000
swap-size-mb: 1024
remove-dotnet: 'true'
remove-android: 'true'
remove-haskell: 'true'
remove-codeql: 'true'
remove-docker-images: 'true'
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: |
sudo ${{ matrix.configuration.script }} "${{ secrets.key }}" "${{ secrets.secret }}" "${{ secrets.endpoint }}" "${{ secrets.bucket }}"