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

fix: disable uniswap until #1367 #1368

Merged
merged 1 commit into from
Aug 2, 2023
Merged
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
56 changes: 31 additions & 25 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -804,17 +804,18 @@ jobs:
command: ./scripts/cond_run_script end-to-end $JOB_NAME ./scripts/run_tests_local e2e_pending_commitments_contract.test.ts
working_directory: yarn-project/end-to-end

uniswap-trade-on-l1-from-l2:
machine:
image: ubuntu-2004:202010-01
resource_class: large
steps:
- *checkout
- *setup_env
- run:
name: "Test"
command: ./scripts/cond_run_script end-to-end $JOB_NAME ./scripts/run_tests_local uniswap_trade_on_l1_from_l2.test.ts
working_directory: yarn-project/end-to-end
# TODO(AD): Reenable after #1367
# uniswap-trade-on-l1-from-l2:
# machine:
# image: ubuntu-2004:202010-01
# resource_class: large
# steps:
# - *checkout
# - *setup_env
# - run:
# name: "Test"
# command: ./scripts/cond_run_script end-to-end $JOB_NAME ./scripts/run_tests_local uniswap_trade_on_l1_from_l2.test.ts
# working_directory: yarn-project/end-to-end

integration-archiver-l1-to-l2:
machine:
Expand Down Expand Up @@ -863,16 +864,17 @@ jobs:
name: "Test"
command: cond_spot_run_tests end-to-end e2e_p2p_network.test.ts

e2e-uniswap-sandbox:
docker:
- image: aztecprotocol/alpine-build-image
resource_class: small
steps:
- *checkout
- *setup_env
- run:
name: "Test"
command: cond_spot_run_tests end-to-end uniswap_trade_on_l1_from_l2.test.ts docker-compose-e2e-sandbox.yml
# TODO(AD): Reenable after #1367
# e2e-uniswap-sandbox:
# docker:
# - image: aztecprotocol/alpine-build-image
# resource_class: small
# steps:
# - *checkout
# - *setup_env
# - run:
# name: "Test"
# command: cond_spot_run_tests end-to-end uniswap_trade_on_l1_from_l2.test.ts docker-compose-e2e-sandbox.yml

e2e-browser-sandbox:
docker:
Expand Down Expand Up @@ -1157,11 +1159,13 @@ workflows:
- e2e-account-contracts: *e2e_test
- e2e-escrow-contract: *e2e_test
- e2e-pending-commitments-contract: *e2e_test
- uniswap-trade-on-l1-from-l2: *e2e_test
# TODO(AD): Reenable after #1367
# - uniswap-trade-on-l1-from-l2: *e2e_test
- integration-l1-publisher: *e2e_test
- integration-archiver-l1-to-l2: *e2e_test
- e2e-p2p: *e2e_test
- e2e-uniswap-sandbox: *e2e_test
# TODO(AD): Reenable after #1367
# - e2e-uniswap-sandbox: *e2e_test
- e2e-browser-sandbox: *e2e_test

- e2e-end:
Expand All @@ -1181,11 +1185,13 @@ workflows:
- e2e-account-contracts
- e2e-escrow-contract
- e2e-pending-commitments-contract
- uniswap-trade-on-l1-from-l2
# TODO(AD): Reenable after #1367
# - uniswap-trade-on-l1-from-l2
- integration-l1-publisher
- integration-archiver-l1-to-l2
- e2e-p2p
- e2e-uniswap-sandbox
# TODO(AD): Reenable after #1367
# - e2e-uniswap-sandbox
- e2e-browser-sandbox
<<: *defaults

Expand Down