-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #170 from VirgilSecurity/release/v0.17.0
Release v0.17.0
- Loading branch information
Showing
92 changed files
with
1,419 additions
and
593 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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
binaries/VSCCommon.xcframework.zip filter=lfs diff=lfs merge=lfs -binary | ||
binaries/VSCCrypto.xcframework.zip filter=lfs diff=lfs merge=lfs -binary | ||
binaries/VSCFoundation.xcframework.zip filter=lfs diff=lfs merge=lfs -binary | ||
binaries/VSCPythia.xcframework.zip filter=lfs diff=lfs merge=lfs -binary | ||
binaries/VSCRatchet.xcframework.zip filter=lfs diff=lfs merge=lfs -binary | ||
binaries/VSCCommon.xcframework.zip.sha256sum filter=lfs diff=lfs merge=lfs -text | ||
binaries/VSCCrypto.xcframework.zip.sha256sum filter=lfs diff=lfs merge=lfs -text | ||
binaries/VSCFoundation.xcframework.zip.sha256sum filter=lfs diff=lfs merge=lfs -text | ||
binaries/VSCPythia.xcframework.zip.sha256sum filter=lfs diff=lfs merge=lfs -text | ||
binaries/VSCRatchet.xcframework.zip.sha256sum filter=lfs diff=lfs merge=lfs -text |
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,45 @@ | ||
name: build-linux | ||
on: | ||
push: | ||
branches: | ||
- "**" | ||
jobs: | ||
build-linux: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Configure toolchain | ||
run: | | ||
sudo apt update | ||
sudo apt install valgrind | ||
sudo apt install cloc | ||
cmake --version | ||
python3 --version | ||
pip3 list --outdated | ||
pip3 install -U protobuf grpcio-tools | ||
- name: Configure project | ||
run: > | ||
cmake -S. -Bbuild | ||
-DENABLE_HEAVY_TESTS=OFF | ||
-DVIRGIL_C_MT_TESTING=OFF | ||
-DENABLE_BENCHMARKING=ON | ||
-DVIRGIL_POST_QUANTUM=ON | ||
-DVIRGIL_PROGRAMS=ON | ||
- name: Build for memcheck | ||
run: cmake --build build -- -j$(nproc) | ||
- name: Run memcheck | ||
working-directory: build | ||
run: | | ||
ctest -T memcheck --output-on-failure | ||
cat Testing/Temporary/MemoryChecker.*.log | ||
- name: Build multi-threading tests | ||
run: | | ||
cmake -S. -Bbuild -DVIRGIL_C_MT_TESTING=ON | ||
cmake --build build -- -j$(nproc) | ||
- name: Run multi-threading tests | ||
working-directory: build | ||
run: ctest -L multi-threading --output-on-failure | ||
- name: Run benchmarks | ||
run: ./build/benchmarks/foundation/bench | ||
- name: Calulate line of codes | ||
run: cmake --build build --target cloc |
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,42 @@ | ||
name: build-macos | ||
on: | ||
push: | ||
branches: | ||
- 'main' | ||
- 'develop' | ||
- 'release/**' | ||
- 'hotfix/**' | ||
jobs: | ||
build-macos: | ||
runs-on: macos-13 | ||
env: | ||
DEVELOPER_DIR: /Applications/Xcode_14.3.1.app/Contents/Developer | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Configure toolchain | ||
run: | | ||
cmake --version | ||
python3 --version | ||
pip3 install protobuf grpcio-tools | ||
- name: Configure project | ||
run: > | ||
cmake -S. -Bbuild | ||
-DVIRGIL_C_MT_TESTING=ON | ||
-DENABLE_BENCHMARKING=ON | ||
-DVIRGIL_PROGRAMS=ON | ||
- name: Build project | ||
run: cmake --build build -- -j$(sysctl -n hw.physicalcpu) | ||
- name: Run tests | ||
run: ctest --output-on-failure | ||
working-directory: build | ||
|
||
SPM: | ||
runs-on: macos-13 | ||
env: | ||
DEVELOPER_DIR: /Applications/Xcode_14.3.1.app/Contents/Developer | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Check that SPM has correspond xcframeworks hash | ||
run: ./scripts/check_spm_xcframeworks.sh | ||
- name: Run SPM tests | ||
run: ./scripts/run_spm_tests_with_local_binaries.sh |
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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
##### | ||
build*/ | ||
.build*/ | ||
cmake-build*/ | ||
install*/ | ||
.depends_cache/ | ||
|
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
Oops, something went wrong.