Add missing parameter (#13) #19
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 | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Compile | |
run: | | |
cd wiringOP | |
sudo PLATFORM=orangepipc ./build | |
cd ../WiringOP-Zero | |
sudo ./build | |
cd .. | |
make | |
make clean debug | |
cd tools/TempMon | |
make debug | |
make clean all | |
cp config.json.template config.json | |
sudo make install | |