From d02292bd1aa78403cbcb44b17b7f4f874b3f0361 Mon Sep 17 00:00:00 2001 From: Gabriel Adrian Samfira Date: Wed, 2 Aug 2023 17:22:25 +0300 Subject: [PATCH] Fix config dir location Signed-off-by: Gabriel Adrian Samfira --- .github/workflows/integration-tests.yml | 3 +-- test/integration/scripts/setup-garm.sh | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index d0209a5c..835a4e1c 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -42,12 +42,11 @@ jobs: - name: Set up ngrok id: ngrok - uses: gabriel-samfira/ngrok-tunnel-action@v1.0 + uses: gabriel-samfira/ngrok-tunnel-action@867169320326b49398c565de3b3f0ee75fb1599a with: ngrok_authtoken: ${{ secrets.NGROK_AUTH_TOKEN }} port: 9997 tunnel_type: http - - name: Run integration tests run: go run ./test/integration/e2e.go diff --git a/test/integration/scripts/setup-garm.sh b/test/integration/scripts/setup-garm.sh index 0811ae0f..46f3e51b 100755 --- a/test/integration/scripts/setup-garm.sh +++ b/test/integration/scripts/setup-garm.sh @@ -4,7 +4,7 @@ set -o errexit DIR="$(dirname $0)" BINARIES_DIR="$PWD/bin" CONTRIB_DIR="$PWD/contrib" -CONFIG_DIR="$PWD/config" +CONFIG_DIR="$PWD/test/integration/config" if [[ ! -f $BINARIES_DIR/garm ]] || [[ ! -f $BINARIES_DIR/garm-cli ]]; then echo "ERROR: Please build GARM binaries first"