We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 884cb52 commit e9a828dCopy full SHA for e9a828d
.github/scripts/run-acceptance-tests.sh
@@ -0,0 +1,10 @@
1
+#!/usr/bin/env bash
2
+
3
+set -euo pipefail
4
5
+wget -q -O - https://raw.githubusercontent.com/k3d-io/k3d/main/install.sh | bash
6
+cd oats/yaml
7
+go install github.com/onsi/ginkgo/v2/ginkgo@latest
8
+export TESTCASE_TIMEOUT=5m
9
+export TESTCASE_BASE_PATH=../..
10
+ginkgo -r
.github/workflows/acceptance-tests.yml
@@ -24,10 +24,8 @@ jobs:
24
with:
25
go-version: '1.21'
26
cache-dependency-path: oats/go.sum
27
- - name: Build Image for integration tests
28
- run: ./build-lgtm.sh
29
- name: Run acceptance tests
30
- run: ./scripts/run-acceptance-tests.sh
+ run: .github/scripts/run-acceptance-tests.sh
31
- name: upload log file
32
uses: actions/upload-artifact@v4
33
if: failure()
0 commit comments