2020-08-31 20:44:32 +02:00
|
|
|
image:
|
2021-05-30 13:55:05 +02:00
|
|
|
name: cirrusci/flutter
|
2020-01-01 19:10:52 +01:00
|
|
|
|
2020-02-19 17:32:34 +01:00
|
|
|
variables:
|
|
|
|
GIT_SUBMODULE_STRATEGY: recursive
|
|
|
|
|
2020-10-04 16:06:34 +02:00
|
|
|
.shared_windows_runners:
|
|
|
|
tags:
|
2021-03-06 09:33:06 +01:00
|
|
|
- shared-windows
|
|
|
|
- windows
|
|
|
|
- windows-1809
|
2020-10-04 16:06:34 +02:00
|
|
|
|
2020-01-01 19:10:52 +01:00
|
|
|
stages:
|
2021-03-06 09:33:06 +01:00
|
|
|
- coverage
|
|
|
|
- release
|
|
|
|
- deploy
|
2020-01-01 19:10:52 +01:00
|
|
|
|
|
|
|
code_analyze:
|
|
|
|
stage: coverage
|
2020-11-21 11:36:13 +01:00
|
|
|
script: [./scripts/code_analyze.sh]
|
2020-01-01 19:10:52 +01:00
|
|
|
|
2020-01-04 09:37:09 +01:00
|
|
|
test:
|
|
|
|
stage: coverage
|
2020-11-21 11:36:13 +01:00
|
|
|
script: [flutter test]
|
2020-01-01 19:10:52 +01:00
|
|
|
|
|
|
|
build_web:
|
|
|
|
stage: coverage
|
2021-03-06 09:33:06 +01:00
|
|
|
before_script:
|
|
|
|
[sudo apt update && sudo apt install curl -y, ./scripts/prepare-web.sh]
|
2020-11-21 11:36:13 +01:00
|
|
|
script: [./scripts/build-web.sh]
|
2020-01-01 19:10:52 +01:00
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- build/web/
|
|
|
|
|
2021-07-24 12:58:06 +02:00
|
|
|
build_windows:
|
|
|
|
extends:
|
|
|
|
- .shared_windows_runners
|
|
|
|
stage: coverage
|
|
|
|
before_script: [./scripts/prepare-windows.ps1]
|
|
|
|
script: [./scripts/build-windows.ps1]
|
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- build/windows/runner/Release
|
|
|
|
allow_failure: true
|
2020-01-01 19:10:52 +01:00
|
|
|
|
2020-09-13 10:30:11 +02:00
|
|
|
build_android_debug:
|
2020-05-23 10:52:11 +02:00
|
|
|
stage: coverage
|
2020-11-21 11:36:13 +01:00
|
|
|
script: [./scripts/build-android-debug.sh]
|
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
|
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:
|
2020-01-01 19:10:52 +01:00
|
|
|
stage: coverage
|
2020-11-21 13:45:14 +01:00
|
|
|
before_script: [./scripts/prepare-android-release.sh]
|
2020-11-21 11:36:13 +01:00
|
|
|
script: [./scripts/build-android-apk.sh]
|
2020-01-01 19:10:52 +01:00
|
|
|
artifacts:
|
|
|
|
when: on_success
|
|
|
|
paths:
|
2020-09-13 10:30:11 +02:00
|
|
|
- build/android/app-release.apk
|
2020-01-03 13:54:42 +01:00
|
|
|
only:
|
2020-09-09 14:16:40 +02:00
|
|
|
- main
|
2020-06-26 20:35:19 +02:00
|
|
|
- tags
|
2020-01-03 13:54:42 +01:00
|
|
|
|
2020-02-11 07:58:50 +01:00
|
|
|
build_android_appbundle:
|
|
|
|
stage: coverage
|
2020-11-21 13:45:14 +01:00
|
|
|
before_script: [./scripts/prepare-android-release.sh]
|
2020-11-22 11:04:47 +01:00
|
|
|
script: [./scripts/release-playstore-beta.sh]
|
2020-08-31 20:44:32 +02:00
|
|
|
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
|
2020-08-31 20:44:32 +02:00
|
|
|
only:
|
2020-09-09 14:16:40 +02:00
|
|
|
- main
|
2020-12-18 11:43:13 +01:00
|
|
|
|
2021-01-17 02:07:38 +01:00
|
|
|
upload-fdroid:
|
2020-11-21 15:56:20 +01:00
|
|
|
stage: release
|
2020-05-20 21:33:36 +02:00
|
|
|
before_script:
|
2021-03-06 09:33:06 +01:00
|
|
|
- "which ssh-agent || (sudo apt-get update -y && sudo apt-get install openssh-client -y )"
|
|
|
|
- "which rsync || (sudo apt-get update -y && sudo apt-get install rsync -y )"
|
|
|
|
- "which pcregrep || (sudo apt-get update -y && sudo apt-get install pcregrep -y )"
|
2020-05-20 21:33:36 +02:00
|
|
|
- eval $(ssh-agent -s)
|
|
|
|
- echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add -
|
|
|
|
- mkdir -p ~/.ssh
|
|
|
|
- chmod 700 ~/.ssh
|
2020-09-13 19:33:49 +02:00
|
|
|
- ssh-keyscan -t rsa fdroid.nordgedanken.dev >> ~/.ssh/known_hosts
|
2020-05-20 21:33:36 +02:00
|
|
|
script:
|
2020-09-13 10:30:11 +02:00
|
|
|
- cd build/android/
|
2020-12-09 18:07:44 +01:00
|
|
|
- export UPDATE_VERSION=$(pcregrep -o1 'version:\s([0-9]*\.[0-9]*\.[0-9]*)\+[0-9]*' ../../pubspec.yaml) && mv app-release.apk "${UPDATE_VERSION}.apk"
|
2021-01-17 02:07:38 +01:00
|
|
|
- rsync -rav -e ssh ./ fluffy@fdroid.nordgedanken.dev:/opt/fdroid/fluffychat/repo
|
2021-01-26 16:46:12 +01:00
|
|
|
- ssh fluffy@fdroid.nordgedanken.dev -t '/bin/bash -i -l -c "cd /opt/fdroid/fluffychat && fdroid update --verbose"'
|
2020-10-12 10:09:47 +02:00
|
|
|
needs: ["build_android_apk"]
|
2020-11-22 11:04:47 +01:00
|
|
|
resource_group: playstore_release
|
|
|
|
allow_failure: true
|
2020-05-20 21:33:36 +02:00
|
|
|
only:
|
2020-12-17 09:39:32 +01:00
|
|
|
- tags
|
2020-05-20 21:33:36 +02:00
|
|
|
|
2021-02-02 14:11:20 +01:00
|
|
|
upload-fdroid-nightly:
|
|
|
|
stage: release
|
|
|
|
before_script:
|
2021-03-06 09:33:06 +01:00
|
|
|
- "which ssh-agent || (sudo apt-get update -y && sudo apt-get install openssh-client -y )"
|
|
|
|
- "which rsync || (sudo apt-get update -y && sudo apt-get install rsync -y )"
|
|
|
|
- "which pcregrep || (sudo apt-get update -y && sudo apt-get install pcregrep -y )"
|
2021-02-02 14:11:20 +01:00
|
|
|
- eval $(ssh-agent -s)
|
|
|
|
- echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add -
|
|
|
|
- mkdir -p ~/.ssh
|
|
|
|
- chmod 700 ~/.ssh
|
|
|
|
- ssh-keyscan -t rsa fdroid.nordgedanken.dev >> ~/.ssh/known_hosts
|
|
|
|
script:
|
|
|
|
- cd build/android/
|
|
|
|
- export UPDATE_VERSION=$(pcregrep -o1 'version:\s([0-9]*\.[0-9]*\.[0-9]*)\+[0-9]*' ../../pubspec.yaml) && mv app-release.apk "${UPDATE_VERSION}_$(date +%s).apk"
|
|
|
|
- rsync -rav -e ssh ./ fluffy@fdroid.nordgedanken.dev:/opt/fdroid/fluffychat-nightly/repo
|
|
|
|
- ssh fluffy@fdroid.nordgedanken.dev -t '/bin/bash -i -l -c "cd /opt/fdroid/fluffychat-nightly && fdroid update --verbose"'
|
|
|
|
needs: ["build_android_apk"]
|
|
|
|
resource_group: playstore_release
|
|
|
|
allow_failure: true
|
|
|
|
only:
|
|
|
|
- main
|
|
|
|
|
2020-01-01 19:10:52 +01:00
|
|
|
pages:
|
2020-11-21 11:36:13 +01:00
|
|
|
stage: deploy
|
2020-12-24 11:31:58 +01:00
|
|
|
image: ruby:latest
|
|
|
|
script:
|
|
|
|
- cp PRIVACY.md docs/_includes/privacy.md
|
|
|
|
- cp CHANGELOG.md docs/_includes/changelog.md
|
|
|
|
- cd docs
|
2020-12-24 13:14:51 +01:00
|
|
|
- gem install bundler
|
|
|
|
- bundle install
|
2020-12-24 11:31:58 +01:00
|
|
|
- bundle exec jekyll build -d public
|
|
|
|
- cd ..
|
|
|
|
- mv docs/public/ ./
|
|
|
|
- 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:
|
2020-10-06 16:31:52 +02:00
|
|
|
stage: coverage
|
2021-03-06 09:33:06 +01:00
|
|
|
before_script:
|
|
|
|
[
|
2021-04-21 14:19:54 +02:00
|
|
|
sudo apt update && sudo apt install curl clang cmake ninja-build pkg-config libgtk-3-dev libblkid-dev liblzma-dev libjsoncpp-dev cmake-data libjsoncpp1 libsecret-1-dev libsecret-1-0 librhash0 -y,
|
2021-03-06 09:33:06 +01:00
|
|
|
]
|
2020-11-21 11:36:13 +01:00
|
|
|
script: [./scripts/build-linux.sh]
|
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/
|
2020-10-28 06:43:55 +01:00
|
|
|
|
2021-04-25 10:54:48 +02:00
|
|
|
build_linux_arm64:
|
|
|
|
stage: coverage
|
2021-06-11 22:32:06 +02:00
|
|
|
before_script:
|
2021-06-23 10:35:43 +02:00
|
|
|
- flutter channel stable
|
2021-06-11 22:42:53 +02:00
|
|
|
- flutter upgrade --force
|
2021-04-25 10:54:48 +02:00
|
|
|
script: [./scripts/build-linux.sh]
|
|
|
|
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/
|
|
|
|
|
2020-10-29 18:29:44 +01:00
|
|
|
update-dependencies:
|
|
|
|
stage: coverage
|
|
|
|
needs: []
|
|
|
|
tags:
|
|
|
|
- docker
|
|
|
|
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
|
2020-10-29 18:29:44 +01:00
|
|
|
- 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
|
2020-10-29 18:29:44 +01:00
|
|
|
- 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)'
|
|
|
|
|
2020-11-08 19:49:04 +01:00
|
|
|
.release:
|
|
|
|
stage: release
|
|
|
|
image: curlimages/curl:latest
|
|
|
|
rules:
|
|
|
|
- if: '$CI_COMMIT_TAG =~ /^v\d+\.\d+\.\d+$/'
|
|
|
|
before_script:
|
|
|
|
- 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 --header "JOB-TOKEN: ${CI_JOB_TOKEN}" --upload-file build/android/app-release.apk ${PACKAGE_REGISTRY_URL}/fluffychat.apk
|
|
|
|
|
|
|
|
upload-web:
|
|
|
|
extends: .release
|
|
|
|
script:
|
|
|
|
- tar czf package.tar.gz -C build/web/ .
|
|
|
|
- |
|
|
|
|
curl --header "JOB-TOKEN: ${CI_JOB_TOKEN}" --upload-file package.tar.gz ${PACKAGE_REGISTRY_URL}/fluffychat-web.tar.gz
|
|
|
|
|
2021-04-25 10:54:48 +02:00
|
|
|
upload-linux-x86:
|
2020-11-08 19:49:04 +01:00
|
|
|
extends: .release
|
|
|
|
script:
|
2021-05-26 10:10:07 +02:00
|
|
|
- tar czf package.tar.gz -C build/linux/x64/release/bundle/ .
|
2020-11-08 19:49:04 +01:00
|
|
|
- |
|
2021-05-01 19:48:58 +02:00
|
|
|
curl --header "JOB-TOKEN: ${CI_JOB_TOKEN}" --upload-file package.tar.gz ${PACKAGE_REGISTRY_URL}/fluffychat-linux-x86.tar.gz
|
2020-11-08 19:49:04 +01:00
|
|
|
|
2021-04-25 10:54:48 +02:00
|
|
|
upload-linux-arm64:
|
|
|
|
extends: .release
|
|
|
|
script:
|
|
|
|
- tar czf package.tar.gz -C build/linux/arm64/release/bundle/ .
|
|
|
|
- |
|
2021-05-01 19:48:58 +02:00
|
|
|
curl --header "JOB-TOKEN: ${CI_JOB_TOKEN}" --upload-file package.tar.gz ${PACKAGE_REGISTRY_URL}/fluffychat-linux-arm64.tar.gz
|
2021-04-25 10:54:48 +02:00
|
|
|
|
2021-07-25 00:49:42 +02:00
|
|
|
upload-windows:
|
|
|
|
extends: .release
|
|
|
|
script:
|
|
|
|
- pushd build/windows/runner/Release; zip -r ../../../../package.zip . ; popd
|
|
|
|
- |
|
|
|
|
curl --header "JOB-TOKEN: ${CI_JOB_TOKEN}" --upload-file package.zip ${PACKAGE_REGISTRY_URL}/fluffychat-windows.zip
|
2020-11-08 19:49:04 +01:00
|
|
|
|
2020-11-22 11:04:47 +01:00
|
|
|
upload-playstore:
|
2021-04-09 17:37:39 +02:00
|
|
|
stage: release
|
2021-03-28 11:09:02 +02:00
|
|
|
before_script: [./scripts/prepare-android-release.sh]
|
2020-11-22 11:04:47 +01:00
|
|
|
script: [./scripts/release-playstore.sh]
|
|
|
|
resource_group: playstore_release
|
2021-04-09 17:37:39 +02:00
|
|
|
only:
|
|
|
|
- tags
|
2020-11-22 11:04:47 +01:00
|
|
|
|
2020-11-08 19:49:04 +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\"}" \
|
2020-11-14 11:29:47 +01:00
|
|
|
--assets-link "{\"name\":\"fluffychat-web.tar.gz\",\"url\":\"${PACKAGE_REGISTRY_URL}/fluffychat-web.tar.gz\"}"
|