Added missing include to hash_type #741
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: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
MacOS: | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@dc323e67f16fb5f7663d20ff7941f27f5809e9b6 | |
- name: venv | |
run: python3 -m venv --upgrade-deps ~/venv && housekeeping/github_venv.sh $_ | |
- name: install | |
run: | | |
pip3 install scikit-build | |
pip3 install cmake==3.25 requests gitpython gcovr | |
brew install ninja | |
- name: cmake | |
env: | |
CURL_SSL_BACKEND: SecureTransport | |
run: cmake -G Ninja -B build . | |
- name: build | |
run: cmake --build build -- -j4 | |
- name: test | |
env: | |
CTEST_OUTPUT_ON_FAILURE: 1 | |
run: cmake --build build --target test | |
Linux-gcc: | |
runs-on: ubuntu-latest | |
container: qdrvm/kagome-dev@sha256:2d70246c32418a3dd45c246d3f5c2dd99bdafde145b903271849affe476c4cfc | |
steps: | |
- uses: actions/checkout@dc323e67f16fb5f7663d20ff7941f27f5809e9b6 | |
- name: venv | |
run: housekeeping/github_venv.sh /venv | |
- name: cmake | |
run: cmake -B build . | |
- name: build | |
run: cmake --build build -- -j4 | |
- name: test | |
env: | |
CTEST_OUTPUT_ON_FAILURE: 1 | |
run: cmake --build build --target test |