Skip to content

Build monitor.elf with -ggdb #5

Build monitor.elf with -ggdb

Build monitor.elf with -ggdb #5

Workflow file for this run

# SPDX-License-Identifier: MIT
# Copyright (C) J. Neuschäfer
name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: |
sudo apt-get update
sudo apt-get install -y gcc-arm-linux-gnueabi
- run: make
- uses: actions/upload-artifact@v3
with:
name: monitor
path: |
src/bare-metal/monitor.elf
src/bare-metal/monitor*.bin
lint:
runs-on: ubuntu-latest
steps:
- run: |
sudo apt-get update
sudo apt-get install -y reuse
- uses: actions/checkout@v3
- run: make lint