[sample] add dump option #82
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: test | |
on: [push] | |
defaults: | |
run: | |
shell: sh | |
permissions: | |
contents: read | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
container: | |
image: debian:testing | |
steps: | |
- uses: actions/checkout@v3 | |
- run: apt -y update | |
- run: apt -y install make g++ binutils-riscv64-linux-gnu binutils-riscv64-unknown-elf python3 | |
- run: make test | |
- run: env CXX="g++ -std=c++11 -DNDEBUG --pedantic" make test |