Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc/mnt: update README with proper cloning instructions + banner #125

Merged
merged 4 commits into from
Oct 29, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Prev Previous commit
update CIs
  • Loading branch information
PABannier committed Oct 29, 2023
commit ae409f97d5a06975e8b71e9b1a04a8496dc13750
28 changes: 7 additions & 21 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
name: build

on:
workflow_dispatch: # allows manual triggering
inputs:
create_release:
description: 'Create new release'
required: true
type: boolean
push:
branches:
- main
Expand All @@ -28,7 +22,9 @@ jobs:
steps:
- name: Clone
id: checkout
uses: actions/checkout@v1
uses: actions/checkout@v4
with:
submodules: true

- name: Dependencies
id: depends
Expand All @@ -44,19 +40,15 @@ jobs:
cmake ..
cmake --build . --config Release

- name: Test
id: cmake_test
run: |
cd build
ctest --verbose --timeout 900

macOS-latest-cmake:
runs-on: macos-latest

steps:
- name: Clone
id: checkout
uses: actions/checkout@v1
uses: actions/checkout@v4
with:
submodules: true

- name: Dependencies
id: depends
Expand All @@ -70,11 +62,5 @@ jobs:
sysctl -a
mkdir build
cd build
cmake -DBARK_AVX2=OFF -DBARK_FMA=OFF ..
cmake ..
cmake --build . --config Release

- name: Test
id: cmake_test
run: |
cd build
ctest --verbose --timeout 900