Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
172 changes: 172 additions & 0 deletions .github/workflows/.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,172 @@
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL Advanced"

on:
push:
branches: [ "develop" ]
pull_request:
branches: [ "develop" ]
schedule:
- cron: '30 10 * * 4'

jobs:
analyze:
name: Analyze (${{ matrix.language }})
# Runner size impacts CodeQL analysis time. To learn more, please see:
# - https://gh.io/recommended-hardware-resources-for-running-codeql
# - https://gh.io/supported-runners-and-hardware-resources
# - https://gh.io/using-larger-runners (GitHub.com only)
# Consider using larger runners or machines with greater resources for possible analysis time improvements.
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
permissions:
# required for all workflows
security-events: write

# required to fetch internal or private CodeQL packs
packages: read

# only required for workflows in private repositories
actions: read
contents: read

strategy:
fail-fast: false
matrix:
include:
- language: actions
build-mode: none
- language: c-cpp
build-mode: autobuild
- language: javascript-typescript
build-mode: none
- language: python
build-mode: none
# CodeQL supports the following values keywords for 'language': 'actions', 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'rust', 'swift'
# Use `c-cpp` to analyze code written in C, C++ or both
# Use 'java-kotlin' to analyze code written in Java, Kotlin or both
# Use 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both
# To learn more about changing the languages that are analyzed or customizing the build mode for your analysis,
# see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/customizing-your-advanced-setup-for-code-scanning.
# If you are analyzing a compiled language, you can modify the 'build-mode' for that language to customize how
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
steps:
- name: Checkout repository
uses: actions/checkout@v4

# Add any setup steps before running the `github/codeql-action/init` action.
# This includes steps like installing compilers or runtimes (`actions/setup-node`
# or others). This is typically only required for manual builds.
# - name: Setup runtime (example)
# uses: actions/setup-example@v1

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.

# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
# queries: security-extended,security-and-quality

# If the analyze step fails for one of the languages you are analyzing with
# "We were unable to automatically build your code", modify the matrix above
# to set the build mode to "manual" for that language. Then modify this step
# to build your code.
# ℹ️ Command-line programs to run using the OS shell.
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
- if: matrix.build-mode == 'manual'
shell: bash
run: |
echo 'If you are using a "manual" build mode for one or more of the' \
'languages you are analyzing, replace this with the commands to build' \
'your code, for example:'
echo ' make bootstrap'
echo ' make release'
exit 1
- name: Rational Test Automation Server GitHub Action
# You may pin to the exact commit or the version.
# uses: IBM/devopsauto-testserver-actions@c704855bdbbae4f0df152919d00fb0bd40f67ee0
uses: IBM/devopsauto-testserver-actions@v1
with:
# Rational Test Automation Server URL
serverUrl:
# Rational Test Automation Server Offline Token
offlineToken:
# Team Space name
teamspace:
# Project name
project:
# Branch name in which the test exists
branch:
# AssetId of the test in Rational Test Automation Server.
assetId:
# Optional. Test environment corresponding to the test. Mandatory to input the value if you want to run API test.
environment: # optional
# Optional. Comma (,) delimited values of datasets for the job to run, For example: source:replacement;source:replacement
datasets: # optional
# Optional. Labels corresponding to the test. For example: label1, label2
labels: # optional
# Optional. Secrets collection name for the job to run.
secretsCollection: # optional
# Optional. Variables corresponding to the test. You must enter the variables in the format: name_of_the_variable=value_of_the_variable
variables: # optional

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"
- name: Algorithmia build-wait
# You may pin to the exact commit or the version.
# uses: algorithmiaio/build-wait-action@b9a3dddd00cda265df65e84a71a4cb32272db270
uses: algorithmiaio/[email protected]
with:
# your Algorithmia API key
mgmt_api_key:
# The API address for the Algorithmia Cluster you wish to connect to
api_address: # optional, default is https://api.algorithmia.com
# The name of the Algorithm you want to test
algorithm_name:
- name: Deploy to Algorithmia
# You may pin to the exact commit or the version.
# uses: algorithmiaio/algorithmia-modeldeployment-action@14310c6bd07101452e0a1bc435aa2e306e62aa30
uses: algorithmiaio/[email protected]
with:
# Algorithmia API Key, used when uploading the model file
algorithmia_api_key:
# Algorithmia Username, used as Git Commit Username and as part of default model upload path
algorithmia_username:
# Algorithmia Email, used as Git Commit Email
algorithmia_email: # optional, default is [email protected]
# Algorithmia Password. Only required if the algorithm is hosted on Algorithmia.
algorithmia_password: # optional
# Github username owning the algorithm repository, used to clone the algorithm repository. Only required if the algorithm is hosted on Github.
github_username: # optional
# Github Personal Access Token, used to clone the algorithm repository. Only required if the algorithm is hosted on Github.
github_pat: # optional
# Algorithmia Algorithm name
algorithmia_algoname:
# Algorithmia data collection name to upload the model file
algorithmia_uploadpath: # default is data://$ALGORITHMIA_USERNAME/$ALGORITHMIA_ALGONAME
# Path of the model file to be uploaded to Algorithmia
model_path: # default is model.pkl
# Path of the notebook to be executed by this action
notebook_path: # optional, default is model_training.ipynb
# Git host for the Algorithmia algorithm repository. Change to git.algorithmia.com if the algorithm is hosted on Algorithmia Marketplace or git.YOUR_DOMAIN for enterprise installations.
git_host: # optional, default is github.com
# API endpoint Algorithmia installation, for enterprise customers.
algorithmia_api: # optional, default is https://api.algorithmia.com

