From 8434c5c44956c286d1735361b261b9ab9ea37f25 Mon Sep 17 00:00:00 2001 From: Byron Hambly Date: Fri, 12 Jul 2024 10:31:11 +0200 Subject: [PATCH] ci: add macos-latest test --- .github/workflows/apple.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/apple.yml diff --git a/.github/workflows/apple.yml b/.github/workflows/apple.yml new file mode 100644 index 0000000000..de273f4740 --- /dev/null +++ b/.github/workflows/apple.yml @@ -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