Initial commit #1
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: build_dronecan | |
on: [push] | |
jobs: | |
build_dronecan: | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.ACCESS_TOKEN }} | |
submodules: recursive | |
fetch-depth: 0 | |
- uses: actions/checkout@v3 | |
with: | |
repository: RaccoonlabDev/libsqcan | |
path: 'Libs/libsqcan' | |
token: ${{ secrets.ACCESS_TOKEN }} | |
fetch-depth: 0 | |
- name: Checkout libsqcan | |
run: cd Libs/libsqcan && git checkout dd10256 | |
- name: Install dependencies | |
run: ./scripts/tools/install_for_ubuntu.sh --yes | |
- run: make dronecan |