Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | .travis.yml: Disable Wii until libogc is updated |
|---|---|
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
f06e338487a3a96ad0b74c8d5df0322b |
| User & Date: | js 2018-08-27 22:02:38.000 |
Context
|
2018-08-27
| ||
| 22:48 | Improve objfw-config flags check-in: cddfc2ed56 user: js tags: trunk | |
| 22:02 | .travis.yml: Disable Wii until libogc is updated check-in: f06e338487 user: js tags: trunk | |
|
2018-08-26
| ||
| 21:06 | socket.m: Set the sin_len field on Wii check-in: 8386b52824 user: js tags: trunk | |
Changes
Changes to .travis.yml.
| ︙ | ︙ | |||
111 112 113 114 115 116 117 |
# Nintendo DS
- os: linux
dist: trusty
env:
- config=nintendo_ds
# Nintendo Wii
| > | | | | | 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 |
# Nintendo DS
- os: linux
dist: trusty
env:
- config=nintendo_ds
# Nintendo Wii
# TODO: Enable once libogc is updated
#- os: linux
# dist: trusty
# env:
# - config=wii
before_install:
- if [ "$TRAVIS_OS_NAME" = "linux" -a -z "$config" ]; then
if ! sudo apt-get -qq update >/tmp/apt_log 2>&1; then
cat /tmp/apt_log;
exit 1;
fi;
|
| ︙ | ︙ |