Our other projects do that as well. Running it only in Cirrus CI is prone to forgetting about it, as derived projects often disable that.
13 lines
384 B
Bash
Executable file
13 lines
384 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
|
|
|
|
make codecheck
|
|
make check
|
|
make po/starter-kit.pot
|