Update generate_firmware.yaml #48
Workflow file for this run
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
name: Generate Firmware | |
on: | |
push: | |
env: | |
AM_CORRETTO_17: https://corretto.aws/downloads/latest/amazon-corretto-17-x64-linux-jdk.tar.gz | |
SLC_CLI_URL: https://www.silabs.com/documents/login/software/slc_cli_linux.zip | |
COMMANDER_URL: https://www.silabs.com/documents/login/software/SimplicityCommander-Linux.zip | |
GCC_URL: https://developer.arm.com/-/media/Files/downloads/gnu/12.2.rel1/binrel/arm-gnu-toolchain-12.2.rel1-x86_64-arm-none-eabi.tar.xz | |
SIM_REPO: https://github.com/SiliconLabs/simplicity_sdk.git | |
GECKO_SDK_REPO: https://github.com/SiliconLabs/gecko_sdk.git | |
SDK_VER: v4.4.2 | |
TOOL_DIRS: /home/sqa/SimplicityStudio-5/SimplicityStudio_v5/developer/toolchains/gnu_arm/10.3_2021.10/bin | |
SDK_PATH: /home/sqa/SimplicityStudio/SDKs/gecko_sdk | |
TOOL_CHAINS: GCC | |
START_ADDR_FLASH: 0x8000000 | |
jobs: | |
job1: | |
name: Generate Firmware | |
runs-on: ubuntu-20.04 | |
permissions: | |
contents: read | |
pull-requests: write | |
env: | |
HOST_IP: 192.168.1.69 | |
COMPILER: GCC | |
PLATFORM: MG12 | |
APP_TYPE: SecureApp | |
SECURITY: APP_SECURE=false | |
COMMAND: all | |
COMPONENT: all | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
ref: create-unit-test-functions-in-lib-iec60730 | |
- name: Install Simplicity SDK | |
if: always() | |
run: | | |
git clone $SIM_REPO | |
cd simplicity_sdk | |
ls -la | |
cd .. | |
ls -la | |
- name: Install Gecko SDK | |
if: always() | |
run: | | |
git clone $GECKO_SDK_REPO gecko_sdk_$SDK_VER | |
cd gecko_sdk_$SDK_VER | |
git checkout tags/$SDK_VER | |
ls -la | |
cd .. | |
ls -la | |
- name: Install Amazon Corretto 17 | |
if: always() | |
run: | | |
wget $AM_CORRETTO_17 | |
tar -xzf amazon-corretto-17-x64-linux-jdk.tar.gz | |
ls -la | |
- name: Install SLC CLI | |
if: always() | |
run: | | |
wget $SLC_CLI_URL | |
unzip slc_cli_linux.zip | |
ls -la | |
- name: Install Simplicity Commander | |
if: always() | |
run: | | |
wget $COMMANDER_URL | |
unzip SimplicityCommander-Linux.zip | |
ls -la | |
- name: Install GCC | |
if: always() | |
run: | | |
wget $GCC_URL | |
tar -xf arm-gnu-toolchain-12.2.rel1-x86_64-arm-none-eabi.tar.xz | |
ls -la | |