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

Removed hardcoded artifacts #28

Merged
merged 22 commits into from
Dec 2, 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
22 changes: 22 additions & 0 deletions .github/workflows/cargo-linters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,28 @@ jobs:
# before the plugin, as the cache uses the current rustc version as its cache key
- run: rustup show

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "18"

- name: Install Ganache
run: |
npm install -g [email protected]
ganache --version

- name: Install Solc
run: |
pip install solc-select
solc-select install 0.8.19
solc-select use 0.8.19
solc --version

- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly

- uses: Swatinem/rust-cache@v2
- name: Format and clippy
run: |
Expand Down
22 changes: 22 additions & 0 deletions .github/workflows/rust-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,28 @@ jobs:

- uses: Swatinem/rust-cache@v2

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "18"

- name: Install Ganache
run: |
npm install -g [email protected]
ganache --version

- name: Install Solc
run: |
pip install solc-select
solc-select install 0.8.19
solc-select use 0.8.19
solc --version

- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly

- name: Build the project
run: |
cargo build --release --workspace
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ script/anvil.json

.idea

artifacts/
10 changes: 10 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,13 @@
[submodule "lib/piltover"]
path = lib/piltover
url = https://github.com/keep-starknet-strange/piltover
[submodule "lib/starkgate-contracts"]
path = lib/starkgate-contracts
url = https://github.com/starknet-io/starkgate-contracts
[submodule "lib/starkgate-contracts-0.9"]
path = lib/starkgate-contracts-0.9
url = https://github.com/starknet-io/starkgate-contracts
branch = update-cairo-0.9.0
[submodule "lib/starkgate-contracts-82e651f"]
path = lib/starkgate-contracts-82e651f
url = https://github.com/starknet-io/starkgate-contracts.git
Loading