Issue 131: Add BNO055, RF430CL331H, update BME680, IS25xp #8
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: CMake | |
on: | |
push: | |
branches: [ "master"] | |
pull_request: | |
branches: [ "master"] | |
env: | |
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) | |
BUILD_TYPE: Release | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install cmake and gcc-arm-none-eabi | |
run: sudo apt-get install -y cmake gcc-arm-none-eabi | |
- name: Setup setup.conf | |
run: echo "ARMGCC_DIR=/usr" > setup.conf | |
- name: Export ARMGCC_DIR | |
run: export ARMGCC_DIR=/usr | |
- name: Make Warp | |
# Build your program with the given configuration | |
run: ARMGCC_DIR=/usr make warp |