Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
YassinEldeeb committed Jul 16, 2024
1 parent d4ceb36 commit beb4f80
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

- uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.68.0
toolchain: 1.73.0

- uses: the-guild-org/shared-config/setup@main
name: Setup Env
Expand All @@ -46,6 +46,12 @@ jobs:
- name: Install Dependencies
run: pnpm install

- name: Install matchstick system dependencies
working-directory: packages/matchstick
run: |
sudo apt-get update
sudo apt-get -y install libpq-dev protobuf-compiler
- name: Build Matchstick Package
run: pnpm --filter=@graphprotocol/graph-matchstick build

Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@ on:
- '**/*.gitignore'
- .editorconfig
- docs/**
pull_request:
branches:
- main

permissions: write-all

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.68.0
toolchain: 1.73.0
- run: sudo apt-get install protobuf-compiler
- name: cargo check
working-directory: packages/matchstick
Expand All @@ -31,7 +31,7 @@ jobs:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.68.0
toolchain: 1.73.0
- name: Install dependencies
working-directory: packages/matchstick
run: |
Expand All @@ -48,7 +48,7 @@ jobs:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.68.0
toolchain: 1.73.0
- name: install rustfmt
working-directory: packages/matchstick
run: rustup component add rustfmt
Expand All @@ -63,7 +63,7 @@ jobs:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.68.0
toolchain: 1.73.0
- name: Install dependencies
run: |
sudo apt-get update
Expand Down
2 changes: 1 addition & 1 deletion packages/matchstick/rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "1.68.0"
channel = "1.73.0"
profile = "default"

0 comments on commit beb4f80

Please sign in to comment.