-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Squashed 'externals/coda-oss/' changes from c2fc5fc66..f70b4202f
f70b4202f account for coda-oss.vcxproj being in other SLNs af3faebfc Remove more compiler/code-analysis warnings (#699) 82be2a6db unittests should work w/o install (#698) dbb90a06d add msbuild for coda-oss.sln (#697) 5a417140a reduce compiler warnings (#696) 288619dfa all modules now part of coda-oss.vcxproj (#695) git-subtree-dir: externals/coda-oss git-subtree-split: f70b4202f19f260941a0245e41301ae232348fc7
- Loading branch information
Dan Smith
authored and
Dan Smith
committed
Jul 10, 2023
1 parent
ea623b4
commit 3b07146
Showing
160 changed files
with
2,366 additions
and
833 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 |
---|---|---|
|
@@ -36,20 +36,33 @@ jobs: | |
cd .. | ||
cd target-Debug | ||
cmake --build . --config Debug -j | ||
- name: install | ||
- name: test | ||
# should run w/o install | ||
run: | | ||
cd target-Release | ||
cmake --build . --config Release --target install | ||
ctest -C Release --output-on-failure | ||
cd .. | ||
cd target-Debug | ||
cmake --build . --config Debug --target install | ||
- name: test | ||
ctest -C Debug --output-on-failure | ||
- name: install | ||
run: | | ||
cd target-Release | ||
ctest -C Release --output-on-failure | ||
cmake --build . --config Release --target install | ||
cd .. | ||
cd target-Debug | ||
ctest -C Debug --output-on-failure | ||
cmake --build . --config Debug --target install | ||
cd .. | ||
- name: Add msbuild to PATH | ||
uses: microsoft/[email protected] | ||
with: | ||
msbuild-architecture: x64 | ||
- name: msbuild | ||
run: | | ||
msbuild coda-oss.sln /p:configuration=Release | ||
msbuild coda-oss.sln /p:configuration=Debug | ||
#- name: mstest | ||
# run: | | ||
# mstest /testcontainer:${RUNNER_WORKSPACE}\coda-oss\x64\Debug\UnitTest.dll | ||
|
||
build-linux-cmake: | ||
strategy: | ||
|
@@ -79,22 +92,23 @@ jobs: | |
cd target | ||
# "-j" spawns too many processes causing GCC to crash | ||
cmake --build . -j 12 | ||
- name: install | ||
run: | | ||
cd target | ||
cmake --build . --target install | ||
- name: test | ||
# should run w/o install | ||
run: | | ||
cd target | ||
ctest --output-on-failure | ||
- name: install | ||
run: | | ||
cd target | ||
cmake --build . --target install | ||
build-waf: | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, windows-2019] | ||
python-version: ['3.7'] | ||
debugging: ['--enable-debugging', ''] | ||
name: ${{ matrix.os }}-${{ matrix.python-version }}-waf | ||
name: ${{ matrix.os }}-${{ matrix.python-version }}-waf${{ matrix.debugging }} | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
#include "pch.h" | ||
#include "CppUnitTest.h" | ||
|
||
#include <avx/extractf.h> | ||
|
||
namespace avx | ||
{ | ||
|
||
|
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
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
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
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
Oops, something went wrong.