Remove explicit "default" test config argument.
Not specifying the test config implicitly selects default args.
This commit is contained in:
parent
15a01cf15f
commit
c9d9fcad2a
|
@ -9,6 +9,9 @@
|
||||||
# LTESTS
|
# LTESTS
|
||||||
|
|
||||||
config=$1
|
config=$1
|
||||||
|
if [ "$config" = "" ]; then
|
||||||
|
config="default"
|
||||||
|
fi
|
||||||
|
|
||||||
unset CC CFLAGS CPPFLAGS LDFLAGS LTESTS SUDO
|
unset CC CFLAGS CPPFLAGS LDFLAGS LTESTS SUDO
|
||||||
|
|
||||||
|
|
|
@ -50,8 +50,6 @@ jobs:
|
||||||
- sol10
|
- sol10
|
||||||
- sol11
|
- sol11
|
||||||
- win10
|
- win10
|
||||||
configs:
|
|
||||||
- default
|
|
||||||
# Then we include any extra configs we want to test for specific VMs.
|
# Then we include any extra configs we want to test for specific VMs.
|
||||||
include:
|
include:
|
||||||
- { os: ARM64, configs: pam }
|
- { os: ARM64, configs: pam }
|
||||||
|
|
Loading…
Reference in New Issue