Skip to content

wip

wip #2

Workflow file for this run

name: CI
on:
push:
branches:
- apple-stack
jobs:
build:
runs-on: macos-latest
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
- name: test
run: |
./test/functional/test_runner.py --jobs 3