Skip to content

Commit

Permalink
INFRA-43: Delete unnecessary devnet workflow (#1834)
Browse files Browse the repository at this point in the history
# Description

By removal od devnet chain I removed unnecessary workflow and one secret
`DEVNET_KEYS_S3BUCKET_NAME`

## Type of change

- Removal of unnecessary workflow that was triggered only by hand,
without any dependencies.
  • Loading branch information
Piotr authored Oct 14, 2024
1 parent ec956a1 commit c1eb432
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 176 deletions.
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

0 comments on commit c1eb432

Please sign in to comment.