mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-28 03:33:53 +02:00
23 lines
643 B
YAML
23 lines
643 B
YAML
image: debian:stable-backports
|
|
|
|
before_script:
|
|
- apt-get update
|
|
- apt-get -y install build-essential libgtk2.0-dev wget
|
|
- wget https://sourceforge.net/projects/freepascal/files/Linux/3.2.2/fpc-3.2.2.x86_64-linux.tar
|
|
- tar xf fpc-3.2.2.x86_64-linux.tar
|
|
- cd fpc-3.2.2.x86_64-linux
|
|
- echo -e "\n\n\n\n" | ./install.sh
|
|
- cd ..
|
|
|
|
stages: # List of stages for jobs, and their order of execution
|
|
- build
|
|
|
|
build-job: # This job runs in the build stage, which runs first.
|
|
stage: build
|
|
script:
|
|
- echo "Using FPC:"
|
|
- fpc -iV
|
|
- echo
|
|
- echo "Compiling bigide for GTK2"
|
|
- make bigide LCL_PLATFORM=gtk2
|