File tree Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change 31
31
run : build/ci/install-dependencies.sh
32
32
shell : bash
33
33
34
+ - name : Ensure only tests that are supported in CI are run
35
+ run : echo "INTEGRATION_FLAGS='--ci'" >> $GITHUB_ENV
36
+
37
+ - name : Run integration tests
38
+ run : make integration-test INTEGRATION_FLAGS="$INTEGRATION_FLAGS"
39
+
34
40
- name : Enable perf tests
35
41
if : ${{ github.event.inputs.run-all }}
36
42
run : echo "E2E_FLAGS='--all'" >> $GITHUB_ENV
Original file line number Diff line number Diff line change 3
3
THISDIR=" $( cd " $( dirname " $0 " ) " ; pwd -P ) "
4
4
TESTDIR=" $THISDIR /../test/integration"
5
5
6
+ # Defaults
7
+ ARGS=()
8
+
9
+ # Parse script arguments
10
+ for i in " $@ "
11
+ do
12
+ case " $i " in
13
+ --offline)
14
+ ARGS+=(" -p" " offline" )
15
+ shift # past argument
16
+ ;;
17
+ --all)
18
+ ARGS+=(" -p" " all" )
19
+ shift # past argument
20
+ ;;
21
+ * )
22
+ die " unknown option '$i '"
23
+ ;;
24
+ esac
25
+ done
26
+
6
27
# Exit as soon as any line fails
7
28
set -e
8
29
You can’t perform that action at this time.
0 commit comments