-
Notifications
You must be signed in to change notification settings - Fork 29
/
.travis.yml
33 lines (30 loc) · 986 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
language: minimal
dist: xenial
addons:
apt:
packages:
- docker.io
# Travis uses --no-install-suggests and --no-install-recommends so all necessary packages must be explicitly installed
- lazarus
- lcl
script:
# Without -q -q the build logs exceed the amount Travis will show in the web interface (10k lines)
- lazbuild -q -q --cpu=x86_64 Source/LdapAdmin.lpi
- tar -cvzf LdapAdmin-linux-64bit.tar.gz -C Source LdapAdmin
- |
docker build -t lazbuild -<<EOF
FROM i386/ubuntu:xenial
RUN apt update
RUN apt install -y --no-install-suggests --no-install-recommends lazarus lcl
EOF
- docker run -it --rm -v $(pwd)/Source:/Source lazbuild lazbuild -q -q --cpu=i386 /Source/LdapAdmin.lpi
- tar -cvzf LdapAdmin-linux-32bit.tar.gz -C Source LdapAdmin
deploy:
provider: releases
api_key: $GITHUB_OAUTH_TOKEN
file:
- LdapAdmin-linux-32bit.tar.gz
- LdapAdmin-linux-64bit.tar.gz
skip_cleanup: true
on:
tags: true