Update binding exception logging level to warning #242
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: macOS | |
on: [ push, pull_request ] | |
env: | |
CCACHE_COMPRESS: exists means true | |
CCACHE_SLOPPINESS: include_file_ctime,include_file_mtime,time_macros | |
jobs: | |
test-macos: | |
name: Build and run tests in macOS | |
strategy: | |
matrix: | |
os: [macos-11.0] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Install dependencies | |
run: | | |
brew install autoconf automake libtool | |
brew install ccache | |
brew install parallel | |
brew search boost | |
brew install bitshares/boost/[email protected] | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Configure | |
run: | | |
mkdir -p _build | |
pushd _build | |
cmake -D CMAKE_BUILD_TYPE=Release \ | |
-D CMAKE_C_COMPILER_LAUNCHER=ccache \ | |
-D CMAKE_CXX_COMPILER_LAUNCHER=ccache \ | |
-D BOOST_ROOT=/usr/local/opt/[email protected] \ | |
-D OPENSSL_ROOT_DIR=/usr/local/opt/[email protected] \ | |
.. | |
popd | |
- name: Load Cache | |
uses: actions/cache@v3 | |
with: | |
path: ccache | |
key: ccache-${{ matrix.os }}-${{ github.ref }}-${{ github.sha }} | |
restore-keys: | | |
ccache-${{ matrix.os }}-${{ github.ref }}- | |
ccache-${{ matrix.os }}- | |
- name: Build | |
run: | | |
export CCACHE_DIR="$GITHUB_WORKSPACE/ccache" | |
mkdir -p "$CCACHE_DIR" | |
make -j 2 -C _build | |
df -h | |
- name: Unit-Tests | |
run: | | |
parallel echo Running {}\; sh -c "./{}" <<_EOT_ | |
tests/run-parallel-tests.sh _build/tests/all_tests -l test_suite | |
_build/tests/bloom_test -- README.md | |
_build/tests/ecc_test README.md | |
_build/tests/hmac_test | |
_build/tests/task_cancel_test | |
_EOT_ |