gitlab-ci-runner

Gitlab CI :- How to share the artifacts (apks or build) via Email in Gitlab?

拜拜、爱过 提交于 2020-12-27 05:41:04
问题 I am getting the artifacts (apks) on successful operation of pipeline in Gitlab . Is there any ways to send the artifacts (apks) on the Email address after successful operation in gitlab. Right now i need to do download artifacts manually. Is there any way to send the artifacts on Email after successfully build creation.Thanks 回答1: I think there is no way to send artifacts via email for Gitlab-CI. You can send the mail on success or failure or pipeline. Refer the same question here: Send

Gitlab CI :- How to share the artifacts (apks or build) via Email in Gitlab?

空扰寡人 提交于 2020-12-27 05:37:41
问题 I am getting the artifacts (apks) on successful operation of pipeline in Gitlab . Is there any ways to send the artifacts (apks) on the Email address after successful operation in gitlab. Right now i need to do download artifacts manually. Is there any way to send the artifacts on Email after successfully build creation.Thanks 回答1: I think there is no way to send artifacts via email for Gitlab-CI. You can send the mail on success or failure or pipeline. Refer the same question here: Send

Gitlab CI :- How to share the artifacts (apks or build) via Email in Gitlab?

谁都会走 提交于 2020-12-27 05:34:04
问题 I am getting the artifacts (apks) on successful operation of pipeline in Gitlab . Is there any ways to send the artifacts (apks) on the Email address after successful operation in gitlab. Right now i need to do download artifacts manually. Is there any way to send the artifacts on Email after successfully build creation.Thanks 回答1: I think there is no way to send artifacts via email for Gitlab-CI. You can send the mail on success or failure or pipeline. Refer the same question here: Send

How to resolve “Function calls are not supported in decorators but 'StoreModule' was called.”

て烟熏妆下的殇ゞ 提交于 2020-12-04 05:02:21
问题 I've an angular (7) project. In my package.json, I've a command defined: { "name": "xxx", "version": "0.1.0", "scripts": { "ng": "ng", "start": "ng serve", "build": "ng build", "build-prod": "ng build --prod", "test": "ng test", "test-ci": "ng test --no-watch --no-progress --browsers=ChromeHeadlessNoSandbox", "e2e-ci": "ng e2e --protractor-config=e2e/protractor.conf.js", "deploy": "firebase deploy --token $FIREBASE_TOKEN --non-interactive", "lint": "ng lint", "e2e": "ng e2e" }, [...] } When I

How to resolve “Function calls are not supported in decorators but 'StoreModule' was called.”

和自甴很熟 提交于 2020-12-04 05:00:14
问题 I've an angular (7) project. In my package.json, I've a command defined: { "name": "xxx", "version": "0.1.0", "scripts": { "ng": "ng", "start": "ng serve", "build": "ng build", "build-prod": "ng build --prod", "test": "ng test", "test-ci": "ng test --no-watch --no-progress --browsers=ChromeHeadlessNoSandbox", "e2e-ci": "ng e2e --protractor-config=e2e/protractor.conf.js", "deploy": "firebase deploy --token $FIREBASE_TOKEN --non-interactive", "lint": "ng lint", "e2e": "ng e2e" }, [...] } When I

GItlab CI :- How to create the multiple apk(like development, staging and production) in Android using the Gitlab-CI?

吃可爱长大的小学妹 提交于 2020-11-25 03:58:33
问题 I am able to create the single build(apk) like debug.apk using the Gitlab-CI by below approach in Gitlab. Inside my .gitlab-ci.yml , I have done this entry.Please check it once, image: jangrewe/gitlab-ci-android stages: - build before_script: - export GRADLE_USER_HOME=$(pwd)/.gradle - chmod +x ./gradlew cache: key: ${CI_PROJECT_ID} paths: - .gradle/ build: stage: build tags: - dev-ci script: - ./gradlew assembleDebug artifacts: paths: - app/build/outputs/ And I have created the docker image