172 changes: 172 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,172 @@
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL Advanced"

on:
push:
branches: [ "develop" ]
pull_request:
branches: [ "develop" ]
schedule:
- cron: '30 10 * * 4'

jobs:
analyze:
name: Analyze (${{ matrix.language }})
# Runner size impacts CodeQL analysis time. To learn more, please see:
# - https://gh.io/recommended-hardware-resources-for-running-codeql
# - https://gh.io/supported-runners-and-hardware-resources
# - https://gh.io/using-larger-runners (GitHub.com only)
# Consider using larger runners or machines with greater resources for possible analysis time improvements.
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
permissions:
# required for all workflows
security-events: write

# required to fetch internal or private CodeQL packs
packages: read

# only required for workflows in private repositories
actions: read
contents: read

strategy:
fail-fast: false
matrix:
include:
- language: actions
build-mode: none
- language: c-cpp
build-mode: autobuild
- language: javascript-typescript
build-mode: none
- language: python
build-mode: none
# CodeQL supports the following values keywords for 'language': 'actions', 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'rust', 'swift'
# Use `c-cpp` to analyze code written in C, C++ or both
# Use 'java-kotlin' to analyze code written in Java, Kotlin or both
# Use 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both
# To learn more about changing the languages that are analyzed or customizing the build mode for your analysis,
# see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/customizing-your-advanced-setup-for-code-scanning.
# If you are analyzing a compiled language, you can modify the 'build-mode' for that language to customize how
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
steps:
- name: Checkout repository
uses: actions/checkout@v4

# Add any setup steps before running the `github/codeql-action/init` action.
# This includes steps like installing compilers or runtimes (`actions/setup-node`
# or others). This is typically only required for manual builds.
# - name: Setup runtime (example)
# uses: actions/setup-example@v1

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.

# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
# queries: security-extended,security-and-quality

# If the analyze step fails for one of the languages you are analyzing with
# "We were unable to automatically build your code", modify the matrix above
# to set the build mode to "manual" for that language. Then modify this step
# to build your code.
# ℹ️ Command-line programs to run using the OS shell.
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
- if: matrix.build-mode == 'manual'
shell: bash
run: |
echo 'If you are using a "manual" build mode for one or more of the' \
'languages you are analyzing, replace this with the commands to build' \
'your code, for example:'
echo ' make bootstrap'
echo ' make release'
exit 1
- name: Rational Test Automation Server GitHub Action
# You may pin to the exact commit or the version.
# uses: IBM/devopsauto-testserver-actions@c704855bdbbae4f0df152919d00fb0bd40f67ee0
uses: IBM/devopsauto-testserver-actions@v1
with:
# Rational Test Automation Server URL
serverUrl:
# Rational Test Automation Server Offline Token
offlineToken:
# Team Space name
teamspace:
# Project name
project:
# Branch name in which the test exists
branch:
# AssetId of the test in Rational Test Automation Server.
assetId:
# Optional. Test environment corresponding to the test. Mandatory to input the value if you want to run API test.
environment: # optional
# Optional. Comma (,) delimited values of datasets for the job to run, For example: source:replacement;source:replacement
datasets: # optional
# Optional. Labels corresponding to the test. For example: label1, label2
labels: # optional
# Optional. Secrets collection name for the job to run.
secretsCollection: # optional
# Optional. Variables corresponding to the test. You must enter the variables in the format: name_of_the_variable=value_of_the_variable
variables: # optional

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"
- name: Algorithmia build-wait
# You may pin to the exact commit or the version.
# uses: algorithmiaio/build-wait-action@b9a3dddd00cda265df65e84a71a4cb32272db270
uses: algorithmiaio/[email protected]
with:
# your Algorithmia API key
mgmt_api_key:
# The API address for the Algorithmia Cluster you wish to connect to
api_address: # optional, default is https://api.algorithmia.com
# The name of the Algorithm you want to test
algorithm_name:
- name: Deploy to Algorithmia
# You may pin to the exact commit or the version.
# uses: algorithmiaio/algorithmia-modeldeployment-action@14310c6bd07101452e0a1bc435aa2e306e62aa30
uses: algorithmiaio/[email protected]
with:
# Algorithmia API Key, used when uploading the model file
algorithmia_api_key:
# Algorithmia Username, used as Git Commit Username and as part of default model upload path
algorithmia_username:
# Algorithmia Email, used as Git Commit Email
algorithmia_email: # optional, default is [email protected]
# Algorithmia Password. Only required if the algorithm is hosted on Algorithmia.
algorithmia_password: # optional
# Github username owning the algorithm repository, used to clone the algorithm repository. Only required if the algorithm is hosted on Github.
github_username: # optional
# Github Personal Access Token, used to clone the algorithm repository. Only required if the algorithm is hosted on Github.
github_pat: # optional
# Algorithmia Algorithm name
algorithmia_algoname:
# Algorithmia data collection name to upload the model file
algorithmia_uploadpath: # default is data://$ALGORITHMIA_USERNAME/$ALGORITHMIA_ALGONAME
# Path of the model file to be uploaded to Algorithmia
model_path: # default is model.pkl
# Path of the notebook to be executed by this action
notebook_path: # optional, default is model_training.ipynb
# Git host for the Algorithmia algorithm repository. Change to git.algorithmia.com if the algorithm is hosted on Algorithmia Marketplace or git.YOUR_DOMAIN for enterprise installations.
git_host: # optional, default is github.com
# API endpoint Algorithmia installation, for enterprise customers.
algorithmia_api: # optional, default is https://api.algorithmia.com

Loading