Skip to content

Commit

Permalink
feat: migrate project
Browse files Browse the repository at this point in the history
  • Loading branch information
rustadot committed Sep 5, 2024
1 parent 17711b3 commit b6bb064
Show file tree
Hide file tree
Showing 207 changed files with 1,525 additions and 1,525 deletions.
6 changes: 3 additions & 3 deletions .env.sample
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
RUST_TOOLCHAIN=nightly
RELAY_CHAIN_SPEC=./resources/paseo-local.json
PARA_CHAIN_CONFIG=frequency-paseo-local
RAW_PARACHAIN_CHAIN_SPEC=./res/genesis/local/paseo-local-frequency-2000-raw.json
PARA_CHAIN_CONFIG=recurrency-paseo-local
RAW_PARACHAIN_CHAIN_SPEC=./res/genesis/local/paseo-local-recurrency-2000-raw.json
PARA_ID=2000
DOCKER_ONBOARD=false
PARA_DOCKER_IMAGE_TAG="frequency-latest"
PARA_DOCKER_IMAGE_TAG="recurrency-latest"
SRT_TOOL_VERSION=1.60.0
2 changes: 1 addition & 1 deletion .github/workflows/benchmarks-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:

jobs:
run-benchmarks:
if: github.repository == 'frequency-chain/frequency'
if: github.repository == 'rustadot/recurrency'
name: Run Benchmarks
runs-on: [self-hosted, Linux, X64, benchmark]
permissions:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/check-migrations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Check Migrations on Paseo
continue-on-error: false
runs-on: ubicloud-standard-8
container: ghcr.io/frequency-chain/frequency/ci-base-image:1.3.1
container: ghcr.io/rustadot/recurrency/ci-base-image:1.3.1
steps:
- name: Checkout sources
uses: actions/checkout@v4
Expand All @@ -21,5 +21,5 @@ jobs:
uses: ./.github/workflows/common/try-runtime-migrations
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
runtime-package: "frequency-runtime"
runtime-package: "recurrency-runtime"
runtime-uri: ${{ vars.E2E_TESTNET_PASEO_RPC }}
4 changes: 2 additions & 2 deletions .github/workflows/check-polkadot-releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ jobs:
uses: stefanzweifel/git-auto-commit-action@8621497c8c39c72f3e2a999a26b4ca1b5058a842
with:
commit_message: "Record new Polkadot release version"
commit_user_name: Frequency CI [bot]
commit_user_name: Recurrency CI [bot]
commit_user_email: do-not-reply@users.noreply.github.com
commit_author: Frequency CI [bot] <do-not-reply@users.noreply.github.com>
commit_author: Recurrency CI [bot] <do-not-reply@users.noreply.github.com>
4 changes: 2 additions & 2 deletions .github/workflows/common/codecov/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ runs:
run: cargo install --locked grcov
- name: Build
shell: bash # Limited to 10 threads max
run: cargo build -j 10 --features frequency-lint-check
run: cargo build -j 10 --features recurrency-lint-check
env:
RUSTC_BOOTSTRAP: 1
CARGO_INCREMENTAL: "0"
RUSTFLAGS: "-Zprofile -Ccodegen-units=1 -Copt-level=0 -Clink-dead-code -Coverflow-checks=off -Zpanic_abort_tests -Cpanic=abort"
RUSTDOCFLAGS: "-Cpanic=abort"
- name: Test
shell: bash # Limited to 10 threads max
run: cargo test -j 10 --features frequency-lint-check
run: cargo test -j 10 --features recurrency-lint-check
env:
RUSTC_BOOTSTRAP: 1
CARGO_INCREMENTAL: "0"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/common/try-runtime-migrations/action.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Check Migrations for Frequency Runtime"
name: "Check Migrations for Recurrency Runtime"
description: "An action to check runtime migrations"
inputs:
github-token:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/e2e-testnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
run-e2e:
name: Run E2E Tests
runs-on: ubuntu-22.04
container: ghcr.io/frequency-chain/frequency/ci-base-image:latest
container: ghcr.io/rustadot/recurrency/ci-base-image:latest
steps:
- name: Validate
shell: bash
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
cache: "npm"
cache-dependency-path: e2e/package-lock.json
- name: Install Built api-augment
run: npm install @frequency-chain/api-augment@${{ env.API_AUGMENT_VERSION }}
run: npm install @rustadot/api-augment@${{ env.API_AUGMENT_VERSION }}
working-directory: e2e
- name: Run e2e Tests
working-directory: e2e
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/merge-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ jobs:
publish-js-api-augment-rc:
name: Merge - Publish JS API Augment Release Candidate
runs-on: ubicloud-standard-4
container: ghcr.io/frequency-chain/frequency/ci-base-image:1.3.1
container: ghcr.io/rustadot/recurrency/ci-base-image:1.3.1
steps:
- name: Check Out Repo
uses: actions/checkout@v4
- name: Output Metadata
# Run the cargo command and ignore any extra lines outside of the json result
run: CARGO_INCREMENTAL=0 RUSTFLAGS="-D warnings" cargo run --features frequency-local -- export-metadata --chain=frequency-paseo-local --tmp ./js/api-augment/metadata.json
run: CARGO_INCREMENTAL=0 RUSTFLAGS="-D warnings" cargo run --features recurrency-local -- export-metadata --chain=recurrency-paseo-local --tmp ./js/api-augment/metadata.json
- name: Set up NodeJs
uses: actions/setup-node@v4
with:
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
calc-code-coverage:
name: Merge - Calculate Code Coverage
runs-on: ubicloud-standard-8
container: ghcr.io/frequency-chain/frequency/ci-base-image:1.3.1
container: ghcr.io/rustadot/recurrency/ci-base-image:1.3.1
steps:
- name: Check Out Repo
uses: actions/checkout@v4
Expand Down
Loading

0 comments on commit b6bb064

Please sign in to comment.