Skip to content

Commit 015e6ea

Browse files
committed
try without lld
1 parent 27dcce1 commit 015e6ea

File tree

2 files changed

+4
-14
lines changed

2 files changed

+4
-14
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -36,16 +36,14 @@ jobs:
3636
ports:
3737
- 5432:5432
3838
env:
39-
RUSTFLAGS: "-C link-arg=-fuse-ld=lld -D warnings"
39+
RUSTFLAGS: "-D warnings"
4040
steps:
4141
- name: Tune GitHub hosted runner to reduce flakiness
4242
# https://github.com/smorimoto/tune-github-hosted-runner-network/blob/main/action.yml
4343
run: sudo ethtool -K eth0 tx off rx off
4444
- name: Checkout sources
4545
uses: actions/checkout@v4
4646
- uses: Swatinem/rust-cache@v2
47-
- name: Install lld
48-
run: sudo apt-get install -y lld protobuf-compiler
4947

5048
- name: Run unit tests
5149
uses: actions-rs/cargo@v1
@@ -79,7 +77,7 @@ jobs:
7977
- 5432:5432
8078
env:
8179
GRAPH_IPFS_REQUEST_TIMEOUT: "60"
82-
RUSTFLAGS: "-C link-arg=-fuse-ld=lld -D warnings --cfg test_with_ipfs"
80+
RUSTFLAGS: "-D warnings --cfg test_with_ipfs"
8381
RUNNER_TESTS_WAIT_FOR_SYNC_SECS: "600"
8482
steps:
8583
- name: Tune GitHub hosted runner to reduce flakiness
@@ -102,9 +100,6 @@ jobs:
102100

103101
- uses: Swatinem/rust-cache@v2
104102

105-
- name: Install lld
106-
run: sudo apt-get install -y lld protobuf-compiler
107-
108103
- name: Run runner tests
109104
id: runner-tests-1
110105
uses: actions-rs/cargo@v1
@@ -143,7 +138,7 @@ jobs:
143138
ports:
144139
- 3011:5432
145140
env:
146-
RUSTFLAGS: "-C link-arg=-fuse-ld=lld -D warnings"
141+
RUSTFLAGS: "-D warnings"
147142
steps:
148143
- name: Tune GitHub hosted runner to reduce flakiness
149144
# https://github.com/smorimoto/tune-github-hosted-runner-network/blob/main/action.yml
@@ -164,9 +159,6 @@ jobs:
164159
- name: Install Node.js dependencies
165160
run: pnpm install
166161

167-
- name: Install lld
168-
run: sudo apt-get install -y lld protobuf-compiler
169-
170162
- name: Install Foundry
171163
uses: foundry-rs/foundry-toolchain@v1
172164
with:

.github/workflows/code-coverage.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010
CARGO_TERM_COLOR: always
1111
RUST_BACKTRACE: full
1212
THEGRAPH_STORE_POSTGRES_DIESEL_URL: "postgresql://postgres:postgres@localhost:5432/graph_node_test"
13-
RUSTFLAGS: "-C link-arg=-fuse-ld=lld -D warnings"
13+
RUSTFLAGS: "-D warnings"
1414
N_CONCURRENT_TESTS: "4"
1515
TESTS_GANACHE_HARD_WAIT_SECONDS: "30"
1616

@@ -54,8 +54,6 @@ jobs:
5454
- name: Install Node.js dependencies
5555
run: pnpm install
5656

57-
- name: Install lld
58-
run: sudo apt-get install -y lld
5957
- uses: actions-rs/cargo@v1
6058
with:
6159
command: install

0 commit comments

Comments
 (0)