Skip to content

Commit 89563d8

Browse files
authored
remove github deploy in favor of push to OCI for SNAPSHOT installer (for WKO testing) (#189)
1 parent 3b362a3 commit 89563d8

File tree

4 files changed

+13
-35
lines changed

4 files changed

+13
-35
lines changed

Diff for: Jenkinsfile

+13
Original file line numberDiff line numberDiff line change
@@ -90,5 +90,18 @@ pipeline {
9090
}
9191
}
9292
}
93+
stage ('Save Nightly Installer'){
94+
when {
95+
allOf {
96+
triggeredBy 'TimerTrigger'
97+
branch "master"
98+
}
99+
}
100+
steps {
101+
sh '''
102+
oci os object put --namespace=weblogick8s --bucket-name=wko-system-test-files --config-file=/dev/null --auth=instance_principal --force --file=installer/target/imagetool.zip --name=imagetool-master.zip
103+
'''
104+
}
105+
}
93106
}
94107
}

Diff for: build-tools/pom.xml

-12
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,4 @@
1313
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1414
</properties>
1515

16-
<!-- <build>-->
17-
<!-- <plugins>-->
18-
<!-- <plugin>-->
19-
<!-- <groupId>org.apache.maven.plugins</groupId>-->
20-
<!-- <artifactId>maven-deploy-plugin</artifactId>-->
21-
<!-- <version>3.0.0-M1</version>-->
22-
<!-- <configuration>-->
23-
<!-- <skip>true</skip>-->
24-
<!-- </configuration>-->
25-
<!-- </plugin>-->
26-
<!-- </plugins>-->
27-
<!-- </build>-->
2816
</project>

Diff for: installer/pom.xml

-7
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,6 @@
6969
</execution>
7070
</executions>
7171
</plugin>
72-
<!-- <plugin>-->
73-
<!-- <groupId>org.apache.maven.plugins</groupId>-->
74-
<!-- <artifactId>maven-deploy-plugin</artifactId>-->
75-
<!-- <configuration>-->
76-
<!-- <skip>false</skip>-->
77-
<!-- </configuration>-->
78-
<!-- </plugin>-->
7972
</plugins>
8073
</build>
8174
</project>

Diff for: pom.xml

-16
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,6 @@
3030
<tag>HEAD</tag>
3131
</scm>
3232

33-
<!-- <distributionManagement>-->
34-
<!-- <repository>-->
35-
<!-- <id>github</id>-->
36-
<!-- <name>GitHub packages</name>-->
37-
<!-- <url>https://maven.pkg.github.com/oracle</url>-->
38-
<!-- </repository>-->
39-
<!-- </distributionManagement>-->
40-
4133
<properties>
4234
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4335
<maven.compiler.source>1.8</maven.compiler.source>
@@ -106,14 +98,6 @@
10698
<build>
10799
<pluginManagement>
108100
<plugins>
109-
<!-- <plugin>-->
110-
<!-- <groupId>org.apache.maven.plugins</groupId>-->
111-
<!-- <artifactId>maven-deploy-plugin</artifactId>-->
112-
<!-- <version>3.0.0-M1</version>-->
113-
<!-- <configuration>-->
114-
<!-- <skip>true</skip>-->
115-
<!-- </configuration>-->
116-
<!-- </plugin>-->
117101
<plugin>
118102
<groupId>org.apache.maven.plugins</groupId>
119103
<artifactId>maven-jar-plugin</artifactId>

0 commit comments

Comments
 (0)