Skip to content

Commit 573c15a

Browse files
committed
Update buildcommit.yml
Update buildcommit.yml Update buildcommit.yml
1 parent 6b8c7a4 commit 573c15a

File tree

1 file changed

+21
-5
lines changed

1 file changed

+21
-5
lines changed

.github/workflows/buildcommit.yml

Lines changed: 21 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ jobs:
2828
if: ${{ matrix.name == 'i386' }}
2929
- name: make
3030
run: make all
31+
- name: test
32+
run: make test
3133
- name: Commit libraries
3234
run: |
3335
git config --global user.name 'Build Runner'
@@ -37,10 +39,9 @@ jobs:
3739
git push
3840
3941
build-linux-arm:
40-
if: 0
4142
runs-on: ubuntu-latest
4243
strategy:
43-
fail-fast: false
44+
fail-fast: true
4445
matrix:
4546
include:
4647
- arch: arm
@@ -60,13 +61,21 @@ jobs:
6061
- name: install abi lib
6162
run: sudo apt-get install --no-install-recommends -y gcc-${{matrix.abi}} g++-${{matrix.abi}}
6263
- name: make
63-
run: make && make test
64+
run: make all
65+
- name: test
66+
run: make test
67+
- name: Commit libraries
68+
run: |
69+
git config --global user.name 'Build Runner'
70+
git config --global user.email 'buildrunner@users.noreply.github.com'
71+
git add lib/*.a
72+
git commit -m "Automated build"
73+
git push
6474
6575
build-windows:
66-
if: 0
6776
runs-on: windows-2019
6877
strategy:
69-
fail-fast: false
78+
fail-fast: true
7079
matrix:
7180
platform: [x86, x64, ARM, ARM64]
7281
include:
@@ -85,4 +94,11 @@ jobs:
8594
- name: test
8695
if: ${{ matrix.native == 'yes' }}
8796
run: vs2019\${{matrix.folder}}\Debug\test.exe
97+
- name: Commit libraries
98+
run: |
99+
git config --global user.name 'Build Runner'
100+
git config --global user.email 'buildrunner@users.noreply.github.com'
101+
git add lib/*.lib
102+
git commit -m "Automated build"
103+
git push
88104

0 commit comments

Comments
 (0)