-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
8383e3b release: version 3.0.0 (Jose Celano) 7f605b1 fix: clippy errors (Jose Celano) fdf62e9 docs: [#739] fix command to run with docker (Jose Celano) 15adcb9 docs: [#738] fix command (Jose Celano) 17de729 refactor: moved test to authorization mod (Mario) e3baeda test: new authorization test for guests to download a torrent file searching by info hash (Mario) 6df7a7e refactor: moved test to new authorization mod (Mario) 3c046b1 refactor: move authorization test for guests to new mod (Mario) 840e1d8 ci: move testing with MySQL to a new workflow (Jose Celano) b0a458c develop: bump to version 3.0.0-develop (Jose Celano) Pull request description: Release Version 3.0.0 ACKs for top commit: josecelano: ACK 8383e3b Tree-SHA512: 9a623e32ba350fc11798bf18b3f494bb95ced3a012d378447fa64dc658d306de2755d17d15d5a241478d3ecb54ed30e86392f3ec02360753a4fbf9bb64fc52dc
- Loading branch information
Showing
7 changed files
with
145 additions
and
60 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,44 @@ | ||
# Temporary execution of E2E tests using MySQL becuase it's failing | ||
# in the `testing.yml` workflows and affects deployments and releases. | ||
# See https://github.com/torrust/torrust-index/issues/580 | ||
name: E2E Testing | ||
|
||
on: | ||
push: | ||
pull_request: | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
jobs: | ||
e2e: | ||
name: E2E | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
toolchain: [stable, nightly] | ||
|
||
steps: | ||
- id: checkout | ||
name: Checkout Repository | ||
uses: actions/checkout@v4 | ||
|
||
- id: setup | ||
name: Setup Toolchain | ||
uses: dtolnay/rust-toolchain@stable | ||
with: | ||
toolchain: ${{ matrix.toolchain }} | ||
|
||
- id: cache | ||
name: Enable Job Cache | ||
uses: Swatinem/rust-cache@v2 | ||
|
||
# Temporary Cleaning to avoid Rust Compiler Bug | ||
- id: clean | ||
name: Make Build Clean | ||
run: cargo clean | ||
|
||
- id: test-mysql | ||
name: Run Integration Tests (MySQL) | ||
run: ./contrib/dev-tools/container/e2e/mysql/run-e2e-tests.sh |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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