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

chore: disable tt test #10999

Merged
merged 3 commits into from
Jan 2, 2025
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
32 changes: 16 additions & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -543,21 +543,21 @@ jobs:
export CI=1 USE_CACHE=1
scripts/earthly-ci +prover-client-with-cache

rough-rhino-installer:
needs: [bootstrap, configure]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with: { ref: "${{ github.event.pull_request.head.sha }}" }
- uses: ./.github/ci-setup-action
- name: Rough Rhino Installer Helper Script
uses: ./.github/ensure-builder
timeout-minutes: 40
with:
username: ${{ needs.configure.outputs.username }}
runner_type: builder-x86
run: |
scripts/earthly-ci ./spartan/releases/rough-rhino/+test-all
# testnet-installer:
# needs: [bootstrap, configure]
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# with: { ref: "${{ github.event.pull_request.head.sha }}" }
# - uses: ./.github/ci-setup-action
# - name: Testnet Installer Helper Script
# uses: ./.github/ensure-builder
# timeout-minutes: 40
# with:
# username: ${{ needs.configure.outputs.username }}
# runner_type: builder-x86
# run: |
# scripts/earthly-ci ./spartan/releases/testnet/+test-all

protocol-circuits-gates-report:
needs: [ci-rest, configure]
Expand Down Expand Up @@ -656,7 +656,7 @@ jobs:
- kind-network-smoke
- kind-network-test
- boxes-test
- rough-rhino-installer
# - testnet-installer
if: always()
outputs:
failure: ${{ steps.set_failed_jobs.outputs.failure }}
Expand Down
10 changes: 0 additions & 10 deletions .github/workflows/publish-aztec-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -316,16 +316,6 @@ jobs:
--VERSION=${{ steps.version_step.outputs.VERSION }} \
--DRY_RUN=${{ (github.event.inputs.publish == 'false') && '1' || '0' }}

- name: Publish spartan NPM package
run: |
earthly-ci \
--no-output \
--secret NPM_TOKEN=${{ env.NPM_TOKEN }} \
./spartan/releases/rough-rhino+publish-npm \
--DIST_TAG=${{ steps.version_step.outputs.DIST_TAG }} \
--VERSION=${{ steps.version_step.outputs.VERSION }} \
--DRY_RUN=${{ (github.event.inputs.publish == 'false') && '1' || '0' }}

publish-aztec-up:
needs: [configure, publish-manifests]
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion spartan/releases/create-spartan.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

# URL of the aztec-spartan.sh script
DEFAULT_URL="https://raw.githubusercontent.com/AztecProtocol/aztec-packages/refs/heads/master/spartan/releases/rough-rhino/aztec-spartan.sh"
DEFAULT_URL="https://raw.githubusercontent.com/AztecProtocol/aztec-packages/refs/heads/master/spartan/releases/testnet/aztec-spartan.sh"

# Colors for output
GREEN='\033[0;32m'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,4 +160,4 @@ test-all:
BUILD +test-update
BUILD +test-data-dir
BUILD +test-p2p-key
BUILD +test-ethereum-host
BUILD +test-ethereum-host
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,10 @@ parse_args() {
show_banner() {
echo -e "${BLUE}"
echo " _ ____ _____ _____ _____ _____ _____ ____ _____ _ _ _____ _____ "
echo " / \ |_ /|_ _| ____| __/ |_ _| ____/ ___|_ _| \ | | ____|_ _|"
echo " / _ \ / / | | | _| | | | | | _| \___ \ | | | \| | _| | | "
echo " / ___ \/ /_ | | | |___ | |__ | | | |___ ___) || | | |\ | |___ | | "
echo "/_/ \_\___| |_| |______|____\ |_| |_____|____/ |_| |_| \_|_____| |_| "
echo " / \ |_ /|_ _| _____| __/|_ _| ____/ ___|_ _| \ | | ____|_ _|"
echo " / _ \ / / | | | _| | | | | | _| \___ \ | | | \| | _| | | "
echo " / ___ \/ /_ | | | |___ | |__ | | | |___ ___) || | | |\ | |___ | | "
echo "/_/ \_\___| |_| |______|____\ |_| |_____|____/ |_| |_| \_|_____| |_| "
echo -e "${NC}"
}

Expand Down
Loading