-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a57b306
commit 2765529
Showing
1 changed file
with
7 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -181,21 +181,22 @@ jobs: | |
submodules: true | ||
- name: Build example nRF Connect SDK Lock App | ||
run: scripts/examples/nrfconnect_lock_app.sh | ||
- name: Build example nRF Connect SDK Shell | ||
run: scripts/examples/nrfconnect_shell.sh | ||
- name: Copy aside build products | ||
run: | | ||
mkdir -p example_binaries/$BUILD_TYPE-build | ||
cp examples/lock-app/nrfconnect/build/zephyr/zephyr.elf \ | ||
example_binaries/$BUILD_TYPE-build/chip-nrf52840-lock-example.elf | ||
mkdir -p /tmp/output_binaries/$BUILD_TYPE-build | ||
cp examples/lock-app/nrfconnect/build/zephyr/zephyr.elf \ | ||
/tmp/output_binaries/$BUILD_TYPE-build/chip-lock.elf | ||
cp examples/shell/nrfconnect/build/zephyr/zephyr.elf \ | ||
/tmp/output_binaries/$BUILD_TYPE-build/chip-shell.elf | ||
- name: Binary artifact suffix | ||
id: outsuffix | ||
uses: haya14busa/[email protected] | ||
with: | ||
cond: ${{ github.event.pull_request.number == '' }} | ||
if_true: "${{ github.sha }}" | ||
if_false: "pull-${{ github.event.pull_request.number }}" | ||
- name: Copy aside bloat report & binaries | ||
run: | | ||
cp -r example_binaries/$BUILD_TYPE-build /tmp/output_binaries/ | ||
- name: Uploading Binaries | ||
uses: actions/upload-artifact@v1 | ||
with: | ||
|