-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy path.project-keeper.yml
More file actions
65 lines (63 loc) · 2.05 KB
/
Copy path.project-keeper.yml
File metadata and controls
65 lines (63 loc) · 2.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
sources:
- type: maven
path: pom.xml
modules:
- jar_artifact
- integration_tests
- type: npm
path: extension/package.json
artifacts:
- dist/cloud-storage-extension.js
version:
fromSource: pom.xml
linkReplacements:
build:
runnerOs: ubuntu-22.04
freeDiskSpace: true
exasolDbVersions:
- "2026.1.0"
- "2025.1.10"
workflows:
- name: ci-build.yml
stepCustomizations:
- action: INSERT_AFTER
job: matrix-build
stepId: enable-testcontainer-reuse
content:
name: Build extension
id: build-extension
run: |
# Packaged JAR is required for building the extension
mvn --batch-mode package -DossindexSkip=true -DskipTests
cd extension
npm ci --ignore-scripts
npm run build
npm run test
npm run lint
- action: INSERT_AFTER
job: matrix-build
stepId: build-extension
content:
name: Fix VM Crash in UDFs
id: fix-vm-crash
run: sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0
- name: release.yml
stepCustomizations:
- action: INSERT_AFTER
stepId: verify-release
content:
name: Build extension
id: build-extension
run: |
# Packaged JAR is required for building the extension
mvn --batch-mode package -DossindexSkip=true -DskipTests -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn
cd extension
npm ci --ignore-scripts
npm run build
- action: REPLACE
stepId: build
content:
name: Build project
id: build
# Omit clean: we must not delete the extension built in the previous step.
run: mvn --batch-mode -DskipTests -DossindexSkip=true verify -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn