Skip to content

Commit

Permalink
So begins a new age of commits circle-jerking with yml changes until …
Browse files Browse the repository at this point in the history
…things compile...
  • Loading branch information
ThePhD committed Apr 2, 2020
1 parent 837744a commit 44eaa53
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 18 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/macosx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,16 @@ jobs:
- uses: actions/checkout@v1

- name: configure
run: cmake -B build/debug
run: cmake -B build/release
run:
- cmake -B build/debug
- cmake -B build/release

- name: build
run: cmake --build build/debug --config Debug
run: 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
run: 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
15 changes: 9 additions & 6 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,16 @@ jobs:
- uses: actions/checkout@v1

- name: configure
run: cmake -B build/debug
run: cmake -B build/release
run:
- cmake -B build/debug
- cmake -B build/release

- name: build
run: cmake --build build/debug --config Debug
run: 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
run: 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
15 changes: 9 additions & 6 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,16 @@ jobs:
- uses: actions/checkout@v1

- name: configure
run: cmake -B build/debug
run: cmake -B build/release
run:
- cmake -B build/debug
- cmake -B build/release

- name: build
run: cmake --build build/debug --config Debug
run: 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
run: 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 44eaa53

Please sign in to comment.