You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: etc/releasing.md
+22-2Lines changed: 22 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -315,7 +315,27 @@ The new branch should be continuously tested on Evergreen. Update the "Display N
315
315
316
316
After creating the new minor release branch in the prior step, update Silk and Snyk to trach the new release branch.
317
317
318
-
For Silk, use the [create-silk-asset-group.py script](https://github.com/mongodb/mongo-c-driver/blob/master/tools/create-silk-asset-group.py) in the C Driver to create a new Silk asset group. Use `mongo-cxx-driver` as the name and prefix in place of `mongo-c-driver` accordingly.
318
+
For Silk, use the [create-silk-asset-group.py script](https://github.com/mongodb/mongo-c-driver/blob/master/tools/create-silk-asset-group.py) in the C Driver to create a new Silk asset group:
319
+
320
+
```bash
321
+
# Snyk credentials. Ask for these from a team member.
322
+
.~/.secrets/silk-creds.txt.
323
+
324
+
# Ensure correct release version number!
325
+
version="X.Y"
326
+
327
+
create_args=(
328
+
--silk-client-id "${SILK_CLIENT_ID:?}"
329
+
--silk-client-secret "${SILK_CLIENT_SECRET:?}"
330
+
--asset-id "mongo-cxx-driver-${version:?}"# Avoid '/' in Asset ID field.
For Snyk, configure and build the CXX Driver with `BSONCXX_POLY_USE_MNMLSTC=ON` (force download of mnmlstc/core sources) and no `CMAKE_PREFIX_PATH` entry to a C Driver installation (force download of C Driver sources), then run:
321
341
@@ -324,7 +344,7 @@ For Snyk, configure and build the CXX Driver with `BSONCXX_POLY_USE_MNMLSTC=ON`
324
344
.~/.secrets/snyk-creds.txt
325
345
326
346
# Name of the new minor release branch. Ensure this is correct!
0 commit comments