Skip to content

Commit

Permalink
feat: gas service support on the relayer (#8)
Browse files Browse the repository at this point in the history
---------

Signed-off-by: Guilherme Felipe da Silva <gfsilva.eng@gmail.com>
Co-authored-by: Guilherme Felipe da Silva <gfsilva.eng@gmail.com>
  • Loading branch information
roberts-pumpurs and frenzox authored Jan 14, 2025
1 parent 3219f4b commit 28facf3
Show file tree
Hide file tree
Showing 27 changed files with 4,361 additions and 569 deletions.
8 changes: 8 additions & 0 deletions .github/actions/setup-repo/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,11 @@ runs:
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
cache-all-crates: true
rust-cache: "buildjet"

- name: Install needed tooling (needed for solana deps)
shell: bash
run: |
sudo apt-get install -y protobuf-compiler bzip2 clang
4 changes: 2 additions & 2 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ concurrency:
name: check
jobs:
fmt:
runs-on: ubuntu-22.04
name: fmt
runs-on: self-hosted
name: check
steps:
- uses: actions/checkout@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deny.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ concurrency: deny-${{ github.head_ref || github.run_id }}
jobs:
deny:
name: deny
runs-on: ubuntu-latest
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/doc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ concurrency:
name: docs
jobs:
doc:
runs-on: ubuntu-22.04
runs-on: self-hosted
name: doc
steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ concurrency:
name: test
jobs:
test:
runs-on: ubuntu-22.04
runs-on: self-hosted
name: test
steps:
- uses: actions/checkout@v4
Expand All @@ -22,4 +22,4 @@ jobs:
uses: ./.github/actions/setup-repo

- name: cargo coverage
run: cargo xtask test
run: RUST_LOG=solana_listener=debug cargo xtask test
2 changes: 1 addition & 1 deletion .github/workflows/unused-deps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ concurrency:
name: unused-deps
jobs:
coverage:
runs-on: ubuntu-22.04
runs-on: self-hosted
name: unused-deps
steps:
- uses: actions/checkout@v4
Expand Down
Loading

0 comments on commit 28facf3

Please sign in to comment.