kkozmic
11/30/2016, 3:44 AMkkozmic
11/30/2016, 3:45 AMhhariri
kkozmic
12/28/2016, 11:03 PMmesquka
04/26/2017, 2:26 PMoleksandr.samsonov
06/16/2017, 11:16 PMgroostav
10/14/2017, 8:35 PMgroostav
10/14/2017, 8:36 PMgroostav
12/20/2017, 8:24 PMgroostav
12/20/2017, 8:25 PMgroostav
12/20/2017, 8:27 PM/webapps/ROOT/web-inf/web.xml
to expose the lets-encrypt generated .../ROOT/.wellknown
folder with the challenge?GuerrillaDan
02/12/2018, 5:05 PMHarsha
07/06/2018, 9:53 AMjulioyg
09/24/2018, 8:11 AMartifacts
and dependency
? or is just that artifact
can be used inside the dependencies
block? also how can I use artifacts archived in other jobs?julioyg
09/24/2018, 8:12 AMigor.wojda
11/12/2018, 3:11 PM.teamcity/settings.kts
file. I cna open the script in AndroidStudio, I have all proper code colouring, however I don’t have any code completion. ANy ideas how to fix it ? 🤔Harsha
01/04/2019, 5:40 AMgroostav
02/28/2019, 2:47 AMpawegio
06/04/2019, 9:29 AM.teamcity/pom.xml
file.asad.awadia
07/14/2020, 5:44 PMmvn package
etc]Darren Bell
09/22/2020, 10:29 AMPavel Pismerov
09/28/2022, 6:50 PMparam("key", "Some text %env.VALUE%")
In short I need to store the global variable somewhere, update it with job and use it as a param value in Cloud Profile configuration.Rodrigo Silva
02/14/2023, 8:18 PMAnders Kirkeby
08/24/2023, 6:41 AMfun generate() {
project {
internalBuildTypes.forEach {
buildType(it)
}
}
}
I get an error Project builder is not provided
which I cannot get to the bottom off. Anyone have some pointer? Be happy to provide more code if needed!Anders Kirkeby
10/04/2023, 12:50 PMBuildType({
...
exec {
path = "/.my-random-script.sh" // or somehow a resolved uri
}
})
or really any other way to distribute the file WITH the library (making versioning etc. easier)
I'd appreciate any thoughts or ideas here 🙏Lukas Anda
11/14/2023, 11:08 AMAnders Kirkeby
11/24/2023, 1:40 PMkotlin-maven-plugin
ensures the compiler warning dissapper in the settings.kts file (see the configuration parameter below), but trying to generate the configs with the teamcity-configs:generate
task doesn't work.
Question then is, how do I add the compiler options so that they are picked up also when generating configs, and avoid the following error:
[ERROR] Error while generating TeamCity configs:
[ERROR] Compilation error settings.kts[8:9]: To use contextual declarations, specify the `-Xcontext-receivers` compiler option
[ERROR] Compilation error settings.kts[13:13]: To use contextual declarations, specify the `-Xcontext-receivers` compiler option
these are the compiler options I'm adding:
<configuration>
<args>
<arg>-Xcontext-receivers</arg>
</args>
</configuration>
☝️ again, they are picked up, but not when generating configs which seems like a bug? 🐞spechard
04/29/2024, 8:52 AMMario Andhika
10/08/2024, 4:35 AMMario Andhika
10/10/2024, 10:55 AMpackage _Self.buildTypes
import jetbrains.buildServer.configs.kotlin.*
import jetbrains.buildServer.configs.kotlin.buildFeatures.perfmon
import jetbrains.buildServer.configs.kotlin.buildSteps.gradle
import jetbrains.buildServer.configs.kotlin.triggers.vcs
object Build1 : BuildType({
name = "Build (1)"
vcs {
root(HttpsGitJetbrainsSpaceZealstechMainZealsKtorGitRefsHeadsMaster1)
}
steps {
gradle {
name = "gradleBuild"
id = "gradleBuild"
tasks = "build"
buildFile = "build.gradle.kts"
}
}
triggers {
vcs {
}
}
features {
perfmon {
}
}
})