-
-
Notifications
You must be signed in to change notification settings - Fork 42
152 lines (139 loc) · 5.54 KB
/
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
name: Build
on: [push, pull_request]
jobs:
build-firmware:
runs-on: ubuntu-22.04
env:
BUILD_TYPE: "Release"
PICOSDK_VER: "2.0.0"
PICOEXTRA_VER: "sdk-2.0.0"
# The Pico-SDK will listen to these environment vars
PICOTOOL_FETCH_FROM_GIT_PATH: ${{github.workspace}}/pico/picotool
PICO_SDK_PATH: ${{github.workspace}}/pico/pico-sdk
PICO_EXTRAS_PATH: ${{github.workspace}}/pico/pico-extras
OUTPUT_DIR: ${{github.workspace}}/binaries
steps:
- name: Checkout repo with submodules
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Arm GNU Toolchain (arm-none-eabi-gcc)
uses: carlosperate/arm-none-eabi-gcc-action@v1
with:
release: '13.3.Rel1'
# Since we reference stable versions of Pico-SDK and pico-extras, we can cache their downloads.
# If this were to reference changing branches (like "master"), this caching step must be removed!!!
- name: Cache Pico-SDK and Extras
id: cache-sdk
uses: actions/cache@v4
with:
path: ${{github.workspace}}/pico/
key: ${{ env.PICOSDK_VER }}-${{ env.PICOEXTRA_VER }}
# If we did not find stuff in the cache, download it fresh.
# Use method recommended by Pico SDK docs: not a full recursive clone
- name: Clone Pico-SDK
if: steps.cache-sdk.outputs.cache-hit != 'true'
run: |
git clone -b "$PICOSDK_VER" --depth 1 https://github.com/raspberrypi/pico-sdk.git $PICO_SDK_PATH
cd $PICO_SDK_PATH
git submodule update --init --depth 1
- name: Clone Pico-Extras
if: steps.cache-sdk.outputs.cache-hit != 'true'
run: |
git clone -b "$PICOEXTRA_VER" --depth 1 https://github.com/raspberrypi/pico-extras.git $PICO_EXTRAS_PATH
cd $PICO_EXTRAS_PATH
git submodule update --init --depth 1
- name: Create Build Environment
run: cmake -E make_directory ${{github.workspace}}/build
# - name: Patch Pico SDK to allow LTO
# run: sed -i 's/WRAPPER_FUNC(x) __wrap_/WRAPPER_FUNC(x) __attribute__((used)) __wrap_/' ${{env.PICO_SDK_PATH}}/src/rp2_common/pico_platform_compiler/include/pico/platform/compiler.h
- name: Build Mega Firmware
shell: bash
working-directory: ${{github.workspace}}/build
run: |
mkdir -p $OUTPUT_DIR
cmake $GITHUB_WORKSPACE/sw -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DPROJECT_TYPE="MULTIFW" #-DUSE_LTO=1
cmake --build . --config $BUILD_TYPE --parallel $(nproc)
cp picogus.uf2 $OUTPUT_DIR/picogus.uf2
- name: Build NE2000 Firmware
shell: bash
working-directory: ${{github.workspace}}/build
run: |
mkdir -p $OUTPUT_DIR
cmake $GITHUB_WORKSPACE/sw -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DPROJECT_TYPE="NE2K" -DPICO_BOARD=picow_fast #-DUSE_LTO=1
cmake --build . --config $BUILD_TYPE --parallel $(nproc)
cp pg-ne2k.uf2 $OUTPUT_DIR/pg-ne2k.uf2
# will generate PicoGUS Firmwares.zip as downloadable artifact with all .uf2 files
- name: Upload All Firmwares
uses: actions/upload-artifact@v4
with:
name: PicoGUS Firmwares
path: ${{env.OUTPUT_DIR}}
build-pgusinit:
runs-on: ubuntu-22.04
env:
BUILD_TYPE: "Release"
OUTPUT_DIR: ${{github.workspace}}/binaries
steps:
- name: Checkout repo with submodules
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install OpenWatcom 2.0
uses: open-watcom/setup-watcom@v0
with:
version: "2.0-64"
tag: "2024-03-01-Build"
- name: Build pgusinit
working-directory: ${{github.workspace}}/pgusinit
run: |
mkdir -p $OUTPUT_DIR
make -f Makefile-cross INCLUDE="$WATCOM"/h
cp pgusinit.exe $OUTPUT_DIR
# will generate pgusinit.zip as downloadable artifact with pgusinit.exe
- name: Upload pgusinit
uses: actions/upload-artifact@v4
with:
name: pgusinit
path: ${{env.OUTPUT_DIR}}/pgusinit.exe
create-release:
if: github.ref_type == 'tag' && startsWith(github.ref_name, 'v')
runs-on: ubuntu-22.04
needs: [build-firmware, build-pgusinit]
env:
STAGING_DIR: ${{github.workspace}}/release-staging-dir
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Copy README
run: |
mkdir -p $STAGING_DIR
cp pgusinit/README.md $STAGING_DIR/README.md
- name: Get Tags
id: tag
uses: ildug/get-tag-action@v1
- name: Generate release body
run: |
awk '/^# v${{ steps.tag.outputs.version }}/{a=1;next}/^# /{a=0}a' sw/CHANGELOG.md > release-body.md
- name: Download firmware artifact
uses: actions/download-artifact@v4
with:
name: PicoGUS Firmwares
path: ${{env.STAGING_DIR}}
- name: Download pgusinit artifact
uses: actions/download-artifact@v4
with:
name: pgusinit
path: ${{env.STAGING_DIR}}
- name: Install zip
uses: montudor/action-zip@v1
- name: Zip release
run: |
zip -9 -r ../picogus-v${{ steps.tag.outputs.version }}.zip .
working-directory: ${{env.STAGING_DIR}}
- name: Release
uses: softprops/action-gh-release@v1
with:
body_path: release-body.md
files: picogus-v${{ steps.tag.outputs.version }}.zip
draft: true