Skip to content

Update auth to use form parameters and cleanup repo to be ready for r… #10

Update auth to use form parameters and cleanup repo to be ready for r…

Update auth to use form parameters and cleanup repo to be ready for r… #10

Workflow file for this run

name: "Build Python SDK"
env:
SAIL_CLIENT_ID: ${{ secrets.SDK_TEST_TENANT_CLIENT_ID }}
SAIL_CLIENT_SECRET: ${{ secrets.SDK_TEST_TENANT_CLIENT_SECRET }}
SAIL_BASE_URL: ${{ secrets.SDK_TEST_TENANT_BASE_URL }}
on:
pull_request:
branches:
- main
workflow_dispatch:
jobs:
build_python_sdk:
name: Build Python SDK
runs-on: ubuntu-latest
steps:
- name: Checkout PR branch
uses: actions/checkout@v3
with:
ref: ${{ github.ref }}
- name: Checkout API Specs Repo
uses: actions/checkout@v3
with:
repository: sailpoint-oss/api-specs
path: api-specs
ref: main
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: "16"
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Run Prescript
id: prescript
run: |
node sdk-resources/prescript.js api-specs/idn
- name: Build V3 SDK
id: buildV3
if: steps.prescript.outcome == 'success'
run: |
rm -rf ./sailpoint/v3
java -jar openapi-generator-cli.jar generate -i api-specs/idn/sailpoint-api.v3.yaml -g python -o . --global-property skipFormModel=false --config sdk-resources/v3-config.yaml --enable-post-process-file
- name: Build Beta SDK
id: buildBeta
if: steps.buildV3.outcome == 'success'
run: |
rm -rf ./sailpoint/beta
java -jar openapi-generator-cli.jar generate -i api-specs/idn/sailpoint-api.beta.yaml -g python -o . --global-property skipFormModel=false --config sdk-resources/beta-config.yaml --enable-post-process-file
node sdk-resources/postscript.js ./sailpoint/beta
- name: After SDK Build
if: steps.buildCC.outcome == 'success'
run: |
pip install -r requirements.txt
pip install -e .
python validation_test.py -v