File tree Expand file tree Collapse file tree 1 file changed +21
-5
lines changed
Expand file tree Collapse file tree 1 file changed +21
-5
lines changed Original file line number Diff line number Diff line change 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'
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 :
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
You can’t perform that action at this time.
0 commit comments