CI: deploy on request.

Update event count after start.
This commit is contained in:
Julien Wadel 2024-03-11 08:51:22 +01:00
parent 1a8c0fa806
commit 8682c85293
4 changed files with 24 additions and 22 deletions

View file

@ -152,10 +152,10 @@ ubuntu2004-makefile-gcc-deploy:
tags: [ "deploy" ]
needs:
- ubuntu2004-makefile-gcc-package
only:
variables:
- $NIGHTLY_MASTER
- $DEPLOY_LINUX
rules:
- !reference [.rules-merge-request-manual, rules]
- if: $NIGHTLY_MASTER
- if: $DEPLOY_LINUX
script:
# Going to folder in order to avoid having path in checksum
- |-

View file

@ -54,10 +54,9 @@ job-macosx-ninja:
#################################################
job-macosx-makefile:
only:
variables:
- $NIGHTLY_MASTER
- $DEPLOY_PLUGINS
rules:
- if: $NIGHTLY_MASTER
- if: $DEPLOY_PLUGINS
variables:
CMAKE_GENERATOR: Unix Makefiles
CMAKE_OPTIONS: -DENABLE_PQCRYPTO=ON
@ -93,11 +92,11 @@ job-macosx-makefile-package:
stage: package
tags: [ "macos-xcode13" ]
dependencies: []
only:
variables:
- $NIGHTLY_MASTER
- $PACKAGE_MACOSX
- $DEPLOY_MACOSX
rules:
- !reference [.rules-merge-request-manual, rules]
- if: $NIGHTLY_MASTER
- if: $PACKAGE_MACOSX
- if: $DEPLOY_MACOSX
variables:
CMAKE_OPTIONS: -DENABLE_APP_PACKAGING=ON -DENABLE_GPL_THIRD_PARTIES=ON -DENABLE_G729=ON -DENABLE_PQCRYPTO=ON
RELEASE_FILE: -DLINPHONE_SDK_MAKE_RELEASE_FILE_URL=$MAKE_RELEASE_FILE_URL/$MACOSX_PLATFORM/$APP_FOLDER
@ -117,11 +116,11 @@ job-macosx-codesigning:
tags: [ "macos-xcode13" ]
needs:
- job-macosx-makefile-package
only:
variables:
- $NIGHTLY_MASTER
- $PACKAGE_MACOSX
- $DEPLOY_MACOSX
rules:
- !reference [.rules-merge-request-manual, rules]
- if: $NIGHTLY_MASTER
- if: $PACKAGE_MACOSX
- if: $DEPLOY_MACOSX
script:
- cd build
- codesign --timestamp --options runtime,library --verbose -s "$MACOS_SIGNING_IDENTITY" OUTPUT/linphone-app/macos/Packages/Linphone*.dmg
@ -142,10 +141,10 @@ job-macosx-makefile-deploy:
tags: [ "deploy" ]
needs:
- job-macosx-codesigning
only:
variables:
- $NIGHTLY_MASTER
- $DEPLOY_MACOSX
rules:
- !reference [.rules-merge-request-manual, rules]
- if: $NIGHTLY_MASTER
- if: $DEPLOY_MACOSX
script:
# Going to folder in order to avoid having path in checksum
- |-

View file

@ -153,6 +153,7 @@ vs2019-win64-package:
extends: .windows-vs2019-msvc
dependencies: []
rules:
- !reference [.rules-merge-request-manual, rules]
- if: $NIGHTLY_MASTER
- if: $NIGHTLY_RELEASE
- if: $PACKAGE_WINDOWS
@ -169,6 +170,7 @@ vs2019-win64-upload:
stage: deploy
tags: [ "deploy"]
rules:
- !reference [.rules-merge-request-manual, rules]
- if: $NIGHTLY_MASTER
- if: $DEPLOY_WINDOWS
needs:

View file

@ -114,6 +114,7 @@ void CoreManager::initCoreManager(){
qInfo() << QStringLiteral("CoreManager initialized");
emit coreManagerInitialized();
emit eventCountChanged();
}
bool CoreManager::isInitialized() const{