Skip to content

Commit e92b679

Browse files
committed
Merge branch 'develop' into nickmelis-issues/449
2 parents fa52517 + efd1e16 commit e92b679

File tree

78 files changed

+6834
-3359
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+6834
-3359
lines changed

.editorconfig

Lines changed: 1325 additions & 0 deletions
Large diffs are not rendered by default.

.github/workflows/workflows.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Tests
22

3-
on: [push]
3+
on: [ push ]
44

55
jobs:
66
tests:
@@ -38,4 +38,3 @@ jobs:
3838
with:
3939
name: dependency-check-report
4040
path: target/dependency-check-report.html
41-

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
/application.yml
44
/.project
55
*.gz
6+
*.zip
7+
.vscode/
8+
.idea/
69
.project
710
.classpath
811
.settings

Jenkinsfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ pipeline {
33
agent {
44
kubernetes {
55
yamlFile 'kubernetesPod.yaml'
6-
workspaceVolume dynamicPVC(accessModes: 'ReadWriteOnce', requestsSize: '40Gi')
76
}
87
}
98

@@ -21,7 +20,7 @@ pipeline {
2120

2221
configFileProvider([configFile(fileId: 'maven-settings-rsb', variable: 'MAVEN_SETTINGS_RSB')]) {
2322

24-
sh 'mvn -B -s $MAVEN_SETTINGS_RSB -Dmaven.repo.local=/home/jenkins/agent/m2 -U clean deploy'
23+
sh 'mvn -B -s $MAVEN_SETTINGS_RSB -U clean deploy -DskipTests=true'
2524

2625
}
2726
}

LICENSE_HEADER

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ShinyProxy
22

3-
Copyright (C) 2016-2023 Open Analytics
3+
Copyright (C) 2016-2024 Open Analytics
44

55
===========================================================================
66

kubernetesPod.yaml

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,12 @@ metadata:
55
labels:
66
ci: shinyproxy-build
77
spec:
8-
securityContext:
9-
fsGroup: 65534
108
containers:
119
- name: containerproxy-build
12-
image: 196229073436.dkr.ecr.eu-west-1.amazonaws.com/openanalytics/containerproxy-build
13-
securityContext:
14-
privileged: true
15-
command: [ "sh" ]
16-
args: [ "/usr/src/app/docker-entrypoint.sh" ]
10+
image: public.ecr.aws/docker/library/maven:3-eclipse-temurin-17-focal
11+
command:
12+
- cat
1713
tty: true
18-
volumeMounts:
19-
- name: workspace-volume
20-
subPath: docker
21-
mountPath: /var/lib/docker
2214
resources:
2315
requests:
2416
ephemeral-storage: "20Gi"

0 commit comments

Comments
 (0)