Configure debug info to DWARF v4. #108
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 via Docker | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build using the Docker image | |
env: | |
DOCKER_BUILDKIT: 1 | |
run: docker build -t microbit-tools --output type=local,dest=out . | |
- name: Directory Listing | |
run: ls -al | |
- name: Upload hex file | |
uses: actions/upload-artifact@v1 | |
with: | |
name: Export from Docker | |
path: out/MICROBIT.hex |