From 9415c60cba812486bcc41c9112a315b01970142d 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 | 21 +++++++++++++++++++++ 1 file changed, 21 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 00000000000..4e323c3ada9 --- /dev/null +++ b/.github/workflows/apple.yml @@ -0,0 +1,21 @@ +name: CI + +on: + push: + branches: + - apple-stack + +jobs: + build: + runs-on: macos-latest + steps: + - uses: actions/checkout@v4 + - name: deps + run: brew install automake libtool boost pkg-config libevent berkeley-db@4 + - name: build + run: | + ./autogen.sh + ./configure + make -j3 src/elementsd + - name: test + run: ./test/functional/feature_issuance.py