Skip to content
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
12 changes: 0 additions & 12 deletions .github/workflows/build-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -223,15 +223,6 @@ jobs:
arch: armv7
- target: arm-unknown-linux-musleabihf
arch: arm
# NOTE: Removing this to eliminate transient release failures.
# - target: powerpc64le-unknown-linux-gnu
# arch: ppc64le
# - target: powerpc64-unknown-linux-gnu
# arch: ppc64
# NOTE: Removing this for now, as it's not supported by OpenSSL in
# particular. Probably need a new version?
#- target: s390x-unknown-linux-gnu
# arch: s390x

steps:
- uses: actions/checkout@v4.2.2
Expand Down Expand Up @@ -320,14 +311,11 @@ jobs:
musllinux-cross:
if: ${{ !contains(github.event.pull_request.labels.*.name, 'no-build') }}
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.platform.target == 'armv7-unknown-linux-musleabihf' }}
strategy:
matrix:
platform:
- target: aarch64-unknown-linux-musl
arch: aarch64
- target: armv7-unknown-linux-musleabihf
arch: armv7
steps:
- uses: actions/checkout@v4.2.2
with:
Expand Down
36 changes: 36 additions & 0 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Integration Tests

on:
pull_request:
branches:
- '*'
push:
branches:
- '*'
tags-ignore:
- '**'

jobs:
integration-tests:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Install the latest version of uv
uses: astral-sh/setup-uv@v6

- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version-file: ".python-version"

- name: Build Tower CLI
run: cargo build

- name: Install Python dependencies
run: uv sync --locked --group dev

- name: Run integration tests
run: tests/integration/run_tests.py
Loading
Loading