-
Notifications
You must be signed in to change notification settings - Fork 122
174 lines (149 loc) · 5.77 KB
/
build.yml
File metadata and controls
174 lines (149 loc) · 5.77 KB
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
172
173
174
name: Build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
on:
push:
branches: [ main ]
pull_request:
jobs:
build64:
name: Build 64-bit kernels
runs-on: ubuntu-22.04
outputs:
artifact-path: ${{ steps.upload64.outputs.artifact-path }}
git_info: ${{ steps.gitinfo.outputs.git_info }}
steps:
- uses: actions/checkout@v2
- name: Compute Git Info for Artifact Name
id: gitinfo
run: echo "::set-output name=git_info::$(date +%Y-%m-%d)-$(git rev-parse --short HEAD)"
- name: Get specific commits of git submodules
run: sh -ex ./submod.sh
- name: Create sdcard directory
run: mkdir -p ./sdcard/
- name: Put git hash in startup message
run: |
sed -i "s/Loading.../$(date +%Y%m%d)-$(git rev-parse --short HEAD)/g" src/userinterface.cpp
# Install 64-bit toolchain (aarch64)
- name: Install 64-bit toolchain
run: |
set -ex
wget -q https://developer.arm.com/-/media/Files/downloads/gnu/13.3.rel1/binrel/arm-gnu-toolchain-13.3.rel1-x86_64-aarch64-none-elf.tar.xz
tar xf arm-gnu-toolchain-13.3.rel1-x86_64-aarch64-none-elf.tar.xz
- name: Build for Raspberry Pi 5 (64-bit)
run: |
set -ex
export PATH=$(readlink -f ./arm-*/bin/):$PATH
RPI=5 bash -ex build.sh
cp ./src/kernel*.img ./sdcard/
- name: Build for Raspberry Pi 4 (64-bit)
run: |
set -ex
export PATH=$(readlink -f ./arm-*/bin/):$PATH
RPI=4 bash -ex build.sh
cp ./src/kernel*.img ./sdcard/
- name: Build for Raspberry Pi 3 (64-bit)
run: |
set -ex
export PATH=$(readlink -f ./arm-*/bin/):$PATH
RPI=3 bash -ex build.sh
cp ./src/kernel*.img ./sdcard/
- name: Prepare SD card content for 64-bit
run: |
set -ex
export PATH=$(readlink -f ./arm-*/bin/):$PATH
cd ./circle-stdlib/libs/circle/boot
make
make armstub64
cd -
cp -r ./circle-stdlib/libs/circle/boot/* sdcard
rm -rf sdcard/config*.txt sdcard/README sdcard/Makefile sdcard/armstub sdcard/COPYING.linux
cp ./src/config.txt ./src/minidexed.ini ./src/performance.ini sdcard/
cp ./getsysex.sh sdcard/
echo "usbspeed=full" > sdcard/cmdline.txt
# Performances
git clone https://github.com/Banana71/Soundplantage --depth 1
cp -r ./Soundplantage/performance ./Soundplantage/*.pdf ./sdcard/
# Hardware configuration
cd hwconfig
sh -ex ./customize.sh
cd -
mkdir -p ./sdcard/hardware/
cp -r ./hwconfig/minidexed_* ./sdcard/minidexed.ini ./sdcard/hardware/
# WLAN firmware
mkdir -p sdcard/firmware
cp circle-stdlib/libs/circle/addon/wlan/sample/hello_wlan/wpa_supplicant.conf sdcard/
cd sdcard/firmware
make -f ../../circle-stdlib/libs/circle/addon/wlan/firmware/Makefile
cd -
- name: Upload 64-bit artifacts
id: upload64
uses: actions/upload-artifact@v4
with:
name: MiniDexed_${{ github.run_number }}_${{ steps.gitinfo.outputs.git_info }}_64bit
path: sdcard/*
build32:
name: Build 32-bit kernels
runs-on: ubuntu-22.04
outputs:
artifact-path: ${{ steps.upload32.outputs.artifact-path }}
steps:
- uses: actions/checkout@v2
- name: Compute Git Info for Artifact Name
run: echo "GIT_INFO=$(date +%Y-%m-%d)-$(git rev-parse --short HEAD)" >> $GITHUB_ENV
- name: Get specific commits of git submodules
run: sh -ex ./submod.sh
- name: Create sdcard directory
run: mkdir -p ./sdcard/
- name: Put git hash in startup message
run: |
sed -i "s/Loading.../${{ env.GIT_INFO }}/g" src/userinterface.cpp
# Install 32-bit toolchain (arm-none-eabi)
- name: Install 32-bit toolchain
run: |
set -ex
wget -q https://developer.arm.com/-/media/Files/downloads/gnu/13.3.rel1/binrel/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi.tar.xz
tar xf arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi.tar.xz
- name: Build for Raspberry Pi 2 (32-bit)
run: |
set -ex
export PATH=$(readlink -f ./arm-*/bin/):$PATH
RPI=2 bash -ex build.sh
cp ./src/kernel*.img ./sdcard/
- name: Build for Raspberry Pi 1 (32-bit)
run: |
set -ex
export PATH=$(readlink -f ./arm-*/bin/):$PATH
RPI=1 bash -ex build.sh
cp ./src/kernel*.img ./sdcard/
- name: Upload 32-bit artifacts
id: upload32
uses: actions/upload-artifact@v4
with:
name: MiniDexed_${{ github.run_number }}_${{ env.GIT_INFO }}_32bit
path: sdcard/*
combine:
name: Combine Artifacts
runs-on: ubuntu-22.04
needs: [ build64, build32 ]
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
with:
pattern: MiniDexed_*
merge-multiple: true
path: combined
- name: Create combined ZIP file
run: |
cd combined
zip -r ../MiniDexed_${{ github.run_number }}_${{ needs.build64.outputs.git_info }}.zip .
cd ..
- name: Upload to GitHub Releases (only when building from main branch)
if: ${{ github.ref == 'refs/heads/main' }}
run: |
set -ex
export UPLOADTOOL_ISPRERELEASE=true
export UPLOADTOOL_PR_BODY="This is a continuous build. Feedback is appreciated."
export UPLOADTOOL_BODY="This is a continuous build. Feedback is appreciated."
wget -c https://github.com/probonopd/uploadtool/raw/master/upload.sh
bash ./upload.sh ./MiniDexed*.zip