KasmVNC/.gitlab-ci.yml

762 lines
16 KiB
YAML
Raw Normal View History

2021-01-18 20:12:23 +01:00
image: docker
services:
- docker:dind
variables:
KASMVNC_COMMIT_ID: $CI_COMMIT_SHA
GITLAB_SHARED_DIND_DIR: /builds/$CI_PROJECT_PATH/shared
2021-03-30 21:32:18 +02:00
GIT_SUBMODULE_STRATEGY: normal
2023-08-25 10:39:15 +02:00
GIT_FETCH_EXTRA_FLAGS: --tags --force
# E.g. BUILD_JOBS: build_debian_buster,build_ubuntu_bionic. This will include
# arm builds, because build_debian_buster_arm matches build_debian_buster.
# "BUILD_JOBS: none" won't build any build jobs, nor www.
BUILD_JOBS: all
2024-01-03 18:02:12 +01:00
DOCKER_HOST: tcp://docker:2375
DOCKER_TLS_CERTDIR: ""
2022-12-01 21:42:21 +01:00
workflow:
rules:
# Disable tag builds.
2024-03-15 12:14:37 +01:00
- if: $CI_COMMIT_TAG != $CI_COMMIT_REF_NAME && $CI_PIPELINE_SOURCE != "merge_request_event"
2022-12-01 21:42:21 +01:00
2021-01-18 20:12:23 +01:00
stages:
- www
2021-01-18 20:12:23 +01:00
- build
2022-08-19 19:54:11 +02:00
- test
2021-03-18 11:19:28 +01:00
- upload
2021-03-18 10:56:03 +01:00
.prepare_build: &prepare_build
- pwd
- apk add bash
- mkdir -p "$GITLAB_SHARED_DIND_DIR" && chmod 777 "$GITLAB_SHARED_DIND_DIR"
.prepare_www: &prepare_www
- tar -zxf output/www/kasm_www.tar.gz -C builder/
2021-03-18 11:17:52 +01:00
.prepare_artfacts: &prepare_artfacts
- cp -r builder/build/* output/
- rm output/*.tar.gz
2023-02-02 17:53:50 +01:00
default:
tags:
2024-01-03 18:02:12 +01:00
- oci-fixed-amd
2023-02-02 17:53:50 +01:00
build_www:
stage: www
allow_failure: false
tags:
2024-01-03 18:02:12 +01:00
- oci-fixed-amd
before_script:
- *prepare_build
script:
- webpacked_www=$PWD/builder/www
- src_www=kasmweb
- docker build -t kasmweb/www -f builder/dockerfile.www.build .
- docker run --rm -v $PWD/builder/www:/build kasmweb/www:latest
- mkdir -p output/www
- cd builder
2023-02-09 01:25:35 +01:00
- echo $PWD
- ls -l
- ls -l ../output
- tar -zcvf ../output/www/kasm_www.tar.gz www
only:
variables:
- $BUILD_JOBS !~ /^none$/
artifacts:
paths:
- output/
2021-03-18 11:19:28 +01:00
build_ubuntu_bionic:
2021-01-18 20:12:23 +01:00
stage: build
allow_failure: true
tags:
2024-01-03 18:02:12 +01:00
- oci-fixed-amd
2021-03-18 10:56:03 +01:00
before_script:
- *prepare_build
- *prepare_www
after_script:
- *prepare_artfacts
script:
- bash builder/build-package ubuntu bionic
only:
variables:
- $BUILD_JOBS == 'all' || $BUILD_JOBS =~ $CI_JOB_NAME
artifacts:
paths:
- output/
build_ubuntu_bionic_arm:
stage: build
allow_failure: false
tags:
2024-01-03 18:02:12 +01:00
- oci-fixed-arm
before_script:
- *prepare_build
- *prepare_www
2021-03-18 11:17:52 +01:00
after_script:
- *prepare_artfacts
2021-01-18 20:12:23 +01:00
script:
2021-03-18 11:19:28 +01:00
- bash builder/build-package ubuntu bionic
only:
variables:
- $BUILD_JOBS == 'all' || $BUILD_JOBS =~ $CI_JOB_NAME
2021-01-18 20:12:23 +01:00
artifacts:
paths:
- output/
2021-03-18 11:19:28 +01:00
build_ubuntu_focal:
stage: build
allow_failure: true
tags:
2024-01-03 18:02:12 +01:00
- oci-fixed-amd
2021-03-18 11:19:28 +01:00
before_script:
- *prepare_build
- *prepare_www
after_script:
- *prepare_artfacts
script:
- bash builder/build-package ubuntu focal;
only:
variables:
- $BUILD_JOBS == 'all' || $BUILD_JOBS =~ $CI_JOB_NAME
artifacts:
paths:
- output/
build_ubuntu_focal_arm:
stage: build
allow_failure: true
tags:
2024-01-03 18:02:12 +01:00
- oci-fixed-arm
before_script:
- *prepare_build
- *prepare_www
2021-03-18 11:19:28 +01:00
after_script:
- *prepare_artfacts
script:
- bash builder/build-package ubuntu focal;
only:
variables:
- $BUILD_JOBS == 'all' || $BUILD_JOBS =~ $CI_JOB_NAME
2021-03-18 11:19:28 +01:00
artifacts:
paths:
- output/
2022-06-08 12:46:03 +02:00
build_ubuntu_jammy:
stage: build
allow_failure: true
tags:
2024-01-03 18:02:12 +01:00
- oci-fixed-amd
2022-06-08 12:46:03 +02:00
before_script:
- *prepare_build
- *prepare_www
after_script:
- *prepare_artfacts
script:
- bash builder/build-package ubuntu jammy;
only:
variables:
- $BUILD_JOBS == 'all' || $BUILD_JOBS =~ $CI_JOB_NAME
artifacts:
paths:
- output/
build_ubuntu_jammy_arm:
stage: build
allow_failure: true
tags:
2024-01-03 18:02:12 +01:00
- oci-fixed-arm
2022-06-08 12:46:03 +02:00
before_script:
- *prepare_build
- *prepare_www
after_script:
- *prepare_artfacts
script:
- bash builder/build-package ubuntu jammy;
only:
variables:
- $BUILD_JOBS == 'all' || $BUILD_JOBS =~ $CI_JOB_NAME
artifacts:
paths:
- output/
2021-03-18 11:19:28 +01:00
build_debian_buster:
stage: build
allow_failure: true
tags:
2024-01-03 18:02:12 +01:00
- oci-fixed-amd
2021-03-18 11:19:28 +01:00
before_script:
- *prepare_build
- *prepare_www
after_script:
- *prepare_artfacts
script:
- bash builder/build-package debian buster;
only:
variables:
2023-02-13 19:39:26 +01:00
- $BUILD_JOBS == 'all' || $BUILD_JOBS =~ $CI_JOB_NAME
artifacts:
paths:
- output/
build_debian_buster_arm:
stage: build
allow_failure: true
tags:
2024-01-03 18:02:12 +01:00
- oci-fixed-arm
before_script:
- *prepare_build
- *prepare_www
2021-03-18 11:19:28 +01:00
after_script:
- *prepare_artfacts
script:
- bash builder/build-package debian buster;
only:
variables:
2023-02-13 19:39:26 +01:00
- $BUILD_JOBS == 'all' || $BUILD_JOBS =~ $CI_JOB_NAME
2021-03-18 11:19:28 +01:00
artifacts:
paths:
- output/
build_debian_bullseye:
stage: build
allow_failure: true
tags:
2024-01-03 18:02:12 +01:00
- oci-fixed-amd
2021-03-18 11:19:28 +01:00
before_script:
- *prepare_build
- *prepare_www
after_script:
- *prepare_artfacts
script:
- bash builder/build-package debian bullseye;
only:
variables:
2023-02-13 19:39:26 +01:00
- $BUILD_JOBS == 'all' || $BUILD_JOBS =~ $CI_JOB_NAME
artifacts:
paths:
- output/
build_debian_bullseye_arm:
stage: build
allow_failure: true
tags:
2024-01-03 18:02:12 +01:00
- oci-fixed-arm
before_script:
- *prepare_build
- *prepare_www
2021-03-18 11:19:28 +01:00
after_script:
- *prepare_artfacts
script:
- bash builder/build-package debian bullseye;
only:
variables:
2023-02-13 19:39:26 +01:00
- $BUILD_JOBS == 'all' || $BUILD_JOBS =~ $CI_JOB_NAME
2021-03-18 11:19:28 +01:00
artifacts:
paths:
- output/
build_debian_bookworm:
stage: build
allow_failure: true
tags:
2024-01-03 18:02:12 +01:00
- oci-fixed-amd
before_script:
- *prepare_build
- *prepare_www
after_script:
- *prepare_artfacts
script:
- bash builder/build-package debian bookworm;
only:
variables:
- $BUILD_JOBS == 'all' || $BUILD_JOBS =~ $CI_JOB_NAME
artifacts:
paths:
- output/
build_debian_bookworm_arm:
stage: build
allow_failure: true
tags:
2024-01-03 18:02:12 +01:00
- oci-fixed-arm
before_script:
- *prepare_build
- *prepare_www
after_script:
- *prepare_artfacts
script:
- bash builder/build-package debian bookworm;
only:
variables:
- $BUILD_JOBS == 'all' || $BUILD_JOBS =~ $CI_JOB_NAME
artifacts:
paths:
- output/
2021-03-18 11:19:28 +01:00
build_kali_rolling:
2021-01-18 20:12:23 +01:00
stage: build
allow_failure: true
tags:
2024-01-03 18:02:12 +01:00
- oci-fixed-amd
2021-03-18 11:19:28 +01:00
before_script:
- *prepare_build
- *prepare_www
2021-03-18 11:19:28 +01:00
after_script:
- *prepare_artfacts
2021-01-18 20:12:23 +01:00
script:
2021-03-18 11:19:28 +01:00
- bash builder/build-package kali kali-rolling;
only:
variables:
- $BUILD_JOBS == 'all' || $BUILD_JOBS =~ $CI_JOB_NAME
2021-01-18 20:12:23 +01:00
artifacts:
paths:
- output/
2021-03-18 11:19:28 +01:00
2022-01-19 01:27:32 +01:00
build_kali_rolling_arm:
stage: build
allow_failure: true
tags:
2024-01-03 18:02:12 +01:00
- oci-fixed-arm
2022-01-19 01:27:32 +01:00
before_script:
- *prepare_build
- *prepare_www
after_script:
- *prepare_artfacts
script:
- bash builder/build-package kali kali-rolling;
only:
variables:
- $BUILD_JOBS == 'all' || $BUILD_JOBS =~ $CI_JOB_NAME
2022-01-19 01:27:32 +01:00
artifacts:
paths:
- output/
2021-03-18 11:19:28 +01:00
build_centos7:
stage: build
allow_failure: true
tags:
2024-01-03 18:02:12 +01:00
- oci-fixed-amd
2021-03-18 11:19:28 +01:00
before_script:
- *prepare_build
- *prepare_www
2021-03-18 11:19:28 +01:00
after_script:
- *prepare_artfacts
script:
- bash builder/build-package centos core
only:
variables:
- $BUILD_JOBS == 'all' || $BUILD_JOBS =~ $CI_JOB_NAME
2021-03-18 11:19:28 +01:00
artifacts:
paths:
- output/
2022-03-26 20:49:18 +01:00
build_oracle_8:
stage: build
allow_failure: true
tags:
2024-01-03 18:02:12 +01:00
- oci-fixed-amd
2022-03-26 20:49:18 +01:00
before_script:
- *prepare_build
- *prepare_www
after_script:
- *prepare_artfacts
script:
- bash builder/build-package oracle 8;
only:
variables:
- $BUILD_JOBS == 'all' || $BUILD_JOBS =~ $CI_JOB_NAME
artifacts:
paths:
- output/
build_oracle_8_arm:
stage: build
allow_failure: true
tags:
2024-01-03 18:02:12 +01:00
- oci-fixed-arm
2022-03-26 20:49:18 +01:00
before_script:
- *prepare_build
- *prepare_www
after_script:
- *prepare_artfacts
script:
- bash builder/build-package oracle 8;
only:
variables:
- $BUILD_JOBS == 'all' || $BUILD_JOBS =~ $CI_JOB_NAME
artifacts:
paths:
- output/
build_oracle_9:
stage: build
allow_failure: true
tags:
2024-01-03 18:02:12 +01:00
- oci-fixed-amd
before_script:
- *prepare_build
- *prepare_www
after_script:
- *prepare_artfacts
script:
- bash builder/build-package oracle 9;
only:
variables:
- $BUILD_JOBS == 'all' || $BUILD_JOBS =~ $CI_JOB_NAME
artifacts:
paths:
- output/
build_oracle_9_arm:
stage: build
allow_failure: true
tags:
2024-01-03 18:02:12 +01:00
- oci-fixed-arm
before_script:
- *prepare_build
- *prepare_www
after_script:
- *prepare_artfacts
script:
- bash builder/build-package oracle 9;
only:
variables:
- $BUILD_JOBS == 'all' || $BUILD_JOBS =~ $CI_JOB_NAME
artifacts:
paths:
- output/
build_opensuse_15:
stage: build
allow_failure: true
tags:
2024-01-03 18:02:12 +01:00
- oci-fixed-amd
before_script:
- *prepare_build
- *prepare_www
after_script:
- *prepare_artfacts
script:
- bash builder/build-package opensuse 15;
only:
variables:
- $BUILD_JOBS == 'all' || $BUILD_JOBS =~ $CI_JOB_NAME
artifacts:
paths:
- output/
build_opensuse_15_arm:
stage: build
allow_failure: true
tags:
2024-01-03 18:02:12 +01:00
- oci-fixed-arm
before_script:
- *prepare_build
- *prepare_www
after_script:
- *prepare_artfacts
script:
- bash builder/build-package opensuse 15;
only:
variables:
- $BUILD_JOBS == 'all' || $BUILD_JOBS =~ $CI_JOB_NAME
artifacts:
paths:
- output/
build_fedora_thirtyseven:
stage: build
allow_failure: true
tags:
2024-01-03 18:02:12 +01:00
- oci-fixed-amd
before_script:
- *prepare_build
- *prepare_www
after_script:
- *prepare_artfacts
script:
- bash builder/build-package fedora thirtyseven;
only:
variables:
- $BUILD_JOBS == 'all' || $BUILD_JOBS =~ $CI_JOB_NAME
artifacts:
paths:
- output/
build_fedora_thirtyseven_arm:
stage: build
allow_failure: true
tags:
2024-01-03 18:02:12 +01:00
- oci-fixed-arm
before_script:
- *prepare_build
- *prepare_www
after_script:
- *prepare_artfacts
script:
- bash builder/build-package fedora thirtyseven;
only:
variables:
- $BUILD_JOBS == 'all' || $BUILD_JOBS =~ $CI_JOB_NAME
artifacts:
paths:
- output/
build_fedora_thirtyeight:
stage: build
allow_failure: true
tags:
2024-01-03 18:02:12 +01:00
- oci-fixed-amd
before_script:
- *prepare_build
- *prepare_www
after_script:
- *prepare_artfacts
script:
- bash builder/build-package fedora thirtyeight;
only:
variables:
- $BUILD_JOBS == 'all' || $BUILD_JOBS =~ $CI_JOB_NAME
artifacts:
paths:
- output/
2023-08-25 10:39:15 +02:00
build_fedora_thirtyeight_arm:
stage: build
allow_failure: true
tags:
2024-01-03 18:02:12 +01:00
- oci-fixed-arm
before_script:
- *prepare_build
- *prepare_www
after_script:
- *prepare_artfacts
script:
- bash builder/build-package fedora thirtyeight;
only:
variables:
- $BUILD_JOBS == 'all' || $BUILD_JOBS =~ $CI_JOB_NAME
artifacts:
paths:
- output/
2024-01-03 18:02:12 +01:00
build_fedora_thirtynine:
stage: build
allow_failure: true
tags:
- oci-fixed-amd
before_script:
- *prepare_build
- *prepare_www
after_script:
- *prepare_artfacts
script:
- bash builder/build-package fedora thirtynine;
only:
variables:
- $BUILD_JOBS == 'all' || $BUILD_JOBS =~ $CI_JOB_NAME
artifacts:
paths:
- output/
build_fedora_thirtynine_arm:
stage: build
allow_failure: true
tags:
- oci-fixed-arm
before_script:
- *prepare_build
- *prepare_www
after_script:
- *prepare_artfacts
script:
- bash builder/build-package fedora thirtynine;
only:
variables:
- $BUILD_JOBS == 'all' || $BUILD_JOBS =~ $CI_JOB_NAME
artifacts:
paths:
- output/
build_alpine_317:
stage: build
allow_failure: true
tags:
2024-01-03 18:02:12 +01:00
- oci-fixed-amd
before_script:
- *prepare_build
- *prepare_www
after_script:
- *prepare_artfacts
script:
- bash builder/build-package alpine 317;
only:
variables:
- $BUILD_JOBS == 'all' || $BUILD_JOBS =~ $CI_JOB_NAME
artifacts:
paths:
- output/
build_alpine_317_arm:
stage: build
allow_failure: true
tags:
2024-01-03 18:02:12 +01:00
- oci-fixed-arm
before_script:
- *prepare_build
- *prepare_www
after_script:
- *prepare_artfacts
script:
- bash builder/build-package alpine 317;
only:
variables:
- $BUILD_JOBS == 'all' || $BUILD_JOBS =~ $CI_JOB_NAME
artifacts:
paths:
- output/
2022-08-19 19:54:11 +02:00
test:
stage: test
tags:
2024-01-03 18:02:12 +01:00
- oci-fixed-amd
2022-08-19 19:54:11 +02:00
before_script:
- *prepare_build
script:
- bash builder/test-vncserver
build_alpine_318:
stage: build
allow_failure: true
tags:
2024-01-03 18:02:12 +01:00
- oci-fixed-amd
before_script:
- *prepare_build
- *prepare_www
after_script:
- *prepare_artfacts
script:
- bash builder/build-package alpine 318;
only:
variables:
- $BUILD_JOBS == 'all' || $BUILD_JOBS =~ $CI_JOB_NAME
artifacts:
paths:
- output/
2023-08-25 10:39:15 +02:00
build_alpine_318_arm:
stage: build
allow_failure: true
tags:
2024-01-03 18:02:12 +01:00
- oci-fixed-arm
before_script:
- *prepare_build
- *prepare_www
after_script:
- *prepare_artfacts
script:
- bash builder/build-package alpine 318;
only:
variables:
- $BUILD_JOBS == 'all' || $BUILD_JOBS =~ $CI_JOB_NAME
artifacts:
paths:
- output/
build_alpine_319:
stage: build
allow_failure: true
tags:
2024-01-03 18:02:12 +01:00
- oci-fixed-amd
before_script:
- *prepare_build
- *prepare_www
after_script:
- *prepare_artfacts
script:
- bash builder/build-package alpine 319;
only:
variables:
- $BUILD_JOBS == 'all' || $BUILD_JOBS =~ $CI_JOB_NAME
artifacts:
paths:
- output/
build_alpine_319_arm:
stage: build
allow_failure: true
tags:
2024-01-03 18:02:12 +01:00
- oci-fixed-arm
before_script:
- *prepare_build
- *prepare_www
after_script:
- *prepare_artfacts
script:
- bash builder/build-package alpine 319;
only:
variables:
- $BUILD_JOBS == 'all' || $BUILD_JOBS =~ $CI_JOB_NAME
artifacts:
paths:
- output/
2021-03-18 11:19:28 +01:00
upload:
stage: upload
image: ubuntu:focal
tags:
2024-01-03 18:02:12 +01:00
- oci-fixed-amd
artifacts:
paths:
- output/
2021-03-18 11:19:28 +01:00
before_script:
- . .ci/upload.sh
script:
- prepare_to_run_scripts_and_s3_uploads
- S3_CRASHPAD_BUILD_DIRECTORY="kasmvnc/crashpad/${CI_COMMIT_SHA}"
- for dbgsym_package in `find output/ -type f -name '*dbgsym*deb'`; do
deb_package=$(find_deb_package "$dbgsym_package");
xvnc_md5sum=$(fetch_xvnc_md5sum "$deb_package");
upload_filename="${S3_CRASHPAD_BUILD_DIRECTORY}/${xvnc_md5sum}/kasmvncserver-dbgsym.deb";
echo;
echo "File to upload $upload_filename";
upload_to_s3 "$dbgsym_package" "$upload_filename" "$S3_BUCKET";
rm "$dbgsym_package";
done
- export S3_BUILD_DIRECTORY="kasmvnc/${CI_COMMIT_SHA}"
2021-03-18 11:19:28 +01:00
- export RELEASE_VERSION=$(.ci/next_release_version "$CI_COMMIT_REF_NAME")
- uploaded_files=()
- for package in `find output/ -type f -name '*.deb' -or -name '*.rpm' -or -name '*.tgz'`; do
2021-03-18 11:19:28 +01:00
prepare_upload_filename "$package";
upload_filename="${S3_BUILD_DIRECTORY}/$upload_filename";
2021-03-18 11:19:28 +01:00
echo;
echo "File to upload $upload_filename";
upload_to_s3 "$package" "$upload_filename" "$S3_BUCKET";
UPLOAD_NAME=$(basename $upload_filename | sed 's#kasmvncserver_##' | sed -r 's#_([0-9]{1,3}\.){2}[0-9]{1,2}_\S+?([a-f0-9]{6})##' | sed -r 's#\.(deb|rpm|tgz)##');
curl --request POST --header "PRIVATE-TOKEN:${GITLAB_API_TOKEN}" "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/statuses/${CI_COMMIT_SHA}?state=success&name=${UPLOAD_NAME}&target_url=${S3_URL}";
uploaded_files+=("$upload_filename");
2021-03-18 11:19:28 +01:00
done
- make_index_html "${uploaded_files[@]}" > output/index.html;
upload_build_preview:
stage: upload
needs: ["upload"]
dependencies: ["upload"]
image: ubuntu:focal
tags:
2024-01-03 18:02:12 +01:00
- oci-fixed-amd
before_script:
- . .ci/upload.sh
resource_group: upload_build_preview
only:
variables:
- $CI_COMMIT_BRANCH == 'master'
script:
- prepare_to_run_scripts_and_s3_uploads
- preview_builds_dir=kasmvnc/preview-builds
- upload_to_s3 "output/index.html" "$preview_builds_dir/index.html" "$S3_BUCKET"
- curl --request POST --header "PRIVATE-TOKEN:${GITLAB_API_TOKEN}" "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/statuses/${CI_COMMIT_SHA}?state=success&name=index.html&target_url=${S3_URL}";