Skip to content

Commit abb42a7

Browse files
authored
GitHub update (elementary#495)
* remove distinst weekly build * condence all daily workflows to single matrix workflow
1 parent 2f96320 commit abb42a7

File tree

5 files changed

+41
-95
lines changed

5 files changed

+41
-95
lines changed

.github/workflows/daily-5.1.yml

-27
This file was deleted.

.github/workflows/daily-6.0-pinebookpro.yml

-22
This file was deleted.

.github/workflows/daily-6.0-rpi.yml

-22
This file was deleted.

.github/workflows/daily.yml

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
---
2+
3+
name: Daily Build
4+
5+
on:
6+
push:
7+
branches:
8+
- master
9+
- github-update
10+
schedule:
11+
- cron: "0 0 * * *"
12+
workflow_dispatch: {}
13+
14+
jobs:
15+
build:
16+
name: Build (${{ matrix.configuration.name }})
17+
runs-on: ubuntu-20.04
18+
19+
strategy:
20+
matrix:
21+
configuration:
22+
- name: Pinebook Pro
23+
script: ./build-pinebookpro.sh
24+
25+
- name: Raspberry Pi
26+
script: ./build-rpi.sh
27+
28+
steps:
29+
- name: Clean
30+
uses: easimon/maximize-build-space@v4
31+
with:
32+
root-reserve-mb: 20480
33+
swap-size-mb: 1024
34+
remove-dotnet: 'true'
35+
36+
- name: Checkout
37+
uses: actions/checkout@v2
38+
39+
- name: Build
40+
run: |
41+
sudo ${{ matrix.configuration.script }} "${{ secrets.key }}" "${{ secrets.secret }}" "${{ secrets.endpoint }}" "${{ secrets.bucket }}"

.github/workflows/distinst-weekly.yml

-24
This file was deleted.

0 commit comments

Comments
 (0)