Skip to content

Soil sensor driver #131

Soil sensor driver

Soil sensor driver #131

Workflow file for this run

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

View workflow run for this annotation

GitHub Actions / πŸš€ deploy

Invalid workflow file

The workflow is not valid. .github/workflows/build.yml (Line: 43, Col: 9): 'run' is already defined .github/workflows/build.yml (Line: 44, Col: 9): 'run' is already defined
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