Skip to content

Commit

Permalink
fix failing CI jobs (#2195)
Browse files Browse the repository at this point in the history
  • Loading branch information
barrasso authored Feb 1, 2024
1 parent eabe2bf commit c4ed230
Show file tree
Hide file tree
Showing 4 changed files with 73 additions and 1 deletion.
36 changes: 36 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,24 @@ jobs:
keys:
- foundry-bin-latest-${foundry_cache_version}
- rust/install: {}
- run:
name: "Run IPFS"
working_directory: ~/
environment:
SHELL: /bin/bash
command: |-
wget https://dist.ipfs.io/go-ipfs/v0.9.0/go-ipfs_v0.9.0_linux-amd64.tar.gz
tar -xvzf go-ipfs_v0.9.0_linux-amd64.tar.gz
sudo bash go-ipfs/install.sh
ipfs init
ipfs config Addresses.Gateway /ip4/0.0.0.0/tcp/8087
ipfs daemon
background: true
- cmd-wait-for-port:
port: 5001
- run:
command: |-
ipfs --version
- run:
name: "Install Foundry"
working_directory: ~/
Expand Down Expand Up @@ -141,6 +159,24 @@ jobs:
keys:
- foundry-bin-latest-${foundry_cache_version}
- rust/install: {}
- run:
name: "Run IPFS"
working_directory: ~/
environment:
SHELL: /bin/bash
command: |-
wget https://dist.ipfs.io/go-ipfs/v0.9.0/go-ipfs_v0.9.0_linux-amd64.tar.gz
tar -xvzf go-ipfs_v0.9.0_linux-amd64.tar.gz
sudo bash go-ipfs/install.sh
ipfs init
ipfs config Addresses.Gateway /ip4/0.0.0.0/tcp/8087
ipfs daemon
background: true
- cmd-wait-for-port:
port: 5001
- run:
command: |-
ipfs --version
- run:
name: "Install Foundry"
working_directory: ~/
Expand Down
18 changes: 18 additions & 0 deletions .circleci/src/jobs/job-cannon.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,24 @@ steps:
keys:
- foundry-bin-latest-${foundry_cache_version}
- rust/install: {}
- run:
name: "Run IPFS"
working_directory: ~/
environment:
SHELL: /bin/bash
command: |-
wget https://dist.ipfs.io/go-ipfs/v0.9.0/go-ipfs_v0.9.0_linux-amd64.tar.gz
tar -xvzf go-ipfs_v0.9.0_linux-amd64.tar.gz
sudo bash go-ipfs/install.sh
ipfs init
ipfs config Addresses.Gateway /ip4/0.0.0.0/tcp/8087
ipfs daemon
background: true
- cmd-wait-for-port:
port: 5001
- run:
command: |-
ipfs --version
- run:
name: "Install Foundry"
working_directory: ~/
Expand Down
18 changes: 18 additions & 0 deletions .circleci/src/jobs/job-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,24 @@ steps:
keys:
- foundry-bin-latest-${foundry_cache_version}
- rust/install: {}
- run:
name: "Run IPFS"
working_directory: ~/
environment:
SHELL: /bin/bash
command: |-
wget https://dist.ipfs.io/go-ipfs/v0.9.0/go-ipfs_v0.9.0_linux-amd64.tar.gz
tar -xvzf go-ipfs_v0.9.0_linux-amd64.tar.gz
sudo bash go-ipfs/install.sh
ipfs init
ipfs config Addresses.Gateway /ip4/0.0.0.0/tcp/8087
ipfs daemon
background: true
- cmd-wait-for-port:
port: 5001
- run:
command: |-
ipfs --version
- run:
name: "Install Foundry"
working_directory: ~/
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c4ed230

Please sign in to comment.