Skip to content

Commit

Permalink
Add CI for building 1.2 reference release (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
sunytt authored May 9, 2024
1 parent a00c2ec commit 92d675c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,16 @@ jobs:
sudo apt-get --no-install-recommends install -y ninja-build gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf
wget --tries 4 --no-check-certificate --quiet https://developer.arm.com/-/media/Files/downloads/gnu-rm/9-2019q4/RC2.1/gcc-arm-none-eabi-9-2019-q4-major-x86_64-linux.tar.bz2 -O gcc-arm.tar.bz2
tar xjf gcc-arm.tar.bz2
echo "PATH=/tmp/gcc-arm-none-eabi-9-2019-q4-major/bin:$PATH" >> "$GITHUB_ENV"
- name: Checkout
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
with:
submodules: recursive
- name: Build reference release for 1.2
run: |
REFERENCE_PLATFORM=nrf52840 REFERENCE_RELEASE_TYPE=1.2 ./script/make-reference-release.bash
- name: Build reference release for 1.3
run: |
export PATH=/tmp/gcc-arm-none-eabi-9-2019-q4-major/bin:$PATH
REFERENCE_PLATFORM=nrf52840 REFERENCE_RELEASE_TYPE=1.3 ./script/make-reference-release.bash
- uses: actions/upload-artifact@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion script/make-firmware.bash
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ readonly build_1_2_options_common=(
'-DOT_FULL_LOGS=OFF'
'-DOT_IP6_FRAGM=OFF'
'-DOT_LINK_RAW=OFF'
'-DOT_MTD_NETDIAG=OFF'
'-DOT_NETDIAG_CLIENT=OFF'
'-DOT_SNTP_CLIENT=OFF'
'-DOT_UDP_FORWARD=OFF'
)
Expand Down

0 comments on commit 92d675c

Please sign in to comment.