Soil sensor driver #131
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: π deploy | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
schedule: | ||
- cron: '0 12 * * 0' | ||
jobs: | ||
deploy: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- os: ubuntu-22.04 | ||
profile_name: x86_64/linux | ||
- os: macos-12 | ||
profile_name: x86_64/mac | ||
- os: windows-2022 | ||
profile_name: x86_64/windows | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: true | ||
fetch-depth: 0 | ||
- name: π₯ Install CMake & Conan | ||
run: python3 -m pip install "conan>=2.0.6" cmake | ||
- name: π‘ Add `libhal-trunk` conan remote | ||
run: conan remote add libhal-trunk https://libhal.jfrog.io/artifactory/api/conan/trunk-conan | ||
- name: Setting up conan profile | ||
run: conan profile detect --force | ||
run: conan config install -sf profiles/${{matrix.profile_name}}/ -tf profiles https://github.com/libhal/conan-config.git | ||
Check failure on line 43 in .github/workflows/build.yml GitHub Actions / π deployInvalid workflow file
|
||
run: conan config install -sf conan/profiles/ -tf profiles https://github.com/libhal/libhal-armcortex.git | ||
run: conan config install -sf conan/profiles/ -tf profiles https://github.com/libhal/libhal-lpc40.git | ||
- name: Build drive | ||
working-directory: drive | ||
run: conan build . -pr lpc4078 -s build_type=MinSizeRel -b missing | ||
- name: Build arm | ||
working-directory: arm | ||
run: conan build . -pr lpc4078 -s build_type=MinSizeRel -b missing | ||