-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitlab-ci.yml
59 lines (51 loc) · 2.48 KB
/
.gitlab-ci.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
debian_sid_amd64:
stage: build
image: debian:sid
before_script:
- apt-get update -yq
- apt-get install -y g++ git ca-certificates make cmake ninja-build build-essential fakeroot debhelper-compat meson pkg-config
- apt-get install -y cmake qttools5-dev g++ make libarchive-dev liblzma-dev libbz2-dev zlib1g-dev liblz-dev
script:
- dpkg-buildpackage -rfakeroot -uc -us
- mv ../archiver_2.0.8_amd64.deb ./archiver_2.0.8_sid_amd64.deb
- mv ../libarchiveqt_2.0.8_amd64.deb ./libarchiveqt_2.0.8_sid_amd64.deb
- mv ../libarchiveqt-dev_2.0.8_amd64.deb ./libarchiveqt-dev_2.0.8_sid_amd64.deb
artifacts:
paths:
- archiver_2.0.8_sid_amd64.deb
- libarchiveqt_2.0.8_sid_amd64.deb
- libarchiveqt-dev_2.0.8_sid_amd64.deb
debian_testing_amd64:
stage: build
image: debian:testing
before_script:
- apt-get update -yq
- apt-get install -y g++ git ca-certificates make cmake ninja-build build-essential fakeroot debhelper-compat meson pkg-config
- apt-get install -y cmake qttools5-dev g++ make libarchive-dev liblzma-dev libbz2-dev zlib1g-dev liblz-dev
script:
- dpkg-buildpackage -rfakeroot -uc -us
- mv ../archiver_2.0.8_amd64.deb ./archiver_2.0.8_testing_amd64.deb
- mv ../libarchiveqt_2.0.8_amd64.deb ./libarchiveqt_2.0.8_testing_amd64.deb
- mv ../libarchiveqt-dev_2.0.8_amd64.deb ./libarchiveqt-dev_2.0.8_testing_amd64.deb
artifacts:
paths:
- archiver_2.0.8_testing_amd64.deb
- libarchiveqt_2.0.8_testing_amd64.deb
- libarchiveqt-dev_2.0.8_testing_amd64.deb
debian_stable_amd64:
stage: build
image: debian:stable
before_script:
- apt-get update -yq
- apt-get install -y g++ git ca-certificates make cmake ninja-build build-essential fakeroot debhelper-compat meson pkg-config
- apt-get install -y cmake qttools5-dev g++ make libarchive-dev liblzma-dev libbz2-dev zlib1g-dev liblz-dev
script:
- dpkg-buildpackage -rfakeroot -uc -us
- mv ../archiver_2.0.8_amd64.deb ./archiver_2.0.8_stable_amd64.deb
- mv ../libarchiveqt_2.0.8_amd64.deb ./libarchiveqt_2.0.8_stable_amd64.deb
- mv ../libarchiveqt-dev_2.0.8_amd64.deb ./libarchiveqt-dev_2.0.8_stable_amd64.deb
artifacts:
paths:
- archiver_2.0.8_stable_amd64.deb
- libarchiveqt_2.0.8_stable_amd64.deb
- libarchiveqt-dev_2.0.8_stable_amd64.deb