Skip to content

set the cmake build to out-of-source #50

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

Merged
merged 3 commits into from
Dec 30, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ jobs:
run: brew install gcc@${GCC_V} || brew upgrade gcc@${GCC_V} || true

- name: Configure with CMake
run: cmake -Wdev -S . -B . # We should build out of source but loadtxt needs fixing
run: cmake -Wdev -S . -B build # We should build out of source but loadtxt needs fixing
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
run: cmake -Wdev -S . -B build # We should build out of source but loadtxt needs fixing
run: cmake -Wdev -S . -B build

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actually, this comment should be deleted if the issue is fixed and being tested.


- name: Build and compile
run: cmake --build . || cmake --build . --verbose --parallel 1
run: cmake --build build || cmake --build build --verbose --parallel 1

- name: test
run: cmake --build . --target test
run: cmake --build build --target test