Skip to content

Commit

Permalink
Merge pull request #307 from nomic-io/testnet-9.2
Browse files Browse the repository at this point in the history
Testnet 9.2
  • Loading branch information
mappum authored Oct 7, 2024
2 parents eab3d59 + 5cee19b commit 6cc5e1c
Show file tree
Hide file tree
Showing 113 changed files with 20,106 additions and 2,088 deletions.
36 changes: 18 additions & 18 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Use Nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2024-04-25
toolchain: nightly-2024-07-21
override: true
- name: Cache
uses: actions/cache@v4
Expand All @@ -38,32 +38,32 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: test
args: --verbose --no-default-features --features=full,feat-ibc,testnet
args: --verbose --no-default-features --features=full

test-all-features:
test-testnet:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use Nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2024-04-25
toolchain: nightly-2024-07-21
override: true
- name: Cache
uses: actions/cache@v4
with:
path: |
~/.cargo
./target
key: ${{ runner.os }}-test-all-features-${{ hashFiles('Cargo.lock') }}
key: ${{ runner.os }}-test-testnet-${{ hashFiles('Cargo.lock') }}
restore-keys: |
${{ runner.os }}-test-all-features-
${{ runner.os }}-test-testnet-
- name: Test
uses: actions-rs/cargo@v1
with:
command: test
args: --verbose --all-features
args: --verbose --no-default-features --features=full,testnet

test-bitcoin:
runs-on: ubuntu-latest
Expand All @@ -73,24 +73,24 @@ jobs:
- name: Use Nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2024-04-25
toolchain: nightly-2024-07-21
override: true
- name: Cache
uses: actions/cache@v4
with:
path: |
~/.cargo
./target
key: ${{ runner.os }}-test-all-features-${{ hashFiles('Cargo.lock') }}
key: ${{ runner.os }}-test-testnet-${{ hashFiles('Cargo.lock') }}
restore-keys: |
${{ runner.os }}-test-all-features-
${{ runner.os }}-test-testnet-
- name: Test
env:
RUST_LOG: info
uses: actions-rs/cargo@v1
with:
command: test
args: --verbose --all-features bitcoin -- --ignored
args: --verbose --features=devnet bitcoin -- --ignored

check-rest:
runs-on: ubuntu-latest
Expand All @@ -100,7 +100,7 @@ jobs:
- name: Use Nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2024-04-25
toolchain: nightly-2024-07-21
override: true
- name: Check Rest
uses: actions-rs/cargo@v1
Expand All @@ -116,7 +116,7 @@ jobs:
- name: Use Nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2024-04-25
toolchain: nightly-2024-07-21
override: true
- name: Install
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
Expand All @@ -132,7 +132,7 @@ jobs:
- name: Use Nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2024-04-25
toolchain: nightly-2024-07-21
components: llvm-tools-preview
override: true
- name: Cache
Expand All @@ -155,7 +155,7 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: llvm-cov
args: --no-cfg-coverage-nightly --no-default-features --features=full,feat-ibc,testnet --workspace --lcov --output-path lcov.info
args: --no-cfg-coverage-nightly --workspace --lcov --output-path lcov.info
- name: Upload to codecov.io
uses: codecov/codecov-action@v1
with:
Expand All @@ -171,7 +171,7 @@ jobs:
- name: Use Nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2024-04-25
toolchain: nightly-2024-07-21
components: rustfmt
override: true
- name: Check
Expand All @@ -188,7 +188,7 @@ jobs:
- name: Use Nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2024-04-25
toolchain: nightly-2024-07-21
components: clippy
override: true
- name: Cache
Expand All @@ -204,4 +204,4 @@ jobs:
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --no-default-features --features=full,feat-ibc,testnet -- -D warnings
args: -- -D warnings
Loading

0 comments on commit 6cc5e1c

Please sign in to comment.