fluffychat/.gitlab-ci.yml

412 lines
12 KiB
YAML
Raw Permalink Normal View History

2022-04-17 08:58:52 +02:00
variables:
FLUTTER_VERSION: 3.10.0
2020-01-01 19:10:52 +01:00
image: ghcr.io/cirruslabs/flutter:${FLUTTER_VERSION}
.shared_windows_runners:
tags:
2021-03-06 09:33:06 +01:00
- shared-windows
- windows
- windows-1809
2020-01-01 19:10:52 +01:00
stages:
- test
- build
2021-03-06 09:33:06 +01:00
- deploy
2020-01-01 19:10:52 +01:00
code_analyze:
stage: test
script:
- flutter pub get
- dart run import_sorter:main --no-comments --exit-if-changed
- dart format lib/ test/ --set-exit-if-changed
- flutter analyze
- git apply ./scripts/enable-android-google-services.patch
- flutter pub get
- flutter analyze
- flutter pub run dart_code_metrics:metrics lib -r gitlab > code-quality-report.json || true
2021-10-16 09:59:38 +02:00
artifacts:
reports:
codequality: code-quality-report.json
2020-01-01 19:10:52 +01:00
widget_test:
stage: test
2023-05-15 19:14:03 +02:00
script: [flutter test]
2020-01-01 19:10:52 +01:00
# the basic integration test configuration testing FLOSS builds on Synapse
.integration_test:
2022-04-17 08:58:52 +02:00
image: registry.gitlab.com/famedly/company/frontend/flutter-dockerimages/integration/stable:${FLUTTER_VERSION}
stage: test
2022-06-20 15:35:22 +02:00
services:
- name: docker:dind
alias: docker
parallel:
matrix:
- HOMESERVER_IMPLEMENTATION:
- synapse
- dendrite
- conduit
variables:
# activate container-to-container networking
FF_NETWORK_PER_BUILD: "true"
# Tell docker CLI how to talk to Docker daemon.
DOCKER_HOST: tcp://docker:2375/
# Use the btrfs driver for improved performance.
DOCKER_DRIVER: btrfs
# Disable TLS since we're running inside local network.
DOCKER_TLS_CERTDIR: ""
HOMESERVER: docker
2022-04-17 08:58:52 +02:00
before_script:
- scripts/integration-prepare-host.sh
# create test user environment variables
- source scripts/integration-create-environment-variables.sh
# create Synapse instance
- scripts/integration-server-${HOMESERVER_IMPLEMENTATION}.sh
# properly set the homeserver IP and create test users
- scripts/integration-prepare-homeserver.sh
script:
# start AVD and keep running in background
- scripts/integration-start-avd.sh &
- flutter pub get
- scrcpy --no-display --record video.mkv &
- flutter test integration_test --dart-define=HOMESERVER=$HOMESERVER --dart-define=USER1_NAME=$USER1_NAME --dart-define=USER2_NAME=$USER2_NAME --dart-define=USER1_PW=$USER1_PW --dart-define=USER2_PW=$USER2_PW || ( sleep 10 && exit 1 )
after_script:
- ffmpeg -i video.mkv -vf scale=iw/2:-2 -crf 40 -b:v 2000k -preset fast video.mp4 || true
timeout: 30m
retry: 2
only:
- tags
artifacts:
when: always
paths:
- video.mp4
2022-12-17 08:08:51 +01:00
tags:
- docker
- famedly
# integration tests for Linux builds
### disabled because of Linux headless issues
.integration_test_linux:
extends: .integration_test
parallel:
matrix:
- HOMESERVER_IMPLEMENTATION:
- conduit
script:
- apt-get update
- apt-get install -y clang cmake ninja-build pkg-config libgtk-3-dev liblzma-dev libsecret-1-dev libjsoncpp-dev
- flutter pub get
- flutter test integration_test -d linux --dart-define=HOMESERVER=$HOMESERVER --dart-define=USER1_NAME=$USER1_NAME --dart-define=USER2_NAME=$USER2_NAME --dart-define=USER1_PW=$USER1_PW --dart-define=USER2_PW=$USER2_PW || ( sleep 10 && exit 1 )
2023-05-15 19:14:03 +02:00
after_script: []
artifacts:
# extending the default tests to test the Google-flavored builds
.integration_test_proprietary:
extends: .integration_test
parallel:
matrix:
- HOMESERVER_IMPLEMENTATION:
- conduit
script:
# start AVD and keep running in background
- scripts/integration-start-avd.sh &
- git apply ./scripts/enable-android-google-services.patch
2022-04-17 08:58:52 +02:00
- flutter pub get
- scrcpy --no-display --record video.mkv &
- flutter test integration_test --dart-define=HOMESERVER=$HOMESERVER --dart-define=USER1_NAME=$USER1_NAME --dart-define=USER2_NAME=$USER2_NAME --dart-define=USER1_PW=$USER1_PW --dart-define=USER2_PW=$USER2_PW || ( sleep 10 && exit 1 )
release_mode_launches:
parallel:
matrix:
- FLAVOR:
- floss
- proprietary
image: registry.gitlab.com/famedly/company/frontend/flutter-dockerimages/integration/stable:${FLUTTER_VERSION}
stage: test
before_script:
- |
if [ "$FLAVOR" == "proprietary" ]; then
git apply ./scripts/enable-android-google-services.patch
fi
script:
# start AVD and keep running in background
- scripts/integration-start-avd.sh &
# generate temporary release build configuration and ensure app launches
- scripts/integration-check-release-build.sh
2022-04-17 08:58:52 +02:00
timeout: 20m
only:
- tags
2022-12-17 08:08:51 +01:00
tags:
- docker
- famedly
2022-04-17 08:58:52 +02:00
2020-01-01 19:10:52 +01:00
build_web:
stage: build
2021-03-06 09:33:06 +01:00
before_script:
2023-05-15 19:14:03 +02:00
[sudo apt update && sudo apt install curl -y, ./scripts/prepare-web.sh]
script:
- flutter build web --release --verbose --source-maps
2020-01-01 19:10:52 +01:00
artifacts:
paths:
- build/web/
# yes, we *do* build a Windows DLL on Linux. More reliable.
build_olm_windows:
image: archlinux:latest
stage: test
before_script:
- pacman-key --init
- pacman --noconfirm -Sy mingw-w64 cmake git base-devel
script:
- ./scripts/build-olm-windows.sh
- mv olm/build/libolm.dll .
artifacts:
paths:
- libolm.dll
2023-02-02 12:20:22 +01:00
allow_failure: true
only:
- main
- tags
2021-07-24 12:58:06 +02:00
build_windows:
extends:
- .shared_windows_runners
stage: test
before_script:
- ./scripts/prepare-windows.ps1
# workarounding artifacts download being broken
- $response = Invoke-WebRequest -Uri "$CI_API_V4_URL/projects/$CI_PROJECT_ID/pipelines/$CI_PIPELINE_ID/jobs" -UseBasicParsing
- $jobs = $response | ConvertFrom-Json
- $job = $jobs | where { $_.name -eq "build_olm_windows" }
- $jobId = $job.id
- Invoke-WebRequest -Uri "$CI_API_V4_URL/projects/$CI_PROJECT_ID/jobs/$jobId/artifacts/libolm.dll" -UseBasicParsing -OutFile libolm.dll
script:
- ./scripts/build-windows.ps1
- Copy-Item -Path "libolm.dll" -Destination "build/windows/runner/Release"
- ./scripts/package-windows.ps1
2021-07-24 12:58:06 +02:00
artifacts:
paths:
- build/windows/runner/Release
2023-02-02 12:20:22 +01:00
allow_failure: true
only:
- main
- tags
2020-01-01 19:10:52 +01:00
2020-09-13 10:30:11 +02:00
build_android_debug:
stage: build
2023-05-15 19:14:03 +02:00
script: [flutter build apk --debug]
2020-05-23 10:52:11 +02:00
artifacts:
when: on_success
paths:
2020-05-23 11:05:05 +02:00
- build/app/outputs/apk/debug/app-debug.apk
tags:
- docker
- famedly
2020-05-23 10:52:11 +02:00
except:
2020-09-09 14:16:40 +02:00
- main
2020-11-22 11:04:47 +01:00
- tags
2020-05-23 10:52:11 +02:00
2020-02-11 07:58:50 +01:00
build_android_apk:
stage: build
before_script:
- git apply ./scripts/enable-android-google-services.patch
- ./scripts/prepare-android-release.sh
2023-05-15 19:14:03 +02:00
script: [flutter build apk --release]
2020-01-01 19:10:52 +01:00
artifacts:
when: on_success
paths:
- build/app/outputs/apk/release/app-release.apk
tags:
- docker
- famedly
only:
2020-09-09 14:16:40 +02:00
- main
- tags
deploy_playstore_internal:
stage: deploy
before_script:
- git apply ./scripts/enable-android-google-services.patch
- ./scripts/prepare-android-release.sh
2023-05-15 19:14:03 +02:00
script: [./scripts/release-playstore-beta.sh]
artifacts:
when: on_success
paths:
2020-09-13 10:30:11 +02:00
- build/android/app-release.aab
2020-11-22 11:04:47 +01:00
resource_group: playstore_release
tags:
- docker
- famedly
only:
2020-09-09 14:16:40 +02:00
- main
2020-12-18 11:43:13 +01:00
fdroid_repo:
image: debian:testing
stage: deploy
before_script:
- apt-get update && apt-get -qy install fdroidserver wget curl jq --no-install-recommends || true
- ./scripts/prepare-fdroid.sh || true
script:
- ./scripts/create_fdroid_repos.sh || true
artifacts:
when: always
paths:
- repo
needs:
- "build_android_apk"
resource_group: playstore_release
allow_failure: true
only:
- main
2020-01-01 19:10:52 +01:00
pages:
needs:
- "build_web"
- "fdroid_repo"
2020-11-21 11:36:13 +01:00
stage: deploy
image: node:alpine
before_script:
- apk update
- apk add jq unzip curl wget bash
2020-12-24 11:31:58 +01:00
script:
- cd docs
2021-11-05 09:53:27 +01:00
- npx tailwindcss -o ./tailwind.css --minify
2020-12-24 11:31:58 +01:00
- cd ..
2021-11-05 09:53:27 +01:00
- mv docs public
- mv repo public || true
- mv build/web/ public/web
2020-01-01 19:10:52 +01:00
artifacts:
paths:
- public
only:
2020-09-09 14:16:40 +02:00
- main
2020-10-06 16:31:52 +02:00
2021-04-25 10:54:48 +02:00
build_linux_x86:
stage: build
2023-05-15 19:14:03 +02:00
image: registry.gitlab.com/famedly/company/frontend/flutter-dockerimages/flutter-linux/stable:${FLUTTER_VERSION}
2021-03-06 09:33:06 +01:00
before_script:
- sudo apt-get update
- sudo apt-get install curl clang cmake ninja-build pkg-config libgtk-3-dev libblkid-dev liblzma-dev libjsoncpp-dev cmake-data libsecret-1-dev libsecret-1-0 librhash0 -y
script: [flutter build linux --release]
tags:
- docker
- famedly
2020-10-04 18:39:07 +02:00
artifacts:
when: on_success
2020-10-06 16:31:52 +02:00
paths:
2021-05-28 22:08:10 +02:00
- build/linux/x64/release/bundle/
2021-04-25 10:54:48 +02:00
build_linux_arm64:
stage: build
before_script:
- flutter upgrade $FLUTTER_VERSION --force
script: [flutter build linux --release]
2023-05-15 19:14:03 +02:00
tags: [docker_arm64]
2021-05-01 19:21:29 +02:00
only:
- main
- tags
2021-06-18 12:36:08 +02:00
allow_failure: true
2021-04-25 10:54:48 +02:00
artifacts:
when: on_success
paths:
- build/linux/arm64/release/bundle/
update_dependencies:
stage: build
2023-05-15 19:14:03 +02:00
needs: []
only:
- schedules
variables:
HOST: ${CI_PROJECT_URL}
UPDATE_BRANCH: ci-bot/dependency-updates
PRIVATE_TOKEN: ${GITLAB_API_TOKEN}
before_script:
- eval $(ssh-agent -s)
- echo "$SSH_PRIVATE_BOT_KEY" | tr -d '\r' | ssh-add - > /dev/null
- mkdir -p ~/.ssh
- chmod 700 ~/.ssh
2020-11-21 11:36:13 +01:00
- ssh-keyscan -t rsa gitlab.com >> ~/.ssh/known_hosts
- chmod 644 ~/.ssh/known_hosts
- git config --global user.email "bot@fluffy.chat"
- git config --global user.name "Dependency Update Bot"
- sudo apt-get update && sudo apt-get install -y curl
script:
2020-11-21 11:36:13 +01:00
- ./scripts/update-dependencies.sh
- git remote set-url --push origin git@gitlab.com:$CI_PROJECT_PATH
- 'git diff --exit-code || (git checkout -B ${UPDATE_BRANCH} && git add . && git commit -m "chore: Update dependencies" && git push -f origin ${UPDATE_BRANCH} && ./scripts/open-mr.sh)'
.release:
stage: deploy
image: curlimages/curl:latest
rules:
- if: '$CI_COMMIT_TAG =~ /^v\d+\.\d+\.\d+$/'
2021-12-05 14:21:47 +01:00
- if: '$CI_COMMIT_TAG =~ /^rc\d+\.\d+\.\d+-\d+$/'
before_script:
2021-12-05 09:13:23 +01:00
- export RELEASE_TYPE=$(echo $CI_COMMIT_TAG | grep -oE "[a-z]+")
- export RELEASE_VERSION=$(echo $CI_COMMIT_TAG | grep -oE "\d+\.\d+\.\d+")
- export PACKAGE_REGISTRY_URL="${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/generic/fluffychat/${RELEASE_VERSION}"
upload_android:
extends: .release
script:
- |
curl --fail-with-body --header "JOB-TOKEN: ${CI_JOB_TOKEN}" --upload-file build/app/outputs/apk/release/app-release.apk ${PACKAGE_REGISTRY_URL}/fluffychat.apk
upload_web:
extends: .release
script:
- tar czf package.tar.gz -C build/web/ .
- |
curl --fail-with-body --header "JOB-TOKEN: ${CI_JOB_TOKEN}" --upload-file package.tar.gz ${PACKAGE_REGISTRY_URL}/fluffychat-web.tar.gz
upload_linux_x86:
extends: .release
script:
2021-05-26 10:10:07 +02:00
- tar czf package.tar.gz -C build/linux/x64/release/bundle/ .
- |
curl --fail-with-body --header "JOB-TOKEN: ${CI_JOB_TOKEN}" --upload-file package.tar.gz ${PACKAGE_REGISTRY_URL}/fluffychat-linux-x86.tar.gz
upload_linux_arm64:
2021-04-25 10:54:48 +02:00
extends: .release
script:
- tar czf package.tar.gz -C build/linux/arm64/release/bundle/ .
- |
curl --fail-with-body --header "JOB-TOKEN: ${CI_JOB_TOKEN}" --upload-file package.tar.gz ${PACKAGE_REGISTRY_URL}/fluffychat-linux-arm64.tar.gz
allow_failure: true
upload_windows:
2021-07-25 00:49:42 +02:00
extends: .release
2021-08-04 09:30:11 +02:00
image: alpine:latest
2021-07-25 00:49:42 +02:00
script:
2021-08-04 09:30:11 +02:00
- apk add --no-cache curl zip
- mv build/windows/runner/Release/fluffychat.msix fluffychat.msix
2021-08-04 09:30:11 +02:00
- cd build/windows/runner/Release; zip -r ../../../../package.zip . ; cd -
2021-07-25 00:49:42 +02:00
- |
curl --fail-with-body --header "JOB-TOKEN: ${CI_JOB_TOKEN}" --upload-file package.zip ${PACKAGE_REGISTRY_URL}/fluffychat-windows.zip
curl --fail-with-body --header "JOB-TOKEN: ${CI_JOB_TOKEN}" --upload-file fluffychat.msix ${PACKAGE_REGISTRY_URL}/fluffychat-windows.msix
allow_failure: true
deploy_playstore:
stage: deploy
before_script:
- git apply ./scripts/enable-android-google-services.patch
- ./scripts/prepare-android-release.sh
2023-05-15 19:14:03 +02:00
script: [./scripts/release-playstore.sh]
2020-11-22 11:04:47 +01:00
resource_group: playstore_release
2021-04-09 17:37:39 +02:00
only:
- tags
2020-11-22 11:04:47 +01:00
release:
extends: .release
image: registry.gitlab.com/gitlab-org/release-cli:latest
script:
- |
release-cli create --name "Release ${CI_COMMIT_TAG}" --tag-name $CI_COMMIT_TAG \
--assets-link "{\"name\":\"fluffychat.apk\",\"url\":\"${PACKAGE_REGISTRY_URL}/fluffychat.apk\"}" \
2021-06-12 13:28:54 +02:00
--assets-link "{\"name\":\"fluffychat-linux-x86.tar.gz\",\"url\":\"${PACKAGE_REGISTRY_URL}/fluffychat-linux-x86.tar.gz\"}" \
--assets-link "{\"name\":\"fluffychat-linux-arm64.tar.gz\",\"url\":\"${PACKAGE_REGISTRY_URL}/fluffychat-linux-arm64.tar.gz\"}" \
2021-07-25 00:49:42 +02:00
--assets-link "{\"name\":\"fluffychat-windows.zip\",\"url\":\"${PACKAGE_REGISTRY_URL}/fluffychat-windows.zip\"}" \
--assets-link "{\"name\":\"fluffychat-windows.msix\",\"url\":\"${PACKAGE_REGISTRY_URL}/fluffychat-windows.msix\"}" \
2020-11-14 11:29:47 +01:00
--assets-link "{\"name\":\"fluffychat-web.tar.gz\",\"url\":\"${PACKAGE_REGISTRY_URL}/fluffychat-web.tar.gz\"}"