Skip to content

Commit

Permalink
ci: add macos-latest test
Browse files Browse the repository at this point in the history
  • Loading branch information
delta1 committed Jul 12, 2024
1 parent 8882cdc commit a2a1a45
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/apple.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: CI

on:
push:

jobs:
build:
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- run: sysctl -a | grep machdep.cpu
- name: deps
run: brew install automake libtool boost pkg-config libevent berkeley-db@4
- name: build
run: |
./autogen.sh
./configure
make -j3 src/elementsd
make -j3 src/elements-cli
make -j3 src/elements-wallet
- name: test
run: |
./test/functional/test_runner.py --jobs 3

0 comments on commit a2a1a45

Please sign in to comment.