Skip to content

Commit 62f6789

Browse files
authored
ci: add macos build+test workflow (#3)
1 parent 2f7fd38 commit 62f6789

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/ci.yml

+15
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,18 @@ jobs:
2929
- name: test
3030
run: |
3131
make -j$(getconf _NPROCESSORS_ONLN) CONFIG_WERROR=y test
32+
33+
macos:
34+
runs-on: macos-latest
35+
steps:
36+
- uses: actions/checkout@v3
37+
- name: build
38+
run: |
39+
make -j$(getconf _NPROCESSORS_ONLN) CONFIG_WERROR=y
40+
- name: stats
41+
run: |
42+
make -j$(getconf _NPROCESSORS_ONLN) CONFIG_WERROR=y qjs
43+
./qjs -qd
44+
- name: test
45+
run: |
46+
make -j$(getconf _NPROCESSORS_ONLN) CONFIG_WERROR=y test

0 commit comments

Comments
 (0)