We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 893e537 commit 035bbe4Copy full SHA for 035bbe4
.github/workflows/build.yml
@@ -1,14 +1,15 @@
1
-on: push
+on:
2
+ push:
3
+ branches:
4
+ - master
5
6
jobs:
7
build_qemu:
8
runs-on: ubuntu-latest
9
steps:
10
- name: checkout
11
uses: actions/checkout@v3
- - name: check merge is success
- run: bash -c 'if [ -f shazam.log ]; then echo "merge failed"; cat shazam.log; exit 1; fi'
12
- name: build_container
13
run: ./run.sh amd64 true
- - name: build opt
14
- run: ./run.sh amd64 ./build.sh opt
+ - name: build debug
15
+ run: ./run.sh amd64 ./build.sh debug
0 commit comments