-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix testing on stable rust toolchain
- Loading branch information
Showing
6 changed files
with
56 additions
and
5 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
.github/workflows/linux-tests.yml → ...lows/linux-tests-on-nightly-toolchain.yml
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,4 +1,4 @@ | ||
name: Linux Tests | ||
name: Linux Tests On Rust Nightly Toolchain | ||
on: [push] | ||
|
||
jobs: | ||
|
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,53 @@ | ||
name: Linux Tests | ||
on: [push] | ||
|
||
jobs: | ||
test-stable: | ||
|
||
strategy: | ||
matrix: | ||
os: [ubuntu-latest] | ||
runs-on: | ||
- ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: stable | ||
override: true | ||
|
||
- uses: actions-rs/cargo@v1 | ||
with: | ||
command: build | ||
args: --release --all-features | ||
|
||
- name: Install dependencies | ||
run: | | ||
pip install setuptools wheel | ||
|
||
- name: Build cryptatools | ||
run: cargo build --all | ||
|
||
- name: Install cryptatools clis | ||
run: cargo install --path ./cryptatools-cli | ||
|
||
- name: Run tests | ||
run: | | ||
cargo test --all | ||
|
||
- name: Generate documentation | ||
run: | | ||
cargo doc --package cryptatools-core --workspace --no-deps | ||
|
||
- name: Build and install Python Bindings | ||
run: | | ||
python3 ./cryptatools-core/setup.py bdist_wheel --verbose ; | ||
pip3 install ./dist/* --force-reinstall ; | ||
|
||
- name: Test python bindings | ||
run: | | ||
python3 ./cryptatools-core/binding-testing/testing.py ; |
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
Empty file.
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 @@ | ||
pub mod factoring; |
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