File: gitlab-ci.yml

package info (click to toggle)
openmolcas 25.02-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 170,204 kB
  • sloc: f90: 498,088; fortran: 139,779; python: 13,587; ansic: 5,745; sh: 745; javascript: 660; pascal: 460; perl: 325; makefile: 17
file content (50 lines) | stat: -rw-r--r-- 1,211 bytes parent folder | download | duplicates (13)
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
stages:
  - build
  - autopkgtest

.build: &build
  stage: build
  before_script:
    # allow origtargz to use 'apt-get source'
    - sed -e 's/^deb /deb-src /' /etc/apt/sources.list > /etc/apt/sources.list.d/src.list
    - apt-get -q update
    - apt-get -y --no-install-recommends install devscripts fakeroot liblwp-protocol-https-perl libwww-perl
    - useradd builduser
    - chown -R builduser:builduser .
    - chown builduser:builduser ..
    - su -c 'origtargz' builduser
    - apt-get -y --no-install-recommends build-dep .
  script:
    - su -c 'dpkg-buildpackage --no-sign -sa -rfakeroot' builduser
  after_script:
    - rm -rf .built && mkdir .built
    - dcmd mv ../*.changes .built/
  artifacts:
    paths:
      - .built

.test: &test
  stage: autopkgtest
  before_script:
    - apt-get -q update -q
    - apt-get -y --no-install-recommends install autopkgtest autodep8
  script:
    - autopkgtest .built/*.changes -- null

build:testing:
  <<: *build
  image: debian:testing
build:unstable:
  <<: *build
  image: debian:sid

test:testing:
  <<: *test
  dependencies:
    - build:testing
  image: debian:testing
test:unstable:
  <<: *test
  dependencies:
    - build:unstable
  image: debian:sid