Skip to content

update readme

update readme #48

Workflow file for this run

name: build
on: [push]
jobs:
build_cyphal:
runs-on: ubuntu-22.04
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
fetch-depth: 0
- name: Install dependencies
run: ./scripts/tools/install_for_ubuntu.sh --yes
- run: make generate_dsdl
- run: make cyphal
- name: Archive .bin file
uses: actions/upload-artifact@v3
with:
name: cyphal_firmware.bin
path: build/obj/cyphal_example.bin
- name: Archive .elf file
uses: actions/upload-artifact@v3
with:
name: cyphal_firmware.elf
path: build/obj/cyphal_example.elf
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