@@ -76,17 +76,12 @@ jobs:
76
76
- uses : actions/checkout@v2
77
77
with :
78
78
submodules : recursive
79
- - uses : actions-rs/toolchain@v1
80
- with :
81
- toolchain : stable
82
79
- uses : actions/setup-node@v1
83
80
with :
84
81
node-version : 16
85
82
# Don't build during install phase since we're going to explicitly build
86
83
- run : npm ci --ignore-scripts
87
- - run : npm run build
88
- env :
89
- BUILD_CORE_RELEASE : true
84
+ - run : npm run build -- --ignore @temporalio/core-bridge
90
85
91
86
# Do docs stuff (only on one host)
92
87
- name : Build docs
@@ -117,9 +112,6 @@ jobs:
117
112
- uses : actions/checkout@v2
118
113
with :
119
114
submodules : recursive
120
- - uses : actions-rs/toolchain@v1
121
- with :
122
- toolchain : stable
123
115
- uses : actions/setup-node@v1
124
116
with :
125
117
node-version : 16
@@ -171,7 +163,7 @@ jobs:
171
163
# Don't build during install phase since we're going to explicitly build
172
164
- run : npm ci --ignore-scripts
173
165
- name : Compile all non-rust code
174
- run : npm run ci- build-no-rust
166
+ run : npm run build -- --ignore @temporalio/core-bridge
175
167
- name : Cross compile rust code
176
168
env :
177
169
RUSTFLAGS : ${{ matrix.rustflags }}
@@ -271,8 +263,8 @@ jobs:
271
263
env :
272
264
# TODO: get a permanent cloud namespace for CI
273
265
# These env vars are ignored by the local server example
274
- TEMPORAL_ADDRESS : roey.temporal-dev .tmprl.cloud
275
- TEMPORAL_NAMESPACE : roey.temporal-dev
266
+ TEMPORAL_ADDRESS : sdk-ci.a2dd6 .tmprl.cloud
267
+ TEMPORAL_NAMESPACE : sdk-ci.a2dd6
276
268
TEMPORAL_CLIENT_CERT_PATH : /tmp/temporal-certs/client.pem
277
269
TEMPORAL_CLIENT_KEY_PATH : /tmp/temporal-certs/client.key
278
270
TEMPORAL_TASK_QUEUE : ${{ format('{0}-{1}-{2}', matrix.os, matrix.node, matrix.target) }}
@@ -290,9 +282,7 @@ jobs:
290
282
typescript-repo-ref : ${{github.event.pull_request.head.ref}}
291
283
292
284
stress-tests :
293
- # GH actions is a bit limited here and won't accept the current ref.
294
- # When changing stress.yaml, make sure to update the branch name below.
295
- uses : temporalio/sdk-typescript/.github/workflows/stress.yml@main
285
+ uses : ./.github/workflows/stress.yml
296
286
with :
297
287
test-type : ci-stress
298
288
test-timeout-minutes : 20
0 commit comments