Skip to content

Commit 464c90f

Browse files
committed
Update buildcommit.yml
1 parent d43e84a commit 464c90f

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

.github/workflows/buildcommit.yml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
name: "AMD64"
1919
- platformflags: -m32
2020
name: "i386"
21-
name: test-linux-x86 (${{matrix.name}})
21+
name: build-linux-x86 (${{matrix.name}})
2222
env:
2323
PLATFORMFLAGS: ${{matrix.platformflags}}
2424
steps:
@@ -30,15 +30,16 @@ jobs:
3030
run: make all
3131
- name: test
3232
run: make test
33-
- name: Commit libraries
34-
run: |
35-
git config --global user.name 'Build Runner'
36-
git config --global user.email 'buildrunner@users.noreply.github.com'
37-
git add lib/*.a
38-
git diff-index --quiet HEAD || git commit -m "Automated build"
39-
git push
33+
- name: set abi name
34+
run: echo abiname=$(make abiname) >> $GITHUB_ENV
35+
- name: Upload build artifacts
36+
uses: actions/upload-artifact@v2
37+
with:
38+
name: ${{ env.abiname }}
39+
path: lib/${{ env.abiname }}/libstackman.a
4040

4141
build-linux-arm:
42+
if: 0
4243
runs-on: ubuntu-latest
4344
strategy:
4445
fail-fast: true
@@ -73,6 +74,7 @@ jobs:
7374
git push
7475
7576
build-windows:
77+
if: 0
7678
runs-on: windows-2019
7779
strategy:
7880
fail-fast: true

0 commit comments

Comments
 (0)