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