Skip to content

Commit

Permalink
Disabling Docker builds
Browse files Browse the repository at this point in the history
  • Loading branch information
tesonep committed Aug 16, 2023
1 parent a2b6ff7 commit b67609b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Jenkinsfile
Expand Up @@ -462,7 +462,7 @@ try{
properties([disableConcurrentBuilds()])

def parallelBuilderPlatforms = ['Linux-x86_64', 'Darwin-x86_64', 'Windows-x86_64', 'Darwin-arm64']
def platforms = parallelBuilderPlatforms + ['Linux-aarch64', 'Linux-armv7l']
def platforms = parallelBuilderPlatforms // + ['Linux-aarch64', 'Linux-armv7l']
def builders = [:]
def dockerBuilders = [:]
def testsOnMainBranch = [:]
Expand Down Expand Up @@ -519,6 +519,7 @@ try{
}
}

/*
dockerBuilders['Linux-aarch64'] = {
buildUsingDocker('Linux-aarch64', 'ubuntu-arm64', "CoInterpreter")
Expand Down Expand Up @@ -552,12 +553,12 @@ try{
buildUsingDocker('Linux-armv7l', 'debian10-armv7', "CoInterpreter", false)
}
}
*/

parallel builders

parallel dockerBuilders


uploadPackages(platforms)

buildGTKBundle()
Expand Down

0 comments on commit b67609b

Please sign in to comment.