Skip to content

Commit

Permalink
Real multi-line commands according to GitHub Workflow docs, and the n…
Browse files Browse the repository at this point in the history
…ecessary definitions for building and running all the tests etc. etc.
  • Loading branch information
ThePhD committed Apr 2, 2020
1 parent 44eaa53 commit c659b9c
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 27 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/macosx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@ jobs:
- uses: actions/checkout@v1

- name: configure
run:
- cmake -B build/debug
- cmake -B build/release
run: |
- cmake -B build/debug -D ITSY_BITSY_SINGLE:BOOL=TRUE -D ITSY_BITSY_TESTS:BOOL=TRUE -D ITSY_BITSY_EXAMPLES:BOOL=TRUE -D ITSY_BITSY_BENCHMARKS:BOOL=TRUE -D ITSY_BITSY_DOCS:BOOL=TRUE
- cmake -B build/release -D ITSY_BITSY_SINGLE:BOOL=TRUE -D ITSY_BITSY_TESTS:BOOL=TRUE -D ITSY_BITSY_EXAMPLES:BOOL=TRUE -D ITSY_BITSY_BENCHMARKS:BOOL=TRUE -D ITSY_BITSY_DOCS:BOOL=TRUE
- name: build
run:
- cmake --build build/debug --config Debug
- cmake --build build/release --config Release
run: |
cmake --build build/debug --config Debug
cmake --build build/release --config Release
- name: test
run:
- cmake --build build/debug --config Debug --target test
- cmake --build build/release --config Release --target test
run: |
cmake --build build/debug --config Debug --target test
cmake --build build/release --config Release --target test
18 changes: 9 additions & 9 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@ jobs:
- uses: actions/checkout@v1

- name: configure
run:
- cmake -B build/debug
- cmake -B build/release
run: |
- cmake -B build/debug -D ITSY_BITSY_SINGLE:BOOL=TRUE -D ITSY_BITSY_TESTS:BOOL=TRUE -D ITSY_BITSY_EXAMPLES:BOOL=TRUE -D ITSY_BITSY_BENCHMARKS:BOOL=TRUE -D ITSY_BITSY_DOCS:BOOL=TRUE
- cmake -B build/release -D ITSY_BITSY_SINGLE:BOOL=TRUE -D ITSY_BITSY_TESTS:BOOL=TRUE -D ITSY_BITSY_EXAMPLES:BOOL=TRUE -D ITSY_BITSY_BENCHMARKS:BOOL=TRUE -D ITSY_BITSY_DOCS:BOOL=TRUE
- name: build
run:
- cmake --build build/debug --config Debug
- cmake --build build/release --config Release
run: |
cmake --build build/debug --config Debug
cmake --build build/release --config Release
- name: test
run:
- cmake --build build/debug --config Debug --target test
- cmake --build build/release --config Release --target test
run: |
cmake --build build/debug --config Debug --target test
cmake --build build/release --config Release --target test
18 changes: 9 additions & 9 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@ jobs:
- uses: actions/checkout@v1

- name: configure
run:
- cmake -B build/debug
- cmake -B build/release
run: |
- cmake -B build/debug -D ITSY_BITSY_SINGLE:BOOL=TRUE -D ITSY_BITSY_TESTS:BOOL=TRUE -D ITSY_BITSY_EXAMPLES:BOOL=TRUE -D ITSY_BITSY_BENCHMARKS:BOOL=TRUE -D ITSY_BITSY_DOCS:BOOL=TRUE
- cmake -B build/release -D ITSY_BITSY_SINGLE:BOOL=TRUE -D ITSY_BITSY_TESTS:BOOL=TRUE -D ITSY_BITSY_EXAMPLES:BOOL=TRUE -D ITSY_BITSY_BENCHMARKS:BOOL=TRUE -D ITSY_BITSY_DOCS:BOOL=TRUE
- name: build
run:
- cmake --build build/debug --config Debug
- cmake --build build/release --config Release
run: |
cmake --build build/debug --config Debug
cmake --build build/release --config Release
- name: test
run:
- cmake --build build/debug --config Debug --target test
- cmake --build build/release --config Release --target test
run: |
cmake --build build/debug --config Debug --target test
cmake --build build/release --config Release --target test

0 comments on commit c659b9c

Please sign in to comment.