Skip to content

Commit

Permalink
CI: concurrent integration tests in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimirvolek committed Feb 15, 2024
1 parent b799be0 commit 80d52ce
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
stages:
- prebuild
- build
- integration tests - mainnet
- integration tests - testnets
- integration tests

Lint, Typescript:
stage: prebuild
Expand All @@ -22,21 +21,21 @@ Nix build:
- nix-build -A blockfrost-backend-ryo

Integration tests - mainnet:
stage: integration tests - mainnet
stage: integration tests
needs:
- Nix build
script:
- nix-build -A blockfrost-backend-ryo-test-mainnet --option sandbox false

Integration tests - preview:
stage: integration tests - testnets
stage: integration tests
needs:
- Nix build
script:
- nix-build -A blockfrost-backend-ryo-test-preview --option sandbox false

Integration tests - preprod:
stage: integration tests - testnets
stage: integration tests
needs:
- Nix build
script:
Expand Down

0 comments on commit 80d52ce

Please sign in to comment.