-
Notifications
You must be signed in to change notification settings - Fork 62
38 lines (35 loc) · 998 Bytes
/
ES_ACS_1.x.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
name: Build ES 1.2 ACS image
on: [push, pull_request]
jobs:
build_image:
name: Build ES 1.2 ACS image
runs-on: ubuntu-22.04
strategy:
matrix:
env:
- ARCH: x86_64
steps:
- name: Maximize build space
uses: easimon/maximize-build-space@master
with:
remove-dotnet: 'true'
remove-android: 'true'
remove-haskell: 'true'
remove-codeql: 'true'
remove-docker-images: 'true'
- uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Start building
run:
sudo -s;
git config --global user.name "arm-systemready";
git config --global user.email "[email protected]";
cd ES/scripts;
./build-scripts/get_source.sh;
./build-scripts/build-es-live-image.sh
- uses: actions/upload-artifact@v3
with:
name: es_acs_live_image.img.xz
path: ES/scripts/output/es_acs_live_image.img.xz
if-no-files-found: error