From bfad8e6fbd0105cff17ca8cb21e654a5b07a20f0 Mon Sep 17 00:00:00 2001 From: Elias Rohrer Date: Wed, 3 Jun 2026 13:02:11 +0200 Subject: [PATCH] Account for `vss-server` location change In https://github.com/lightningdevkit/vss-server/pull/101 we dropped the Java version of `vss-server` and moved the Rust version to the repo root. Here we account for the updated location in our integration tests. --- .github/workflows/vss-integration.yml | 2 +- .github/workflows/vss-no-auth-integration.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/vss-integration.yml b/.github/workflows/vss-integration.yml index 9591751628..c67e9194e1 100644 --- a/.github/workflows/vss-integration.yml +++ b/.github/workflows/vss-integration.yml @@ -38,7 +38,7 @@ jobs: - name: Build and Deploy VSS Server run: | - cd vss-server/rust + cd vss-server cargo run server/vss-server-config.toml& - name: Run VSS Integration tests run: | diff --git a/.github/workflows/vss-no-auth-integration.yml b/.github/workflows/vss-no-auth-integration.yml index 950ff3e5f0..35666df038 100644 --- a/.github/workflows/vss-no-auth-integration.yml +++ b/.github/workflows/vss-no-auth-integration.yml @@ -38,7 +38,7 @@ jobs: - name: Build and Deploy VSS Server run: | - cd vss-server/rust + cd vss-server RUSTFLAGS=--cfg=noop_authorizer cargo run --no-default-features server/vss-server-config.toml& - name: Run VSS Integration tests run: |