-
Notifications
You must be signed in to change notification settings - Fork 58
171 lines (151 loc) · 5.58 KB
/
eventbuild.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
name: Image build on event
on:
push:
# branches: [ "2.4-evo" ]
# pull_request:
# branches: [ "2.4-evo" ]
jobs:
build:
runs-on: ubuntu-22.04
if: "github.event_name == 'push' && !contains(github.event.head_commit.modified, 'last.releases')"
strategy:
fail-fast: false # Don't fail all if any of the jobs is failing
matrix:
TESTING: [release]
TARGET: [pi-bullseye, x86-lunar, rock5b, rock5a] # <-- Add targets here!
steps:
- name: Maximize build space
uses: easimon/maximize-build-space@master
with:
root-reserve-mb: 512
swap-size-mb: 1024
remove-dotnet: 'true'
remove-android: 'true'
remove-haskell: 'true'
overprovision-lvm: 'true'
- name: Setup env
run: |
echo "DT=$(date +'%Y-%m-%d_%H%M')" >> $GITHUB_ENV
echo "BRANCH=${GITHUB_REF##*/}" >> $GITHUB_ENV
### ONLY THIS RELEVANT FOR BUILDING ###
- uses: actions/checkout@v2
- name: update
run: sudo apt-get update
- name: dep
run: sudo apt-get install -y unzip curl git qemu qemu-user-static binfmt-support
- name: update e2fsprogs
run: |
git clone https://github.com/tytso/e2fsprogs
cd e2fsprogs
mkdir build
cd build
../configure
make
sudo make install
- name: configure
run: sudo ./build.sh ${{ matrix.TARGET }} ${{ matrix.TESTING }}
- name: remove old image to make space
run: |
sudo rm -Rf -v ./work-jetson-nano-2gb-bionic/03-Preconfiguration/*
sudo rm -Rf -v ./work-jetson-nano-4gb-bionic/03-Preconfiguration/*
sudo rm -Rf -v ./work-pi-bullseye/03-Preconfiguration/*
sudo rm -Rf -v ./work-pi-legacy-bullseye/03-Preconfiguration/*
- name: magic
run: |
ls -a
sudo df -h
sudo mv ./deploy/*.img ./OpenHD-image-${{ matrix.TARGET }}-${{ matrix.DISTRO }}-${GITHUB_REF##*/}-${{ env.DT }}.img
echo "moved image"
sudo rm -rvf deploy*
sudo rm -rvf work*
sudo rm -Rf /usr/share/doc
sudo rm -Rf /home/linuxbrew
sudo rm -Rf /home/runner-admin
sudo rm -Rf /opt/hostedtoolcache
sudo rm -Rf /opt/microsoft
sudo rm -Rf /opt/hhvm
sudo apt autoremove -y
sudo df -h
########################################
- name: Compose release filename
# https://stackoverflow.com/questions/58033366/how-to-get-current-branch-within-github-actions
run: echo "artifact_name=OpenHD-image-${{ matrix.TARGET }}-${{ matrix.DISTRO }}-${GITHUB_REF##*/}-${{ env.DT }}" >> $GITHUB_ENV
- name: Pack image for ${{ matrix.TARGET }}
uses: 'actions/upload-artifact@v2'
with:
name: "${{ matrix.TARGET }}"
path: |
*.img
if-no-files-found: error
upload:
needs: build
runs-on: ubuntu-latest
strategy:
fail-fast: false # Don't fail all if any of the jobs is failing
matrix:
TESTING: [release]
TARGET: [pi-bullseye, x86-jammy, rock5b, rock5a] # <-- Add targets here!
steps:
- name: debug
run: df -h
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
with:
name: "${{ matrix.TARGET }}"
- name: compress
run: |
ls -a
mkdir OpenHD
mv *.img OpenHD
cd OpenHD*
sha256sum * | cut -f 1 -d " " > ../sha256
echo 'NAME<<EOF' >> $GITHUB_ENV
ls -1 | sed -e 's/.img/.img.xz/g' >> $GITHUB_ENV
echo 'EOF' >> $GITHUB_ENV
echo 'SIZEFULL<<EOF' >> $GITHUB_ENV
wc -c *.img | cut -f 1 -d " " >> $GITHUB_ENV
echo 'EOF' >> $GITHUB_ENV
xz -v7T0 *.img
ls -a
mv * ../
ls -a
- name: Upload to R2
shell: bash
env:
aws_endpoint: "https://fra1.digitaloceanspaces.com"
aws_key_id: ${{ secrets.DIGITALOCEAN_ACCESS_KEY_ID }}
aws_secret_access_key: ${{ secrets.DIGITALOCEAN_SECRET_ACCESS_KEY }}
aws_s3_bucket: openhd-images
AWS_EC2_METADATA_DISABLED: true
run: |
aws configure set aws_access_key_id $aws_key_id
aws configure set aws_secret_access_key $aws_secret_access_key
aws s3 --endpoint-url $aws_endpoint cp ${{ env.NAME }} s3://$aws_s3_bucket/Downloader/temp/${{ env.NAME }}
- name: generate variables for the ImageWriter
run: |
ls -a
export NAME=$(cat last.release)
export FILESIZE=${{ env.SIZEFULL }}
export FILENAME=${{ env.NAME }}
export DOWNLOADSIZE=$(wc -c *.xz | cut -f 1 -d " ")
export SUM=$(cat sha256)
export RELEASEDATE=$(date +%Y-%m-%d)
echo "$NAME" >> ${{ matrix.TARGET }}.txt
echo "$FILESIZE" >> ${{ matrix.TARGET }}.txt
echo "$FILENAME" >> ${{ matrix.TARGET }}.txt
echo "$DOWNLOADSIZE" >> ${{ matrix.TARGET }}.txt
echo "$SUM" >> ${{ matrix.TARGET }}.txt
echo "$RELEASEDATE" >> ${{ matrix.TARGET }}.txt
wc -c *.xz | cut -f 1 -d " "
- name: Upload text-files
shell: bash
env:
aws_endpoint: "https://fra1.digitaloceanspaces.com"
aws_key_id: ${{ secrets.DIGITALOCEAN_ACCESS_KEY_ID }}
aws_secret_access_key: ${{ secrets.DIGITALOCEAN_SECRET_ACCESS_KEY }}
aws_s3_bucket: openhd-images
AWS_EC2_METADATA_DISABLED: true
run: |
aws configure set aws_access_key_id $aws_key_id
aws configure set aws_secret_access_key $aws_secret_access_key
aws s3 --endpoint-url $aws_endpoint cp ${{ matrix.TARGET }}.txt s3://$aws_s3_bucket/Downloader/temp/${{ matrix.TARGET }}.txt