2022-12-16 12:55:17 +00:00
|
|
|
cache:
|
|
|
|
key: one-key-to-rule-them-all
|
|
|
|
|
2022-12-28 10:54:01 +00:00
|
|
|
build:docker:
|
|
|
|
image: docker:dind
|
|
|
|
interruptible: true
|
|
|
|
stage: build
|
|
|
|
rules:
|
|
|
|
- if: $CI_COMMIT_BRANCH != $CI_DEFAULT_BRANCH
|
|
|
|
tags: [ docker ]
|
|
|
|
before_script:
|
|
|
|
- echo "COMMIT=${CI_COMMIT_SHA}" >> version.env # COMMIT=`git rev-parse HEAD`
|
|
|
|
script:
|
|
|
|
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
|
|
|
|
- docker build . --tag ${CI_REGISTRY}/${CI_PROJECT_PATH}/${CI_BUILD_REF_NAME}:${CI_BUILD_REF}
|
|
|
|
- docker push ${CI_REGISTRY}/${CI_PROJECT_PATH}/${CI_BUILD_REF_NAME}:${CI_BUILD_REF}
|
|
|
|
|
2022-12-28 14:24:04 +00:00
|
|
|
build:apt:
|
2022-12-22 09:41:07 +00:00
|
|
|
image: debian:bookworm-slim # just to get "python3-jose" working
|
|
|
|
stage: build
|
|
|
|
before_script:
|
|
|
|
- apt-get update -qq && apt-get install -qq -y build-essential
|
|
|
|
# create build directory for .deb sources
|
|
|
|
- mkdir build
|
|
|
|
# copy install instructions
|
2022-12-28 20:40:26 +00:00
|
|
|
- cp -r .DEBIAN build/DEBIAN
|
2022-12-28 06:40:44 +00:00
|
|
|
# copy app into "/usr/share/fastapi-dls" as "/usr/share/fastapi-dls/app" & copy README.md and version.env
|
2022-12-28 07:25:31 +00:00
|
|
|
- mkdir -p build/usr/share/fastapi-dls
|
|
|
|
- cp -r app build/usr/share/fastapi-dls
|
2022-12-28 06:40:44 +00:00
|
|
|
- cp README.md version.env build/usr/share/fastapi-dls
|
2022-12-27 09:04:26 +00:00
|
|
|
# create conf file
|
2022-12-27 09:05:52 +00:00
|
|
|
- mkdir -p build/etc/fastapi-dls
|
2022-12-27 09:04:26 +00:00
|
|
|
- touch build/etc/fastapi-dls/env
|
2022-12-27 09:16:04 +00:00
|
|
|
# cd into "build/"
|
|
|
|
- cd build/
|
2022-12-22 09:41:07 +00:00
|
|
|
script:
|
2022-12-27 09:16:04 +00:00
|
|
|
- dpkg -b . build.deb
|
2022-12-22 09:41:07 +00:00
|
|
|
artifacts:
|
|
|
|
expire_in: 1 week
|
|
|
|
paths:
|
2022-12-27 09:19:35 +00:00
|
|
|
- build/build.deb
|
2022-12-22 09:41:07 +00:00
|
|
|
|
2022-12-28 14:24:04 +00:00
|
|
|
build:pamac:
|
|
|
|
image: archlinux:base-devel
|
|
|
|
stage: build
|
|
|
|
rules:
|
|
|
|
- if: $CI_COMMIT_BRANCH == "archlinux-makepkg"
|
2022-12-28 14:57:55 +00:00
|
|
|
before_script:
|
2022-12-28 20:15:32 +00:00
|
|
|
- pacman -Syu --noconfirm git
|
2022-12-28 20:20:19 +00:00
|
|
|
# "makepkg" don't likes root user
|
2022-12-28 14:57:55 +00:00
|
|
|
- useradd --no-create-home --shell=/bin/false build && usermod -L build
|
|
|
|
- 'echo "build ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers'
|
|
|
|
- 'echo "root ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers'
|
|
|
|
- chown -R build:build .
|
2022-12-28 20:20:19 +00:00
|
|
|
# move .PKGBUILD contents to root directory
|
|
|
|
- mv .PKGBUILD/* .
|
2022-12-28 14:24:04 +00:00
|
|
|
script:
|
2022-12-28 20:20:19 +00:00
|
|
|
- pwd
|
2022-12-28 20:14:14 +00:00
|
|
|
# download dependencies
|
|
|
|
- source PKGBUILD && pacman -Syu --noconfirm --needed --asdeps "${makedepends[@]}" "${depends[@]}"
|
|
|
|
# build
|
2022-12-28 20:13:20 +00:00
|
|
|
- sudo -u build makepkg -s
|
2022-12-28 20:20:19 +00:00
|
|
|
artifacts:
|
|
|
|
expire_in: 1 week
|
|
|
|
paths:
|
|
|
|
- "*.pkg.tar.zst"
|
2022-12-28 14:24:04 +00:00
|
|
|
|
2022-12-23 12:48:48 +00:00
|
|
|
test:
|
|
|
|
image: python:3.10-slim-bullseye
|
|
|
|
stage: test
|
2022-12-23 10:24:40 +00:00
|
|
|
variables:
|
|
|
|
DATABASE: sqlite:///../app/db.sqlite
|
2022-12-23 12:48:48 +00:00
|
|
|
before_script:
|
|
|
|
- pip install -r requirements.txt
|
|
|
|
- pip install pytest httpx
|
|
|
|
- mkdir -p app/cert
|
|
|
|
- openssl genrsa -out app/cert/instance.private.pem 2048
|
|
|
|
- openssl rsa -in app/cert/instance.private.pem -outform PEM -pubout -out app/cert/instance.public.pem
|
|
|
|
- cd test
|
|
|
|
script:
|
|
|
|
- pytest main.py
|
|
|
|
|
2022-12-28 13:31:11 +00:00
|
|
|
.test:linux:
|
2022-12-16 12:55:17 +00:00
|
|
|
stage: test
|
2022-12-22 09:41:07 +00:00
|
|
|
needs:
|
2022-12-28 14:24:04 +00:00
|
|
|
- job: build:apt
|
2022-12-22 09:41:07 +00:00
|
|
|
artifacts: true
|
2022-12-28 13:31:11 +00:00
|
|
|
variables:
|
|
|
|
DEBIAN_FRONTEND: noninteractive
|
2022-12-22 09:41:07 +00:00
|
|
|
before_script:
|
2022-12-27 11:40:33 +00:00
|
|
|
- apt-get update -qq && apt-get install -qq -y jq
|
2022-12-16 12:55:17 +00:00
|
|
|
script:
|
2022-12-22 09:41:07 +00:00
|
|
|
# test installation
|
2022-12-27 09:23:51 +00:00
|
|
|
- apt-get install -q -y ./build/build.deb --fix-missing
|
2022-12-27 11:40:33 +00:00
|
|
|
# copy example config from GitLab-CI-Variables
|
|
|
|
#- cat ${EXAMPLE_CONFIG} > /etc/fastapi-dls/env
|
|
|
|
# start service in background
|
2022-12-27 11:35:07 +00:00
|
|
|
- uvicorn --host 127.0.0.1 --port 443
|
|
|
|
--app-dir /usr/share/fastapi-dls/app
|
|
|
|
--ssl-keyfile /etc/fastapi-dls/webserver.key
|
|
|
|
--ssl-certfile /opt/fastapi-dls/webserver.crt
|
2022-12-27 11:32:40 +00:00
|
|
|
--proxy-headers &
|
|
|
|
- FASTAPI_DLS_PID=$!
|
2022-12-27 11:35:07 +00:00
|
|
|
- echo "Started service with pid $FASTAPI_DLS_PID"
|
2022-12-27 11:40:33 +00:00
|
|
|
# testing service
|
|
|
|
- if [ "`curl --insecure -s https://127.0.0.1/status | jq .status`" != "up" ]; then echo "Success"; else "Error"; fi
|
|
|
|
# cleanup
|
2022-12-27 11:32:40 +00:00
|
|
|
- kill $FASTAPI_DLS_PID
|
2022-12-22 09:41:07 +00:00
|
|
|
- apt-get purge -qq -y fastapi-dls
|
|
|
|
- apt-get autoremove -qq -y && apt-get clean -qq
|
2022-12-16 12:55:17 +00:00
|
|
|
|
2022-12-28 13:31:11 +00:00
|
|
|
test:debian:
|
|
|
|
extends: .test:linux
|
|
|
|
image: debian:bookworm-slim
|
|
|
|
|
|
|
|
test:ubuntu:
|
|
|
|
extends: .test:linux
|
|
|
|
image: ubuntu:22.10
|
|
|
|
|
2022-12-27 11:49:12 +00:00
|
|
|
deploy:docker:
|
2022-12-16 12:55:17 +00:00
|
|
|
stage: deploy
|
|
|
|
rules:
|
|
|
|
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
2022-12-28 11:08:13 +00:00
|
|
|
- changes:
|
|
|
|
- Dockerfile
|
|
|
|
- requirements.txt
|
|
|
|
- app/**/*
|
2022-12-21 09:48:36 +00:00
|
|
|
before_script:
|
2022-12-21 10:06:09 +00:00
|
|
|
- echo "COMMIT=${CI_COMMIT_SHA}" >> version.env
|
2022-12-21 09:48:36 +00:00
|
|
|
- source version.env
|
2022-12-21 10:11:55 +00:00
|
|
|
- echo "Building docker image for commit ${COMMIT} with version ${VERSION}"
|
2022-12-16 12:55:17 +00:00
|
|
|
script:
|
2022-12-22 09:31:40 +00:00
|
|
|
- echo "GitLab-Registry"
|
|
|
|
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
|
|
|
|
- docker build . --tag ${CI_REGISTRY}/${CI_PROJECT_PATH}/${CI_BUILD_REF_NAME}:${VERSION}
|
|
|
|
- docker build . --tag ${CI_REGISTRY}/${CI_PROJECT_PATH}/${CI_BUILD_REF_NAME}:latest
|
|
|
|
- docker push ${CI_REGISTRY}/${CI_PROJECT_PATH}/${CI_BUILD_REF_NAME}:${VERSION}
|
|
|
|
- docker push ${CI_REGISTRY}/${CI_PROJECT_PATH}/${CI_BUILD_REF_NAME}:latest
|
|
|
|
- echo "Docker-Hub"
|
2022-12-20 08:01:31 +00:00
|
|
|
- docker login -u $PUBLIC_REGISTRY_USER -p $PUBLIC_REGISTRY_TOKEN
|
2022-12-21 09:48:36 +00:00
|
|
|
- docker build . --tag $PUBLIC_REGISTRY_USER/${CI_PROJECT_NAME}:${VERSION}
|
2022-12-20 08:08:45 +00:00
|
|
|
- docker build . --tag $PUBLIC_REGISTRY_USER/${CI_PROJECT_NAME}:latest
|
2022-12-21 09:48:36 +00:00
|
|
|
- docker push $PUBLIC_REGISTRY_USER/${CI_PROJECT_NAME}:${VERSION}
|
2022-12-20 08:08:45 +00:00
|
|
|
- docker push $PUBLIC_REGISTRY_USER/${CI_PROJECT_NAME}:latest
|
2022-12-27 11:49:12 +00:00
|
|
|
|
2022-12-28 16:05:59 +00:00
|
|
|
deploy:apt:
|
2022-12-27 12:27:27 +00:00
|
|
|
# doc: https://git.collinwebdesigns.de/help/user/packages/debian_repository/index.md#install-a-package
|
2022-12-27 11:49:12 +00:00
|
|
|
image: debian:bookworm-slim
|
|
|
|
stage: deploy
|
2022-12-28 11:08:13 +00:00
|
|
|
rules:
|
|
|
|
#- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
|
|
- changes:
|
2022-12-28 20:40:26 +00:00
|
|
|
- .DEBIAN/**/*
|
2022-12-28 11:08:13 +00:00
|
|
|
- app/**/*
|
2022-12-27 11:49:12 +00:00
|
|
|
needs:
|
2022-12-28 14:24:04 +00:00
|
|
|
- job: build:apt
|
2022-12-27 11:49:12 +00:00
|
|
|
artifacts: true
|
|
|
|
before_script:
|
2022-12-27 12:27:27 +00:00
|
|
|
- apt-get update -qq && apt-get install -qq -y curl lsb-release
|
|
|
|
# create distribution initial
|
|
|
|
- CODENAME=`lsb_release -cs`
|
2022-12-27 12:34:21 +00:00
|
|
|
# create repo if not exists
|
|
|
|
- 'if [ "`curl -s -o /dev/null -w "%{http_code}" --header "JOB-TOKEN: $CI_JOB_TOKEN" -s ${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/debian_distributions/${CODENAME}/key.asc`" != "200" ]; then curl --request POST --header "JOB-TOKEN: $CI_JOB_TOKEN" "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/debian_distributions?codename=${CODENAME}"; fi'
|
2022-12-27 11:49:12 +00:00
|
|
|
script:
|
|
|
|
# Naming format: <name>_<version>-<release>_<arch>.deb
|
|
|
|
# Version is the version number of the app being packaged
|
|
|
|
# Release number is the version number of the *packaging* itself.
|
|
|
|
# The release number might increment if the package maintainer
|
|
|
|
# updated the packaging, while the version number of the application
|
|
|
|
# being packaged did not change.
|
2022-12-27 11:56:46 +00:00
|
|
|
- BUILD_NAME=build/build.deb # inherited by build-stage
|
|
|
|
- PACKAGE_NAME=`dpkg -I ${BUILD_NAME} | grep "Package:" | awk '{ print $2 }'`
|
|
|
|
- PACKAGE_VERSION=`dpkg -I ${BUILD_NAME} | grep "Version:" | awk '{ print $2 }'`
|
2022-12-27 11:49:12 +00:00
|
|
|
- PACKAGE_ARCH=amd64
|
2022-12-27 13:52:17 +00:00
|
|
|
#- EXPORT_NAME="${PACKAGE_NAME}_${PACKAGE_VERSION}-0_${PACKAGE_ARCH}.deb"
|
|
|
|
- EXPORT_NAME="${PACKAGE_NAME}_${PACKAGE_VERSION}_${PACKAGE_ARCH}.deb"
|
2022-12-27 11:49:12 +00:00
|
|
|
- mv ${BUILD_NAME} ${EXPORT_NAME}
|
|
|
|
- 'echo "PACKAGE_NAME: ${PACKAGE_NAME}"'
|
|
|
|
- 'echo "PACKAGE_VERSION: ${PACKAGE_VERSION}"'
|
|
|
|
- 'echo "PACKAGE_ARCH: ${PACKAGE_ARCH}"'
|
|
|
|
- 'echo "EXPORT_NAME: ${EXPORT_NAME}"'
|
|
|
|
# https://docs.gitlab.com/14.3/ee/user/packages/debian_repository/index.html
|
|
|
|
- URL="${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/debian/${EXPORT_NAME}"
|
|
|
|
- 'echo "URL: ${URL}"'
|
2022-12-27 12:45:31 +00:00
|
|
|
#- 'curl --request PUT --header "JOB-TOKEN: $CI_JOB_TOKEN" --upload-file ${EXPORT_NAME} ${URL}'
|
2022-12-27 20:58:08 +00:00
|
|
|
# using generic-package-registry until debian-registry is GA
|
|
|
|
# https://docs.gitlab.com/ee/user/packages/generic_packages/index.html#publish-a-generic-package-by-using-cicd
|
|
|
|
- 'curl --header "JOB-TOKEN: $CI_JOB_TOKEN" --upload-file ${EXPORT_NAME} "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/generic/${PACKAGE_NAME}/${PACKAGE_VERSION}/${EXPORT_NAME}"'
|