gitlab-ce-arm64/.gitlab-ci.yml

57 lines
2.1 KiB
YAML
Raw Normal View History

2020-07-22 14:47:20 +00:00
variables:
2021-03-17 10:15:11 +00:00
BASENAME: ${CI_PROJECT_NAME}v8
2020-07-22 14:47:20 +00:00
DOCKER_TLS_CERTDIR: ""
stages:
- check
- build
check:
image: docker:git
2020-07-22 14:47:20 +00:00
stage: check
tags:
- docker
only:
- branches
script:
- apk add --no-cache --upgrade openssh-client bash curl coreutils
- git config --global user.email $GIT_USER_EMAIL && git config --global user.name $GIT_USER_NAME
2020-12-10 02:45:55 +00:00
- mkdir -p ~/.ssh && echo "$GITLAB_SSH_PRIV_KEY" > ~/.ssh/id_rsa && ssh-keyscan -H ${CI_SERVER_HOST} > ~/.ssh/known_hosts && chmod -R 0600 ~/.ssh/
2020-11-24 09:07:19 +00:00
- git fetch --tags && ./check-version.sh && ./create-tags.sh
2020-12-10 03:45:19 +00:00
- git push --tags https://${GITLAB_USER_LOGIN}:${PERSONAL_ACCESS_TOKEN}@${CI_SERVER_HOST}/${CI_PROJECT_NAMESPACE}/${CI_PROJECT_NAME}.git
2020-07-22 14:47:20 +00:00
build:
image: arm64v8/docker:git
2020-07-22 14:47:20 +00:00
stage: build
services:
- name: arm64v8/docker:dind
2020-07-22 14:47:20 +00:00
alias: docker
tags:
- aarch64
- docker
only:
- tags
before_script:
- docker info
script:
- apk add --no-cache --upgrade bash coreutils
# fetch dockerfile
- BRANCH_NAME=$(echo ${CI_COMMIT_TAG} | sed 's/\-/\+/') && echo ${BRANCH_NAME}
2020-12-10 05:34:47 +00:00
- git clone -b ${BRANCH_NAME} --depth=1 https://gitlab.com/gitlab-org/omnibus-gitlab.git
2020-07-22 14:47:20 +00:00
- cd ./omnibus-gitlab/docker
# write RELEASE
2020-11-24 09:07:19 +00:00
- echo "PACKAGECLOUD_REPO=gitlab-ce" > RELEASE && echo "RELEASE_PACKAGE=gitlab-ce" >> RELEASE && echo "RELEASE_VERSION=${CI_COMMIT_TAG}" >> RELEASE && echo "DOWNLOAD_URL=https://packages.gitlab.com/gitlab/gitlab-ce/packages/ubuntu/focal/gitlab-ce_${CI_COMMIT_TAG}_arm64.deb/download.deb" >> RELEASE
2021-01-11 13:45:36 +00:00
# ubuntu:focal as base image
- sed -i 's/^FROM ubuntu.*/FROM ubuntu\:focal/' Dockerfile
# missing package libatomic1 after version 13
- sed -i 's/\-recommends/\-recommends libatomic1/' Dockerfile
# debian has /etc/os-release instead of /etc/lsb-release
- sed -i 's/lsb-release/os-release/' assets/setup
# build
- docker build -t ${DOCKER_NS}/${BASENAME}:${CI_COMMIT_TAG} -f Dockerfile ./
2020-07-22 14:47:20 +00:00
# latest tag
2020-11-24 09:07:19 +00:00
- cd ../../ && git fetch --tags && ./latest-tag.sh
2020-07-22 14:47:20 +00:00
# docker push
- docker login --username ${DOCKER_USERNAME} --password ${DOCKER_PASSWORD}
2021-07-09 02:52:49 +00:00
- docker images && docker push -a ${DOCKER_NS}/${BASENAME}