This article describes the process for configuring automated uploads of mobile app builds to Data Theorem, from a CI/CD pipeline in Screwdriver. At the high-level the process is the following:
...
Please visit https://www.securetheorem.com/sdlc/api_access and copy the key labeled as “Upload API Key”.
Step 2: Save the Upload API Key as a Secret in Screwdriver
...
Note: For this example we'll assume it's located in .in $SD_SOURCE_DIR
/build/apps/binary.apk
.
Second, is the value that should go in the requires
section, which is the name of the job that is in charge of building the binary.
...
Info |
---|
The environment variable Please see the documentation for details and other environment variable |
Step 4: Create a bash script for uploading a build to Data Theorem
...
Code Block | ||
---|---|---|
| ||
# .... # Top level cache: event: [path/to/built/binary$SD_SOURCE_DIR/build/apps/] # Things to be cached/shared between jobs # .... jobs: main: # ... # .... |
...