try launching fedora and bunsen builds as separate travis jobs
This commit is contained in:
parent
a6aaed62f2
commit
ba2b1d8db2
2 changed files with 14 additions and 2 deletions
|
@ -1,8 +1,11 @@
|
|||
language: bash
|
||||
|
||||
script:
|
||||
- ./fedora/test_outsider
|
||||
- ./bunsen/test_outsider
|
||||
- ./test
|
||||
|
||||
env:
|
||||
- DETECTED_OS=fedora
|
||||
- DETECTED_OS=bunsen
|
||||
|
||||
sudo: required
|
||||
|
||||
|
|
9
test
Executable file
9
test
Executable file
|
@ -0,0 +1,9 @@
|
|||
#!/bin/bash
|
||||
|
||||
if [[ -z $DETECTED_OS ]]; then
|
||||
echo "cannot detect OS, please set DETECTED_OS manually"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
./$DETECTED_OS/configure_fresh_system
|
||||
|
Loading…
Reference in a new issue