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

chore: odyssey #1

Merged
merged 1 commit into from
Oct 11, 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
4 changes: 2 additions & 2 deletions .config/nextest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
serial-integration = { max-threads = 1 }

[[profile.default.overrides]]
filter = 'package(alphanet-testing)'
test-group = 'serial-integration'
filter = 'package(odyssey-testing)'
test-group = 'serial-integration'
2 changes: 1 addition & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
!/dist

# include L2 genesis files
!/etc/alphanet-genesis.json
!/etc/odyssey-genesis.json
!/etc/dev-genesis.json

# include example files
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ on:
- v*

env:
REPO_NAME: ${{ github.repository_owner }}/alphanet
IMAGE_NAME: ${{ github.repository_owner }}/alphanet
REPO_NAME: ${{ github.repository_owner }}/odyssey
IMAGE_NAME: ${{ github.repository_owner }}/odyssey
CARGO_TERM_COLOR: always
DOCKER_IMAGE_NAME: ghcr.io/${{ github.repository_owner }}/alphanet
DOCKER_IMAGE_NAME: ghcr.io/${{ github.repository_owner }}/odyssey
DOCKER_USERNAME: ${{ github.actor }}

jobs:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- run: cargo clippy --bin alphanet --workspace --features "asm-keccak jemalloc jemalloc-prof min-error-logs min-warn-logs min-info-logs min-debug-logs min-trace-logs"
- run: cargo clippy --bin odyssey --workspace --features "asm-keccak jemalloc jemalloc-prof min-error-logs min-warn-logs min-info-logs min-debug-logs min-trace-logs"
env:
RUSTFLAGS: -D warnings

Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- run: cargo build --bin alphanet --workspace
- run: cargo build --bin odyssey --workspace
env:
RUSTFLAGS: -D warnings

Expand Down
Loading