This repository has been archived by the owner on Oct 24, 2023. It is now read-only.
forked from twitter/pelikan
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Squashed 'deps/ccommon/' changes from 9caf864d..cc7b9fc5
cc7b9fc5 increase tick interval for cc_wheel tests (twitter#255) 9a3255dd Delete flaky assert within check_pipe (twitter#254) git-subtree-dir: deps/ccommon git-subtree-split: cc7b9fc5497347c911574f9a761317e300954f8f
- Loading branch information
Showing
3 changed files
with
37 additions
and
3 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
on: | ||
push: | ||
pull_request: | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
RUST_BACKTRACE: full | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
matrix: | ||
os: [ ubuntu-18.04, macos-10.15 ] | ||
profile: [ Release ] | ||
name: build-${{ matrix.os }}-${{ matrix.profile }} | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Configure | ||
run: | | ||
mkdir -p _build | ||
cmake -B _build -S . \ | ||
-DCMAKE_BUILD_TYPE=${{ matrix.profile }} \ | ||
-DBUILD_AND_INSTALL_CHECK=yes | ||
- name: Build | ||
run: | | ||
cmake --build _build | ||
- name: Test | ||
run: | | ||
cmake --build _build --target test | ||
env: | ||
CTEST_OUTPUT_ON_FAILURE: 1 |
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
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