-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9542604
commit 1bdbaed
Showing
16 changed files
with
337 additions
and
1,070 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# cpp downloaded or generated stuff | ||
|
||
**/.cmake/ | ||
**/build/ | ||
CMakeLists.txt.user |
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,51 +1,51 @@ | ||
build: | ||
- os: [darwin] | ||
arch: [amd64] | ||
command: build/cmake/cmake-macos-universal/CMake.app/Contents/bin/cmake | ||
command: .cmake/cmake-macos-universal/CMake.app/Contents/bin/cmake | ||
arguments: [--build, build, --config, Debug] | ||
- os: [darwin] | ||
arch: [arm64] | ||
command: build/cmake/cmake-macos-universal/CMake.app/Contents/bin/cmake | ||
command: .cmake/cmake-macos-universal/CMake.app/Contents/bin/cmake | ||
arguments: [--build, build, --config, Debug] | ||
- os: [linux] | ||
arch: [amd64] | ||
command: build/cmake/cmake-linux-x86_64/bin/cmake | ||
command: .cmake/cmake-linux-x86_64/bin/cmake | ||
arguments: [--build, build, --config, Debug] | ||
- os: [linux] | ||
arch: [arm64] | ||
command: build/cmake/cmake-linux-aarch64/bin/cmake | ||
command: .cmake/cmake-linux-aarch64/bin/cmake | ||
arguments: [--build, build, --config, Debug] | ||
- os: [windows] | ||
arch: ["386"] | ||
command: build\cmake\cmake-windows-i386\bin\cmake.exe | ||
command: .cmake\cmake-windows-i386\bin\cmake.exe | ||
arguments: [--build, build, --config, Debug] | ||
- os: [windows] | ||
arch: [amd64] | ||
command: build\cmake\cmake-windows-x86_64\bin\cmake.exe | ||
command: .cmake\cmake-windows-x86_64\bin\cmake.exe | ||
arguments: [--build, build, --config, Debug] | ||
test: | ||
- os: [darwin] | ||
arch: [amd64] | ||
command: build/cmake/cmake-macos-universal/CMake.app/Contents/bin/ctest | ||
command: .cmake/cmake-macos-universal/CMake.app/Contents/bin/ctest | ||
arguments: [--output-on-failure, --test-dir, build, --build-config, Debug] | ||
- os: [darwin] | ||
arch: [arm64] | ||
command: build/cmake/cmake-macos-universal/CMake.app/Contents/bin/ctest | ||
command: .cmake/cmake-macos-universal/CMake.app/Contents/bin/ctest | ||
arguments: [--output-on-failure, --test-dir, build, --build-config, Debug] | ||
- os: [linux] | ||
arch: [amd64] | ||
command: build/cmake/cmake-linux-x86_64/bin/ctest | ||
command: .cmake/cmake-linux-x86_64/bin/ctest | ||
arguments: [--output-on-failure, --test-dir, build, --build-config, Debug] | ||
- os: [linux] | ||
arch: [arm64] | ||
command: build/cmake/cmake-linux-aarch64/bin/ctest | ||
command: .cmake/cmake-linux-aarch64/bin/ctest | ||
arguments: [--output-on-failure, --test-dir, build, --build-config, Debug] | ||
- os: [windows] | ||
arch: ["386"] | ||
command: build\cmake\cmake-windows-i386\bin\ctest.exe | ||
command: .cmake\cmake-windows-i386\bin\ctest.exe | ||
arguments: [--output-on-failure, --test-dir, build, --build-config, Debug] | ||
- os: [windows] | ||
arch: [amd64] | ||
command: build\cmake\cmake-windows-x86_64\bin\ctest.exe | ||
command: .cmake\cmake-windows-x86_64\bin\ctest.exe | ||
arguments: [--output-on-failure, --test-dir, build, --build-config, Debug] | ||
test-result-dir: build/test-results |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# go downloaded or generated stuff | ||
|
||
**/_test_results/ |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# java downloaded or generated stuff | ||
|
||
**/.gradle/ | ||
**/build/ | ||
**/.mvn/wrapper/maven-wrapper.jar | ||
**/target/ | ||
.project | ||
.classpath | ||
*.class |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# python downloaded or generated stuff | ||
|
||
**/pytest/ | ||
**/__pycache__/ | ||
**/*.egg-info/ | ||
**/venv/ | ||
**/.venv/ | ||
*.pyc |
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,7 +1,7 @@ | ||
pytest == 7.0.1; python_version < '3.7' | ||
pytest == 7.4.4; python_version in '3.7' | ||
pytest == 8.1.1; python_version >= '3.8' | ||
pytest == 8.2.1; python_version >= '3.8' | ||
pytest-parametrization == 2022.2.1 | ||
mypy == 0.971; python_version < '3.7' | ||
mypy == 1.4.1; python_version in '3.7' | ||
mypy == 1.9.0; python_version >= '3.8' | ||
mypy == 1.10.0; python_version >= '3.8' |
Oops, something went wrong.