File tree Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change 27
27
runs-on : ${{ matrix.os }}
28
28
steps :
29
29
- name : Install Dependencies
30
- shell : bash
31
30
run : |
32
31
HOMEBREW_NO_AUTO_UPDATE=1 brew install qemu binaryen
33
32
- name : Checkout
72
71
path : llvm-build
73
72
- name : Build LLVM
74
73
if : steps.cache-llvm-build.outputs.cache-hit != 'true'
75
- shell : bash
76
74
run : |
77
75
# fetch LLVM source
78
76
rm -rf llvm-project
@@ -100,14 +98,12 @@ jobs:
100
98
- name : make gen-device
101
99
run : make -j3 gen-device
102
100
- name : Test TinyGo
103
- shell : bash
104
101
run : make test GOTESTFLAGS="-short"
105
102
- name : Build TinyGo release tarball
106
103
run : make release -j3
107
104
- name : Test stdlib packages
108
105
run : make tinygo-test
109
106
- name : Make release artifact
110
- shell : bash
111
107
run : cp -p build/release.tar.gz build/tinygo.darwin-${{ matrix.goarch }}.tar.gz
112
108
- name : Publish release artifact
113
109
# Note: this release artifact is double-zipped, see:
@@ -121,7 +117,6 @@ jobs:
121
117
name : darwin-${{ matrix.goarch }}-double-zipped
122
118
path : build/tinygo.darwin-${{ matrix.goarch }}.tar.gz
123
119
- name : Smoke tests
124
- shell : bash
125
120
run : make smoketest TINYGO=$(PWD)/build/tinygo
126
121
test-macos-homebrew :
127
122
name : homebrew-install
You can’t perform that action at this time.
0 commit comments