summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 46f020c64e1e0ae2965580daff0bb4291bb27672 (plain) (blame)
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
60
61
62
63
64
65
66
67
stages:
  - build
  - package

# with :; prevent from run it on windows
before_script:
  - ":; uname -a"
  - ":; cat /etc/os-release"
  - ":; pwd"
  - ":; cat /proc/sys/kernel/core_pattern"
  - ":; mkdir logs || true"
  - ":; ${PMUPDATE} >logs/apt.log"
  - ":; ${PMINSTALL} ${PACKAGES} >>logs/apt.log"

# Intentionally old for maximum linking compatibility
image: debian:buster
variables:
  PMUPDATE: "apt-get update"
  PMINSTALL: "apt-get install -y -qq"
  # 1000 is max possible to still get a "shallow clone" without other branches
  GIT_DEPTH: "1000"


# Note: version in job name to ensure that other version artifacts can still be accessed
# TODO: put name and image above into a variable.
build_debian10_buster:
  stage: build
  script:
  - echo "$CI_COMMIT_SHA" > mplint-version.txt
  # colon followed by space has another meaning
  - echo sha:" $CI_COMMIT_SHA" > mplint-build-info.txt
  - echo jobid:" $CI_JOB_ID" >> mplint-build-info.txt
  - echo title:" $CI_COMMIT_TITLE" >> mplint-build-info.txt
  - echo pipeline:" $CI_PIPELINE_URL" >> mplint-build-info.txt
  - echo image:" $CI_JOB_IMAGE" >> mplint-build-info.txt
  - cat mplint-version.txt
  - cat mplint-build-info.txt
  - autoreconf -i
  - ./configure
  - make -j$(nproc)
  # this just copies mplint to /usr & is not passed to next stage)
  #- make install
  variables:
    PACKAGES: g++ git
              make autoconf automake
  artifacts:
    untracked: true
    expire_in: 3 days

# This step exists to make a smaller package for faster download in MV CI.
package_debian10_buster:
  stage: package
  script:
  # To flatten the archive
  - mv src/mplint mplint
  # 2.3MB to 250KB, but no symbols.
  - strip mplint
  variables:
    PACKAGES: binutils
  artifacts:
    # too many files named artifacts.zip
    name: mplint-release
    paths:
    - mplint
    - mplint-version.txt
    - mplint-build-info.txt