Skip to content

Commit

Permalink
CI: Build binaries
Browse files Browse the repository at this point in the history
With a pipeline and generated build environments in place, lets build our
binaries from the CI!

Signed-off-by: Olliver Schinagl <[email protected]>
  • Loading branch information
oliv3r committed Aug 8, 2024
1 parent 47c3d4b commit c621b70
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/container-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,14 @@ jobs:
permissions:
contents: read
packages: write
strategy:
matrix:
target_board:
- CC1352P_2_LAUNCHXL
- CC26X2R1_LAUNCHXL
- LP_CC2652R7
- LP_CC2652RB
- LP_CC2652RB

steps:
- name: Free Disk Space (Ubuntu)
Expand Down Expand Up @@ -76,3 +84,15 @@ jobs:
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
load: true

- name: Prepare workspace
uses: addnab/docker-run-action@v3
with:
image: ${{ steps.meta.outputs.tags }}
run: |
echo "Hello World"
ls -laF /build || true
find /
eclipse -noSplash -data "${HOME}/workspace" -application com.ti.ccstudio.apps.projectImport -ccs.location "${SLF2_SDK}/examples/rtos/${{ matrix.target_board }}/zstack/znp/tirtos7/ticlang/znp_${{ matrix.target_board }}_tirtos7_ticlang.projectspec"
cp '/src/znp_${{ matrix.target_board }}_tirtos7_ticlang.syscfg' "${HOME}/workspace/znp_${{ matrix.target_board }}/znp.syscfg"
eclipse -noSplash -data "${HOME}/workspace" -application 'com.ti.ccstudio.apps.projectBuild' -ccs.projects 'znp_${{ matrix.target_board }}_tirtos7_ticlang'

0 comments on commit c621b70

Please sign in to comment.