forked from verybadsoldier/esp_rgbww_firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (58 loc) · 2.52 KB
/
build_firmware.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
name: Application CI
on:
push:
branches: [develop]
pull_request:
branches: [develop]
repository_dispatch:
types: [frontend-build-completed]
jobs:
setup:
runs-on: ubuntu-latest
strategy:
matrix:
soc: [esp8266, esp32, esp32c3]
release: [0, 1]
steps:
- name: Checkout Repository
uses: actions/checkout@v2
with:
ref: develop
- name: pull docker image
run: |
docker pull docker.io/pjakobs/sming:latest
- name: Get Latest Successful Workflow Run
id: get_run
run: |
latest_run_id=$(curl -s -H "Authorization: token ${{ secrets.artifact_download_token }}" \
"https://api.github.com/repos/pljakobs/esp_rgb_webapp2/actions/runs?status=success&branch=devel" | \
jq -r '.workflow_runs[0].id')
echo "latest_run_id=$latest_run_id" >> $GITHUB_ENV
- name: Download fileList.h artifact
run: |
if [ -f ./include/fileList.h ]; then
rm ./include/fileList.h
fi
artifact_url=$(curl -s -H "Authorization: token ${{ secrets.artifact_download_token }}" \
"https://api.github.com/repos/pljakobs/esp_rgb_webapp2/actions/runs/${{ env.latest_run_id }}/artifacts" | \
jq -r '.artifacts[] | select(.name=="fileList.h") | .archive_download_url')
curl -L -o fileList.h.zip -H "Authorization: token ${{ secrets.artifact_download_token }}" "$artifact_url"
unzip fileList.h.zip -d ./include
- name: Download webapp files artifact
run: |
if [ -d ./webapp ]; then
rm -rf ./webapp
mkdir .webapp
fi
artifact_url=$(curl -s -H "Authorization: token ${{ secrets.artifact_download_token }}" \
"https://api.github.com/repos/pljakobs/esp_rgb_webapp2/actions/runs/${{ env.latest_run_id }}/artifacts" | \
jq -r '.artifacts[] | select(.name=="spa-files") | .archive_download_url')
curl -L -o spa-files.zip -H "Authorization: token ${{ secrets.artifact_download_token }}" "$artifact_url"
unzip spa-files.zip -d ./webapp
- name: Run Build in Docker Container
run: |
docker run --rm -v ${{ github.workspace }}:/workspace -w /workspace \
docker.io/pjakobs/sming:latest \
bash -c "git config --global --add safe.directory /workspace && \
source /opt/sming/Tools/export.sh && \
make SMING_SOC=${{ matrix.soc }} SMING_RELEASE=${{ matrix.release }}"