Fix config dir location

Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>
This commit is contained in:
Gabriel Adrian Samfira 2023-08-02 17:22:25 +03:00
parent d2ffa22204
commit d02292bd1a
No known key found for this signature in database
GPG key ID: 7D073DCC2C074CB5
2 changed files with 2 additions and 3 deletions

View file

@ -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

View file

@ -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"