Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CTM-1126] Update workflows to build, archive & download maven repo #16

Merged
merged 6 commits into from
May 6, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 15 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
run: |
echo "${{ steps.decide_build_number.outputs.marketing_build_version }}" > version.txt

- name: Upload version
- name: Upload version (to be used in release.yml)
uses: actions/upload-artifact@v3
with:
name: version
Expand All @@ -41,21 +41,29 @@ jobs:

- name: Archive aar file
uses: actions/upload-artifact@v3
env:
MARKETING_VERSION: ${{ steps.decide_build_number.outputs.marketing_build_version }}
with:
name: 'cumulocity-clients-kotlin-aar'
path: 'build/outputs/aar/*.aar'

- name: Invoke Gradle for jar
run: |
chmod +x gradlew
./gradlew --console plain -b build-jar.gradle clean build -x test

./gradlew --console plain -b build-jar.gradle clean build publish -x test --debug

- name: show content
run: |
ls -lsa *
ls -lsa build/*
ls -lsa build/mavenRepo/*

- name: Archive jar file
uses: actions/upload-artifact@v3
env:
MARKETING_VERSION: ${{ steps.decide_build_number.outputs.marketing_build_version }}
with:
name: 'cumulocity-clients-kotlin-jar'
path: 'build/libs/*.jar'

- name: Archive maven repo files
uses: actions/upload-artifact@v3
with:
name: 'cumulocity-clients-kotlin-maven'
path: 'build/mavenRepo/*'
11 changes: 11 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,16 @@ jobs:
name: cumulocity-clients-kotlin-jar
path: artifacts

- name: Download mavenRepo
uses: actions/download-artifact@v3
with:
name: cumulocity-clients-kotlin-maven
path: mavenRepo

- name: show downloaded content
run: |
ls -lsa artifacts/
ls -lsa mavenRepo/

- name: Upload aar to release
uses: actions/upload-release-asset@v1
Expand All @@ -71,3 +78,7 @@ jobs:
asset_name: "cumulocity-clients-kotlin-${{ env.marketing_build_version }}.jar"
asset_path: artifacts/cumulocity-clients-kotlin-${{ env.marketing_build_version }}.jar
asset_content_type: application/zip

- name: TODO upload to maven using secrets
run: |
echo "TODO: upload to maven using secrets"
17 changes: 17 additions & 0 deletions build-jar.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
plugins {
id 'java'
id "org.jetbrains.kotlin.jvm" version "$kotlinVersion"
id 'maven-publish'
}

jar {
Expand All @@ -12,6 +13,22 @@ repositories {
mavenCentral()
}

publishing {
publications {
maven(MavenPublication) {
groupId = 'com.cumulocity'
artifactId = 'cumulocity-clients-kotlin'
version = '10.18.0-269'
from components.java
}
}
repositories {
maven {
url = layout.buildDirectory.dir('mavenRepo')
}
}
}

dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion"
Expand Down
100 changes: 100 additions & 0 deletions gradlew.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,100 @@
@rem
@rem Copyright 2015 the original author or authors.
@rem
@rem Licensed under the Apache License, Version 2.0 (the "License");
@rem you may not use this file except in compliance with the License.
@rem You may obtain a copy of the License at
@rem
@rem https://www.apache.org/licenses/LICENSE-2.0
@rem
@rem Unless required by applicable law or agreed to in writing, software
@rem distributed under the License is distributed on an "AS IS" BASIS,
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@rem See the License for the specific language governing permissions and
@rem limitations under the License.
@rem

@if "%DEBUG%" == "" @echo off
@rem ##########################################################################
@rem
@rem Gradle startup script for Windows
@rem
@rem ##########################################################################

@rem Set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" setlocal

set DIRNAME=%~dp0
if "%DIRNAME%" == "" set DIRNAME=.
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%

@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"

@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome

set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if "%ERRORLEVEL%" == "0" goto init

echo.
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.

goto fail

:findJavaFromJavaHome
set JAVA_HOME=%JAVA_HOME:"=%
set JAVA_EXE=%JAVA_HOME%/bin/java.exe

if exist "%JAVA_EXE%" goto init

echo.
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.

goto fail

:init
@rem Get command-line arguments, handling Windows variants

if not "%OS%" == "Windows_NT" goto win9xME_args

:win9xME_args
@rem Slurp the command line arguments.
set CMD_LINE_ARGS=
set _SKIP=2

:win9xME_args_slurp
if "x%~1" == "x" goto execute

set CMD_LINE_ARGS=%*

:execute
@rem Setup the command line

set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar

@rem Execute Gradle
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%

:end
@rem End local scope for the variables with windows NT shell
if "%ERRORLEVEL%"=="0" goto mainEnd

:fail
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code!
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
exit /b 1

:mainEnd
if "%OS%"=="Windows_NT" endlocal

:omega
Loading