-
Notifications
You must be signed in to change notification settings - Fork 10
234 lines (189 loc) · 5.86 KB
/
pull_request.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
name: On pull request
on:
pull_request:
branches: [main]
jobs:
build_javascript:
runs-on: ubuntu-latest
steps:
- name: Get current time
uses: gerred/actions/current-time@master
id: current-time
- uses: actions/checkout@v2
- name: Commitlint and Other Shared Build Steps
uses: momentohq/standards-and-practices/github-actions/shared-build@gh-actions-v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Install Node
uses: actions/setup-node@v1
with:
node-version: 16
- name: Install protoc
run: ./install_protoc.sh
- name: Build package
run: |
set -e
set -x
export PATH=`pwd`/protoc/bin/:$PATH
pushd javascript
npm ci
npm run build
popd
shell: bash
build_javascriptweb:
runs-on: ubuntu-latest
steps:
- name: Get current time
uses: gerred/actions/current-time@master
id: current-time
- uses: actions/checkout@v2
- name: Install Node
uses: actions/setup-node@v1
with:
node-version: 16
- name: Install protoc
run: ./install_protoc.sh
- name: Build package
run: |
set -e
set -x
export PATH=`pwd`/protoc/bin/:$PATH
pushd javascript-web
npm ci
npm run build
popd
shell: bash
build_java:
runs-on: ubuntu-latest
steps:
- name: Get current time
uses: gerred/actions/current-time@master
id: current-time
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Install protoc
run: ./install_protoc.sh
- name: Build package
run: |
set -e
set -x
export PATH=`pwd`/protoc/bin/:$PATH
pushd java
./gradlew clean build
popd
shell: bash
build_kotlin:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Assume Role
uses: aws-actions/configure-aws-credentials@v1
with:
# TODO User: arn:aws:iam::***:user/shared-control-plane-deploy-user is not authorized to perform: sts:TagSession on resource: arn:aws:iam::***:role/control-plane-remote-deployer
role-skip-session-tagging: true
aws-access-key-id: ${{ secrets.PROD_CICD_DEPLOY_USER_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.PROD_CICD_DEPLOY_USER_SECRET_ACCESS_KEY }}
aws-region: us-west-2
role-to-assume: arn:aws:iam::401011790710:role/control-plane-remote-deployer
role-session-name: cicd-deployer
role-duration-seconds: 900
- name: Get CodeArtifact token
run: |
TOKEN=$(aws codeartifact get-authorization-token \
--domain momento-prod --domain-owner 401011790710 \
--query authorizationToken --output text)
echo "::add-mask::$TOKEN"
echo "CODEARTIFACT_AUTH_TOKEN=$TOKEN" >> $GITHUB_ENV
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Cache Gradle packages
uses: actions/cache@v1
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle
- name: Build
run: |
pushd kotlin-messages
./gradlew build
popd
build_python:
runs-on: ubuntu-latest
steps:
- name: Get current time
uses: gerred/actions/current-time@master
id: current-time
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Bootstrap poetry
run: |
curl -sL https://install.python-poetry.org | python - -y --version 1.4.2
- name: Configure poetry
run: poetry config virtualenvs.in-project true
- name: Install dependencies
working-directory: python
run: make install
- name: Build package
working-directory: python
run: make build
build_csharp:
runs-on: ubuntu-latest
steps:
- name: Get current time
uses: gerred/actions/current-time@master
id: current-time
- uses: actions/checkout@v2
- uses: actions/setup-dotnet@v1
with:
dotnet-version: "6.0.x"
- name: Build
run: |
pushd csharp
dotnet build
popd
shell: bash
build_rust:
runs-on: ubuntu-latest
steps:
- name: Get current time
uses: gerred/actions/current-time@master
id: current-time
- uses: actions/checkout@v2
- name: Install protoc
run: ./install_protoc.sh
- name: Build package
run: |
set -e
set -x
pushd rust
echo make sure the code generator runs first so the files are there when we build momento-protos
cargo build -p codegenerator
cargo build
popd
shell: bash
- name: Set dryrun Cargo version
run: |
pushd rust
chmod +x set_cargo_package_version.sh
./set_cargo_package_version.sh 42.42.42
popd
shell: bash
- name: Release dryrun
env:
# TODO: Match the token with https://github.com/momentohq/client-sdk-rust/blob/main/.github/workflows/cd.yml
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_PUBLISH_TOKEN }}
run: |
set -e
set -x
pushd rust
cargo publish -p momento-protos --verbose --dry-run --allow-dirty --no-verify
popd
shell: bash