-
Notifications
You must be signed in to change notification settings - Fork 37
79 lines (67 loc) · 2.44 KB
/
TEST_FEATURE_BRANCH.yml
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
name: Test branch
on:
push:
branches:
- '**'
- '!main'
merge_group:
branches: [ main ]
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Import Secrets
id: secrets
uses: hashicorp/[email protected]
with:
url: ${{ secrets.VAULT_ADDR }}
method: approle
roleId: ${{ secrets.VAULT_ROLE_ID }}
secretId: ${{ secrets.VAULT_SECRET_ID }}
exportEnv: false # we rely on step outputs, no need for environment variables
secrets: |
secret/data/products/connectors/ci/common ARTIFACTORY_USR;
secret/data/products/connectors/ci/common ARTIFACTORY_PSW;
- name: Restore cache
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
# Use CI Nexus as co-located pull-through cache for Maven artifacts via ~/.m2/settings.xml
- name: 'Create settings.xml'
uses: s4u/[email protected]
with:
githubServer: false
servers: |
[{
"id": "camunda-nexus",
"username": "${{ steps.secrets.outputs.ARTIFACTORY_USR }}",
"password": "${{ steps.secrets.outputs.ARTIFACTORY_PSW }}"
}]
mirrors: '[{"url": "https://repository.nexus.camunda.cloud/content/groups/internal/", "id": "camunda-nexus", "mirrorOf": "camunda-nexus", "name": "camunda Nexus"}]'
- uses: actions/setup-node@v4
with:
node-version: '16'
- name: Install element templates CLI
run: npm install --global element-templates-cli
- name: Build Connectors
run: mvn --batch-mode clean test -PcheckFormat
- name: Lint Dockerfile - connector-runtime
uses: hadolint/[email protected]
with:
dockerfile: connector-runtime/connector-runtime-application/Dockerfile
- name: Lint Dockerfile - SaaS
uses: hadolint/[email protected]
with:
dockerfile: bundle/camunda-saas-bundle/Dockerfile
- name: Lint Dockerfile - default-bundle
uses: hadolint/[email protected]
with:
dockerfile: bundle/default-bundle/Dockerfile