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

ci: disable testnet integration tests #5093

Merged
merged 1 commit into from
Feb 17, 2025
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
47 changes: 24 additions & 23 deletions .github/workflows/smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,26 +67,27 @@ jobs:
run: nix develop --command just integration-pmonitor

# Integration tests that run against the public testnet endpoints.
# Temporarily enabling these in CI, to provide assurance during refactoring.
testnet:
runs-on: buildjet-16vcpu-ubuntu-2204
steps:
- uses: actions/checkout@v4
with:
lfs: true

- name: install nix
uses: nixbuild/nix-quick-install-action@v28

- name: setup nix cache
uses: nix-community/cache-nix-action@v5
with:
primary-key: nix-${{ runner.os }}-${{ hashFiles('**/*.nix') }}
restore-prefixes-first-match: nix-${{ runner.os }}-
backend: buildjet

- name: Load rust cache
uses: astriaorg/[email protected]

- name: run the testnet integration tests
run: nix develop --command just integration-testnet
# Temporarily disabling these in CI, as the testnet endpoints are
# incompatible with `main`, given GH5010.
# testnet:
# runs-on: buildjet-16vcpu-ubuntu-2204
# steps:
# - uses: actions/checkout@v4
# with:
# lfs: true
#
# - name: install nix
# uses: nixbuild/nix-quick-install-action@v28
#
# - name: setup nix cache
# uses: nix-community/cache-nix-action@v5
# with:
# primary-key: nix-${{ runner.os }}-${{ hashFiles('**/*.nix') }}
# restore-prefixes-first-match: nix-${{ runner.os }}-
# backend: buildjet
#
# - name: Load rust cache
# uses: astriaorg/[email protected]
#
# - name: run the testnet integration tests
# run: nix develop --command just integration-testnet
Loading