-
Notifications
You must be signed in to change notification settings - Fork 7
157 lines (135 loc) · 5.08 KB
/
firmware_build.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
name: Combined Firmware Workflow
# Controls when the action will run. Workflow runs when manually triggered using the UI
# or API.
on:
workflow_dispatch:
push:
permissions:
contents: write
pages: write
id-token: write
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo and submodules
uses: actions/checkout@v2
with:
ref: ${{ github.ref }}
- name: Build Docker image containing both IDF and PICOSDK
run: docker build -t my-image .
- name: Run script in Docker container
run: docker run -v $PWD:/project -w /project/ my-image sh -c "arm-none-eabi-gcc -v && ./d51_build_firmware.sh"
- name: Run script in Docker container
run: docker run -v $PWD:/project -w /project/ my-image sh -c "./pico_build_firmware.sh && ./esp_build_firmware.sh && ./gui_build.sh"
- name: Convert ESP firmware to UF2
run: |
cd ./grid_esp
mkdir ./output
python3 ./tools/uf2conv.py -f ESP32S3 ./build/grid_fw.bin -b 0x0 -c -o ./output/grid_fw.uf2
- name: Set env
shell: bash
run: |
echo "ACTION_DATE=$(date +'%Y-%m-%d-%H%M')" >> $GITHUB_ENV
echo "RELEASE_VERSION=$(git tag --contains ${{ github.sha }})" >> $GITHUB_ENV
- name: Copy and rename the artifacts
run: |
ls
cp binary/grid_release.uf2 grid_d51_release_${{ env.ACTION_DATE }}.uf2
cp grid_esp/output/grid_fw.uf2 grid_esp32_release_${{ env.ACTION_DATE }}.uf2
cp binary/grid_release.uf2 grid_d51_nightly_${{ env.ACTION_DATE }}.uf2
cp binary/grid_release.uf2 grid_d51_nightly.uf2
cp grid_esp/output/grid_fw.uf2 grid_esp32_nightly_${{ env.ACTION_DATE }}.uf2
cp grid_esp/output/grid_fw.uf2 grid_esp32_nightly.uf2
cp .github/workflows/INSTRUCTIONS.txt INSTRUCTIONS__USE_D51_VERSION_IF_UNSURE.txt
cp grid_gui/build/index.html index.html
cp grid_gui/build/index.js index.js
cp grid_gui/build/index.wasm index.wasm
- uses: actions/upload-artifact@v4
with:
name: grid-fw nightly
path: |
grid_esp32_nightly_${{ env.ACTION_DATE }}.uf2
grid_d51_nightly_${{ env.ACTION_DATE }}.uf2
grid_esp32_nightly.uf2
grid_d51_nightly.uf2
index.html
index.js
index.wasm
- name: Zipping artifacts for Github Release
uses: vimtor/action-zip@v1
if: ${{ env.RELEASE_VERSION != '' }}
with:
files: grid_d51_release_${{ env.ACTION_DATE }}.uf2 grid_esp32_release_${{ env.ACTION_DATE }}.uf2 INSTRUCTIONS__USE_D51_VERSION_IF_UNSURE.txt
dest: grid_release.zip
- name: Release
uses: softprops/action-gh-release@v1
if: ${{ env.RELEASE_VERSION != '' }}
with:
tag_name: ${{ env.RELEASE_VERSION }}
name: Grid ${{ env.RELEASE_VERSION }} (${{ env.ACTION_DATE }})
files: grid_release.zip
draft: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
deploy-simulator:
if: github.ref == 'refs/heads/master'
needs: build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Download reports' artifacts
uses: actions/download-artifact@v4
with:
path: download
- name: Collecting files
run: |
cd download
ls
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
# Upload entire repository
path: './download/grid-fw nightly/'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
deploy-results:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/master'
needs: build
steps:
- uses: actions/checkout@v2
with:
ref: preview
- name: Download reports' artifacts
uses: actions/download-artifact@v4
with:
path: download
- name: Collecting files
run: |
# Create the temp folder if it doesn't exist
mkdir -p Preview/Firmware
# Loop through each subdirectory in the download folder
for subdirectory in download/*; do
# Check if it is a directory
if [ -d "$subdirectory" ]; then
# Copy the contents of the subdirectory to the temp folder
cp -r "$subdirectory"/* "Preview/Firmware/"
fi
done
- name: Commit the files
run: |
git config --global user.name ${{ github.actor }}
git config --global user.email ${{ github.actor }}@users.noreply.github.com
git add Preview/*
git commit -m "BOT ${{ github.workflow }} ${{ github.sha }}"
git push