Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

INFRA-43: Delete unnecessary devnet workflow #1834

Merged
merged 1 commit into from
Oct 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/_check-vars-and-secrets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ jobs:
-z '${{ secrets.CI_GH_USER }}' || \
-z '${{ secrets.CI_GH_TOKEN }}' || \
-z '${{ secrets.CI_S3BUCKET_NAME }}' || \
-z '${{ secrets.DEVNET_KEYS_S3BUCKET_NAME }}' || \
-z '${{ secrets.FEATURENET_KEYS_S3BUCKET_NAME }}' || \
-z '${{ secrets.REPO_ARGOCD_APPS_NAME }}' || \
-z '${{ secrets.REPO_OPS_FEATURENETS_NAME }}' || \
Expand Down
156 changes: 0 additions & 156 deletions .github/workflows/deploy-to-devnet.yml

This file was deleted.

19 changes: 0 additions & 19 deletions e2e-tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,25 +19,6 @@ Additional options are passed to the tests via env variables. See `src/config.rs

See [readme](../scripts/synthetic-network/README.md).

## Running on devnet (or other-net)

You can also run the tests on some other network. For example, to run the contract test for the `adder` contract on
devnet:

1. Prepare an account with some money, note the seed of the account.
2. Deploy the contract to devnet:

```bash
contracts/adder$ NODE_URL=wss://ws.dev.azero.dev AUTHORITY="$THE_SEED" ./deploy.sh
```

3. Run the tests:

```bash
e2e-tests$ RUST_BACKTRACE=1 SUDO_SEED="$THE_SEED" NODE_URL=wss://ws.dev.azero.dev:443 \
ADDER=$DEPLOY_ADDRESS ADDER_METADATA=../contracts/adder/target/ink/metadata.json cargo test adder -- --nocapture
```

## Running on feature net

Run a feature net by adding an appropriate label to a pull request, ie `trigger:create-featurenet`
Expand Down
Loading