15 lines
442 B
Bash
Executable File
15 lines
442 B
Bash
Executable File
#! /bin/sh
|
|
set -eu
|
|
|
|
# This is the expected entry point for Cockpit CI; will be called without
|
|
# arguments but with an appropriate $TEST_OS, and optionally $TEST_SCENARIO
|
|
|
|
TEST_SCENARIO="${TEST_SCENARIO:-}"
|
|
[ "${TEST_SCENARIO}" = "${TEST_SCENARIO##firefox}" ] || export TEST_BROWSER=firefox
|
|
export RUN_TESTS_OPTIONS=--track-naughties
|
|
|
|
# linters are off by default for production builds, but we want to run them in CI
|
|
export LINT=1
|
|
|
|
make check
|