Try to fix whatever syntax error Travis isn't...
...telling me about. Also this 50 letter limit is stupid
This commit is contained in:
parent
d8d08bf553
commit
cbe6262e74
1 changed files with 11 additions and 10 deletions
21
.travis.yml
21
.travis.yml
|
@ -8,8 +8,18 @@ dist: bionic
|
||||||
# Enable C++ language support
|
# Enable C++ language support
|
||||||
language: cpp
|
language: cpp
|
||||||
|
|
||||||
|
before_cache:
|
||||||
|
- |-
|
||||||
|
case $TRAVIS_OS_NAME in
|
||||||
|
windows)
|
||||||
|
# https://unix.stackexchange.com/a/137322/107554
|
||||||
|
$msys2 pacman --sync --clean --noconfirm
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
# Cache compiled object files with ccache
|
# Cache compiled object files with ccache
|
||||||
cache: ccache
|
cache:
|
||||||
|
ccache
|
||||||
directories:
|
directories:
|
||||||
- $HOME/AppData/Local/Temp/chocolatey
|
- $HOME/AppData/Local/Temp/chocolatey
|
||||||
- /C/tools/msys64
|
- /C/tools/msys64
|
||||||
|
@ -97,12 +107,3 @@ after_failure:
|
||||||
- travis_retry wget ${DISCORD_SEND_SCRIPT_URL} -O ${DISCORD_SEND_SCRIPT_FILENAME}
|
- travis_retry wget ${DISCORD_SEND_SCRIPT_URL} -O ${DISCORD_SEND_SCRIPT_FILENAME}
|
||||||
- chmod +x ${DISCORD_SEND_SCRIPT_FILENAME}
|
- chmod +x ${DISCORD_SEND_SCRIPT_FILENAME}
|
||||||
- ./${DISCORD_SEND_SCRIPT_FILENAME} failure $DISCORD_WEBHOOK_URL
|
- ./${DISCORD_SEND_SCRIPT_FILENAME} failure $DISCORD_WEBHOOK_URL
|
||||||
|
|
||||||
before_cache:
|
|
||||||
- |-
|
|
||||||
case $TRAVIS_OS_NAME in
|
|
||||||
windows)
|
|
||||||
# https://unix.stackexchange.com/a/137322/107554
|
|
||||||
$msys2 pacman --sync --clean --noconfirm
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue