update cicd
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Struchkov Mark 2024-08-24 15:27:26 +03:00
parent dd6d7b56fe
commit a0606de91e
No known key found for this signature in database
GPG Key ID: A3F0AC3F0FA52F3C
4 changed files with 68 additions and 67 deletions

View File

@ -102,8 +102,11 @@ steps:
image_pull_secrets: image_pull_secrets:
- DOCKER_AUTH - DOCKER_AUTH
-
# drone sign --save SDK/gitlab-sdk
--- ---
kind: signature kind: signature
hmac: af8e179fe00b1dfd731421af268fcd63b5aa4c78e1552f608e7613e2382bb2d5 hmac: 8decd4f4dd2989517600b941df5de21ce78535082985355021bcaea31a31ba97
... ...

View File

@ -7,6 +7,8 @@
<file url="file://$PROJECT_DIR$/gitlab-domain/src/main/resources" charset="UTF-8" /> <file url="file://$PROJECT_DIR$/gitlab-domain/src/main/resources" charset="UTF-8" />
<file url="file://$PROJECT_DIR$/gitlab-schema/src/main/java" charset="UTF-8" /> <file url="file://$PROJECT_DIR$/gitlab-schema/src/main/java" charset="UTF-8" />
<file url="file://$PROJECT_DIR$/gitlab-schema/src/main/resources" charset="UTF-8" /> <file url="file://$PROJECT_DIR$/gitlab-schema/src/main/resources" charset="UTF-8" />
<file url="file://$PROJECT_DIR$/gitlab-sdk-spring-boot-starter/src/main/java" charset="UTF-8" />
<file url="file://$PROJECT_DIR$/gitlab-sdk-spring-boot-starter/src/main/resources" charset="UTF-8" />
<file url="file://$PROJECT_DIR$/src/main/java" charset="UTF-8" /> <file url="file://$PROJECT_DIR$/src/main/java" charset="UTF-8" />
<file url="file://$PROJECT_DIR$/src/main/resources" charset="UTF-8" /> <file url="file://$PROJECT_DIR$/src/main/resources" charset="UTF-8" />
</component> </component>

View File

@ -5,6 +5,7 @@
<option name="originalFiles"> <option name="originalFiles">
<list> <list>
<option value="$PROJECT_DIR$/pom.xml" /> <option value="$PROJECT_DIR$/pom.xml" />
<option value="$PROJECT_DIR$/gitlab-sdk-spring-boot-starter/pom.xml" />
</list> </list>
</option> </option>
<option name="workspaceImportForciblyTurnedOn" value="true" /> <option name="workspaceImportForciblyTurnedOn" value="true" />

View File

@ -4,91 +4,62 @@
<option name="autoReloadType" value="SELECTIVE" /> <option name="autoReloadType" value="SELECTIVE" />
</component> </component>
<component name="ChangeListManager"> <component name="ChangeListManager">
<list default="true" id="eb949ca5-8296-4076-affc-3ae964f31755" name="Changes" comment=""> <list default="true" id="eb949ca5-8296-4076-affc-3ae964f31755" name="Changes" comment="init commit" />
<change afterPath="$PROJECT_DIR$/.drone.yml" afterDir="false" />
<change afterPath="$PROJECT_DIR$/.gitignore" afterDir="false" />
<change afterPath="$PROJECT_DIR$/.idea/encodings.xml" afterDir="false" />
<change afterPath="$PROJECT_DIR$/.idea/misc.xml" afterDir="false" />
<change afterPath="$PROJECT_DIR$/.idea/uiDesigner.xml" afterDir="false" />
<change afterPath="$PROJECT_DIR$/.idea/vcs.xml" afterDir="false" />
<change afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
<change afterPath="$PROJECT_DIR$/gitlab-core/pom.xml" afterDir="false" />
<change afterPath="$PROJECT_DIR$/gitlab-core/src/main/java/dev/struchkov/sdk/gitlab/core/GitlabSdkManager.java" afterDir="false" />
<change afterPath="$PROJECT_DIR$/gitlab-core/src/main/java/dev/struchkov/sdk/gitlab/core/client/HttpHeader.java" afterDir="false" />
<change afterPath="$PROJECT_DIR$/gitlab-core/src/main/java/dev/struchkov/sdk/gitlab/core/client/HttpParse.java" afterDir="false" />
<change afterPath="$PROJECT_DIR$/gitlab-core/src/main/java/dev/struchkov/sdk/gitlab/core/client/HttpParseNew.java" afterDir="false" />
<change afterPath="$PROJECT_DIR$/gitlab-core/src/main/java/dev/struchkov/sdk/gitlab/core/client/OkHttpUtil.java" afterDir="false" />
<change afterPath="$PROJECT_DIR$/gitlab-core/src/main/java/dev/struchkov/sdk/gitlab/core/client/StringUtils.java" afterDir="false" />
<change afterPath="$PROJECT_DIR$/gitlab-core/src/main/java/dev/struchkov/sdk/gitlab/core/forktask/GetAllDiscussionForMergeRequestTask.java" afterDir="false" />
<change afterPath="$PROJECT_DIR$/gitlab-core/src/main/java/dev/struchkov/sdk/gitlab/core/forktask/GetAllMergeRequestForProjectTask.java" afterDir="false" />
<change afterPath="$PROJECT_DIR$/gitlab-core/src/main/java/dev/struchkov/sdk/gitlab/core/forktask/GetPipelineShortTask.java" afterDir="false" />
<change afterPath="$PROJECT_DIR$/gitlab-core/src/main/java/dev/struchkov/sdk/gitlab/core/forktask/GetPipelineTask.java" afterDir="false" />
<change afterPath="$PROJECT_DIR$/gitlab-core/src/main/java/dev/struchkov/sdk/gitlab/core/forktask/GetSingleMergeRequestTask.java" afterDir="false" />
<change afterPath="$PROJECT_DIR$/gitlab-domain/pom.xml" afterDir="false" />
<change afterPath="$PROJECT_DIR$/gitlab-domain/src/main/java/dev/struchkov/sdk/gitlab/domain/GitlabProjectParam.java" afterDir="false" />
<change afterPath="$PROJECT_DIR$/gitlab-domain/src/main/java/dev/struchkov/sdk/gitlab/domain/GitlabProperty.java" afterDir="false" />
<change afterPath="$PROJECT_DIR$/gitlab-domain/src/main/java/dev/struchkov/sdk/gitlab/domain/GitlabUrl.java" afterDir="false" />
<change afterPath="$PROJECT_DIR$/gitlab-schema/pom.xml" afterDir="false" />
<change afterPath="$PROJECT_DIR$/gitlab-schema/src/main/java/dev/struchkov/sdk/gitlab/schema/approval/ApprovalContainerJson.java" afterDir="false" />
<change afterPath="$PROJECT_DIR$/gitlab-schema/src/main/java/dev/struchkov/sdk/gitlab/schema/approval/ApprovalJson.java" afterDir="false" />
<change afterPath="$PROJECT_DIR$/gitlab-schema/src/main/java/dev/struchkov/sdk/gitlab/schema/common/MilestoneJson.java" afterDir="false" />
<change afterPath="$PROJECT_DIR$/gitlab-schema/src/main/java/dev/struchkov/sdk/gitlab/schema/common/PersonJson.java" afterDir="false" />
<change afterPath="$PROJECT_DIR$/gitlab-schema/src/main/java/dev/struchkov/sdk/gitlab/schema/common/UserJson.java" afterDir="false" />
<change afterPath="$PROJECT_DIR$/gitlab-schema/src/main/java/dev/struchkov/sdk/gitlab/schema/mergerequest/MergeRequestJson.java" afterDir="false" />
<change afterPath="$PROJECT_DIR$/gitlab-schema/src/main/java/dev/struchkov/sdk/gitlab/schema/mergerequest/MergeRequestStateJson.java" afterDir="false" />
<change afterPath="$PROJECT_DIR$/gitlab-schema/src/main/java/dev/struchkov/sdk/gitlab/schema/note/DiscussionJson.java" afterDir="false" />
<change afterPath="$PROJECT_DIR$/gitlab-schema/src/main/java/dev/struchkov/sdk/gitlab/schema/note/NoteJson.java" afterDir="false" />
<change afterPath="$PROJECT_DIR$/gitlab-schema/src/main/java/dev/struchkov/sdk/gitlab/schema/pipeline/PipelineJson.java" afterDir="false" />
<change afterPath="$PROJECT_DIR$/gitlab-schema/src/main/java/dev/struchkov/sdk/gitlab/schema/pipeline/PipelineShortJson.java" afterDir="false" />
<change afterPath="$PROJECT_DIR$/gitlab-schema/src/main/java/dev/struchkov/sdk/gitlab/schema/pipeline/PipelineStatusJson.java" afterDir="false" />
<change afterPath="$PROJECT_DIR$/gitlab-schema/src/main/java/dev/struchkov/sdk/gitlab/schema/repository/CommitJson.java" afterDir="false" />
<change afterPath="$PROJECT_DIR$/gitlab-schema/src/main/java/dev/struchkov/sdk/gitlab/schema/repository/ProjectJson.java" afterDir="false" />
<change afterPath="$PROJECT_DIR$/pom.xml" afterDir="false" />
</list>
<option name="SHOW_DIALOG" value="false" /> <option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" /> <option name="HIGHLIGHT_CONFLICTS" value="true" />
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" /> <option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
<option name="LAST_RESOLUTION" value="IGNORE" /> <option name="LAST_RESOLUTION" value="IGNORE" />
</component> </component>
<component name="FileTemplateManagerImpl">
<option name="RECENT_TEMPLATES">
<list>
<option value="Class" />
</list>
</option>
</component>
<component name="Git.Settings"> <component name="Git.Settings">
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" /> <option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
</component> </component>
<component name="ProjectColorInfo"><![CDATA[{ <component name="ProjectColorInfo">{
"associatedIndex": 2 &quot;associatedIndex&quot;: 2
}]]></component> }</component>
<component name="ProjectId" id="2l4ZXda7ZVGkw841Y11IUmT4pBt" /> <component name="ProjectId" id="2l4ZXda7ZVGkw841Y11IUmT4pBt" />
<component name="ProjectLevelVcsManager" settingsEditedManually="true" /> <component name="ProjectLevelVcsManager" settingsEditedManually="true" />
<component name="ProjectViewState"> <component name="ProjectViewState">
<option name="hideEmptyMiddlePackages" value="true" /> <option name="hideEmptyMiddlePackages" value="true" />
<option name="showLibraryContents" value="true" /> <option name="showLibraryContents" value="true" />
</component> </component>
<component name="PropertiesComponent"><![CDATA[{ <component name="PropertiesComponent">{
"keyToString": { &quot;keyToString&quot;: {
"Maven.Publish M2.executor": "Run", &quot;Maven.Publish M2.executor&quot;: &quot;Run&quot;,
"RunOnceActivity.OpenProjectViewOnStart": "true", &quot;Maven.gitlab-sdk-spring-boot-starter [clean...].executor&quot;: &quot;Run&quot;,
"RunOnceActivity.ShowReadmeOnStart": "true", &quot;RunOnceActivity.OpenProjectViewOnStart&quot;: &quot;true&quot;,
"SHARE_PROJECT_CONFIGURATION_FILES": "true", &quot;RunOnceActivity.ShowReadmeOnStart&quot;: &quot;true&quot;,
"git-widget-placeholder": "main", &quot;SHARE_PROJECT_CONFIGURATION_FILES&quot;: &quot;true&quot;,
"jdk.selected.JAVA_MODULE": "corretto-21", &quot;SONARLINT_PRECOMMIT_ANALYSIS&quot;: &quot;true&quot;,
"kotlin-language-version-configured": "true", &quot;git-widget-placeholder&quot;: &quot;main&quot;,
"last_opened_file_path": "/Users/struchkov/Documents/IdeaProjects/struchkov/sdk/gitlab-sdk/gitlab-sdk", &quot;jdk.selected.JAVA_MODULE&quot;: &quot;corretto-21&quot;,
"node.js.detected.package.eslint": "true", &quot;kotlin-language-version-configured&quot;: &quot;true&quot;,
"node.js.detected.package.tslint": "true", &quot;last_opened_file_path&quot;: &quot;/Users/struchkov/Documents/IdeaProjects/struchkov/sdk/gitlab-sdk/gitlab-sdk/gitlab-sdk-spring-boot-starter/src/main/resources/META-INF.spring&quot;,
"node.js.selected.package.eslint": "(autodetect)", &quot;node.js.detected.package.eslint&quot;: &quot;true&quot;,
"node.js.selected.package.tslint": "(autodetect)", &quot;node.js.detected.package.tslint&quot;: &quot;true&quot;,
"nodejs_package_manager_path": "npm", &quot;node.js.selected.package.eslint&quot;: &quot;(autodetect)&quot;,
"project.structure.last.edited": "Project", &quot;node.js.selected.package.tslint&quot;: &quot;(autodetect)&quot;,
"project.structure.proportion": "0.15", &quot;nodejs_package_manager_path&quot;: &quot;npm&quot;,
"project.structure.side.proportion": "0.2", &quot;project.structure.last.edited&quot;: &quot;Project&quot;,
"settings.editor.selected.configurable": "MavenSettings", &quot;project.structure.proportion&quot;: &quot;0.15&quot;,
"vue.rearranger.settings.migration": "true" &quot;project.structure.side.proportion&quot;: &quot;0.2&quot;,
&quot;settings.editor.selected.configurable&quot;: &quot;MavenSettings&quot;,
&quot;vue.rearranger.settings.migration&quot;: &quot;true&quot;
} }
}]]></component> }</component>
<component name="RecentsManager"> <component name="RecentsManager">
<key name="CopyFile.RECENT_KEYS"> <key name="CopyFile.RECENT_KEYS">
<recent name="$PROJECT_DIR$/gitlab-sdk-spring-boot-starter/src/main/resources/META-INF.spring" />
<recent name="$PROJECT_DIR$" /> <recent name="$PROJECT_DIR$" />
</key> </key>
<key name="MoveFile.RECENT_KEYS"> <key name="MoveFile.RECENT_KEYS">
<recent name="$PROJECT_DIR$/gitlab-sdk-spring-boot-starter/src/main/resources/META-INF/spring" />
<recent name="$PROJECT_DIR$/gitlab-core/src/main/java/dev/struchkov/sdk/gitlab/core" /> <recent name="$PROJECT_DIR$/gitlab-core/src/main/java/dev/struchkov/sdk/gitlab/core" />
<recent name="$PROJECT_DIR$/gitlab-domain/src/main/java/dev/struchkov/sdk/gitlab/domain" /> <recent name="$PROJECT_DIR$/gitlab-domain/src/main/java/dev/struchkov/sdk/gitlab/domain" />
<recent name="$PROJECT_DIR$/gitlab-schema/src/main/java/dev/struchkov/sdk/gitlab/schema" /> <recent name="$PROJECT_DIR$/gitlab-schema/src/main/java/dev/struchkov/sdk/gitlab/schema" />
@ -144,11 +115,35 @@
<option name="number" value="Default" /> <option name="number" value="Default" />
<option name="presentableId" value="Default" /> <option name="presentableId" value="Default" />
<updated>1724441351469</updated> <updated>1724441351469</updated>
<workItem from="1724441352586" duration="1843000" /> <workItem from="1724441352586" duration="4477000" />
</task> </task>
<task id="LOCAL-00001" summary="init commit">
<option name="closed" value="true" />
<created>1724445478405</created>
<option name="number" value="00001" />
<option name="presentableId" value="LOCAL-00001" />
<option name="project" value="LOCAL" />
<updated>1724445478405</updated>
</task>
<option name="localTasksCounter" value="2" />
<servers /> <servers />
</component> </component>
<component name="TypeScriptGeneratedFilesManager"> <component name="TypeScriptGeneratedFilesManager">
<option name="version" value="3" /> <option name="version" value="3" />
</component> </component>
<component name="Vcs.Log.Tabs.Properties">
<option name="TAB_STATES">
<map>
<entry key="MAIN">
<value>
<State />
</value>
</entry>
</map>
</option>
</component>
<component name="VcsManagerConfiguration">
<MESSAGE value="init commit" />
<option name="LAST_COMMIT_MESSAGE" value="init commit" />
</component>
</project> </project>