Overview
| Comment: | .travis.yml: Remove STDOUT_SIMPLE
This no longer exists, as isatty() is used instead now. |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
141b8181c08e8876be8e5a13cfeb9d61 |
| User & Date: | js on 2020-06-14 19:00:37 |
| Other Links: | manifest | tags |
Context
|
2020-06-16
| ||
| 21:46 | Don't use utimes() on AmigaOS (check-in: 137dc2107d user: js tags: trunk) | |
|
2020-06-14
| ||
| 21:52 | Merge trunk into amiga-library branch (check-in: cf40aa9c66 user: js tags: amiga-library) | |
| 19:00 | .travis.yml: Remove STDOUT_SIMPLE (check-in: 141b8181c0 user: js tags: trunk) | |
| 16:07 | Check thread attributes before spawning the thread (check-in: 164475afdb user: js tags: trunk) | |
Changes
Modified .travis.yml from [53acd6323f] to [839879cad6].
| ︙ | ︙ | |||
288 289 290 291 292 293 294 |
- if [ "$config" = "amigaos" ]; then
wget -q https://franke.ms/download/amiga-gcc.tgz;
tar -C / -xzf amiga-gcc.tgz;
fi
script:
| < < < < < < < < | 288 289 290 291 292 293 294 295 296 297 298 299 300 301 |
- if [ "$config" = "amigaos" ]; then
wget -q https://franke.ms/download/amiga-gcc.tgz;
tar -C / -xzf amiga-gcc.tgz;
fi
script:
- build() {
if ! git clean -fxd >/tmp/clean_log 2>&1; then
cat /tmp/clean_log;
exit 1;
fi;
echo ">> Configuring with $@";
./autogen.sh;
|
| ︙ | ︙ |