-
Notifications
You must be signed in to change notification settings - Fork 22
98 lines (96 loc) · 3.02 KB
/
package.yml
File metadata and controls
98 lines (96 loc) · 3.02 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
---
name: Package CDK
on:
workflow_call: {}
jobs:
build:
runs-on: ubuntu-latest
permissions: {}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
- name: Setup Node.js
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238
with:
node-version: 24.x
- name: Install dependencies
run: npm ci
- name: build
run: npx projen build
package-js:
needs: build
runs-on: ubuntu-latest
permissions: {}
steps:
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238
with:
node-version: 24.x
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
- name: Install Dependencies
run: npm ci
- name: Create js artifact
run: npx projen compile && npx projen package:js
package-java:
needs: build
runs-on: ubuntu-latest
permissions: {}
steps:
- uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654
with:
distribution: temurin
java-version: 21.x
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238
with:
node-version: 24.x
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
- name: Install Dependencies
run: npm ci
- name: Create java artifact
run: npx projen compile && npx projen package:java
package-python:
needs: build
runs-on: ubuntu-latest
permissions: {}
steps:
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
with:
python-version: 3.x
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238
with:
node-version: 24.x
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
- name: Install Dependencies
run: npm ci
- name: Create python artifact
run: npx projen compile && npx projen package:python
package-dotnet:
needs: build
runs-on: ubuntu-latest
permissions: {}
steps:
- uses: actions/setup-dotnet@baa11fbfe1d6520db94683bd5c7a3818018e4309
with:
dotnet-version: 9.0.x
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238
with:
node-version: 24.x
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
- name: Install Dependencies
run: npm ci
- name: Create dotnet artifact
run: npx projen compile && npx projen package:dotnet
package-go:
needs: build
runs-on: ubuntu-latest
permissions: {}
steps:
- uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417
with:
go-version: ^1.25.0
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238
with:
node-version: 24.x
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
- name: Install Dependencies
run: npm ci
- name: Create go artifact
run: npx projen compile && npx projen package:go