Skip to content

Commit c82af9b

Browse files
update to the latest travis-lazarus
no need to call apt-get install xvfb -y; from travis.yml
1 parent e6e1354 commit c82af9b

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed

.travis.yml

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,35 +13,38 @@ language: shell
1313

1414
jobs:
1515
include:
16-
- os: linux
16+
- name: Ubuntu 16.04 AMD64 (1.8.2)
17+
os: linux
1718
dist: xenial
1819
env: LAZ_VER=1.8.2 RELEASE_ZIP_FILE="trackereditor_linux_amd64.zip"
19-
- os: linux
20+
- name: Ubuntu 16.04 AArch64 (1.6)
21+
os: linux
2022
dist: xenial
2123
arch: arm64
2224
env: LAZ_PKG=true RELEASE_ZIP_FILE="trackereditor_linux_AArch64.zip"
23-
- os: osx
25+
- name: macOS 10.14 (PKG)
26+
os: osx
2427
osx_image: xcode11.3
2528
env: LAZ_PKG=true LAZ_OPT="--widgetset=cocoa" RELEASE_ZIP_FILE="trackereditor_macOS.zip"
26-
- os: windows
29+
- name: Windows (2.0.8) Build 32-bit software
30+
os: windows
2731
env: LAZ_VER=2.0.8 LAZ_REL=64 LAZ_OPT="--os=win32 --cpu=i386" RELEASE_ZIP_FILE="trackereditor_win32.zip"
2832

2933
before_install:
34+
# Install python in windows OS
3035
- if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then choco install python3 --params "/InstallDir:C:\python3"; fi
3136
- if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then export PATH=/c/Python3:/c/Python3/Scripts:/c/lazarus:$PATH; fi
3237

3338
install:
34-
# Install prerequisites (fpc/lazarus/wine/qemu)
35-
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install xvfb -y; fi
36-
# Output something every 10 minutes or Travis kills the job
39+
# Output something at regular time or Travis will kills the job
3740
- while sleep 60; do echo "===== 1 minute mark ====="; done &
3841
- if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then python ./travis-lazarus/.travis.install.py; fi
3942
- if [[ "$TRAVIS_OS_NAME" != "windows" ]]; then ./travis-lazarus/.travis.install.py; fi
4043
# Killing background sleep loop
4144
- kill %1
4245

4346
script:
44-
# Output something every 10 minutes or Travis kills the job
47+
# Output something at regular time or Travis will kill the job
4548
- echo "start script"
4649
- while sleep 60; do echo "===== 1 minute mark ====="; done &
4750

travis-lazarus

0 commit comments

Comments
 (0)