Skip to content

Commit 27c3b78

Browse files
committed
ci: add macos-latest test
1 parent cdcc74b commit 27c3b78

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/apple.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- apple-stack
7+
8+
jobs:
9+
build:
10+
runs-on: macos-14
11+
steps:
12+
- uses: actions/checkout@v4
13+
- run: sysctl -a | grep machdep.cpu
14+
- name: deps
15+
run: brew install automake libtool boost pkg-config libevent berkeley-db@4
16+
- name: build
17+
run: |
18+
./autogen.sh
19+
./configure
20+
make -j3 src/elementsd
21+
make -j3 src/elements-cli
22+
- name: test
23+
run: |
24+
./test/functional/test_runner.py --jobs 3

0 commit comments

Comments
 (0)