Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
22822 | jghali | 1 | # Dependencies are managed in the Dockerfile in the scribus-ci-docker |
2 | # Git repository. Change them there, wait a bit, and then we'll use |
||
3 | # the new ones here in these builds. |
||
4 | image: registry.gitlab.com/scribus/scribus-ci-docker/master |
||
5 | |||
6 | variables: |
||
7 | GIT_DEPTH: "10" |
||
8 | GIT_SUBMODULE_STRATEGY: recursive |
||
9 | |||
10 | appimage:linux: |
||
11 | stage: build |
||
12 | except: |
||
13 | - schedules |
||
14 | cache: |
||
15 | key: "cache-appimage" |
||
16 | paths: |
||
17 | - ccache/ |
||
18 | before_script: |
||
19 | # CCache Config |
||
20 | - mkdir -p ccache |
||
21 | - export CCACHE_BASEDIR=${PWD} |
||
22 | - export CCACHE_DIR=${PWD}/ccache |
||
23 | script: |
||
24 | - bash -ex AppImage-package/bundle.sh |
||
25 | artifacts: |
||
26 | expire_in: 14 days |
||
27 | paths: |
||
28 | - ./Scribus*.AppImage* |