updated workflow to not fail when nothing to push and fixed escaped c… #122
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Build Powershell 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_powershell_sdk: | |
name: Build powershell 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: Download OpenAPI Generator | |
run: | | |
wget https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.11.0/openapi-generator-cli-7.11.0.jar -O openapi-generator-cli.jar | |
- name: Run Prescript | |
id: prescript | |
run: | | |
node sdk-resources/prescript.js api-specs/idn | |
- name: Build V2024 SDK | |
id: buildV2024 | |
run: | | |
rm -rf ./PSSailpoint/v2024 | |
java -jar openapi-generator-cli.jar generate -i api-specs/idn/sailpoint-api.v2024.yaml -g powershell -o PSSailpoint/v2024 --global-property skipFormModel=false,apiDocs=true,modelDocs=true --config sdk-resources/v2024-config.yaml | |
node sdk-resources/postscript.js ./PSSailpoint/v2024 | |
- name: Build V3 SDK | |
id: buildV3 | |
if: steps.buildV2024.outcome == 'success' | |
run: | | |
rm -rf ./PSSailpoint/v3 | |
java -jar openapi-generator-cli.jar generate -i api-specs/idn/sailpoint-api.v3.yaml -g powershell -o PSSailpoint/v3 --global-property skipFormModel=false,apiDocs=true,modelDocs=true --config sdk-resources/v3-config.yaml | |
node sdk-resources/postscript.js ./PSSailpoint/v3 | |
- name: Build Beta SDK | |
id: buildBeta | |
if: steps.buildV3.outcome == 'success' | |
run: | | |
rm -rf ./PSSailpoint/beta | |
java -jar openapi-generator-cli.jar generate -i api-specs/idn/sailpoint-api.beta.yaml -g powershell -o PSSailpoint/beta --global-property skipFormModel=false,apiDocs=true,modelDocs=true --config sdk-resources/beta-config.yaml | |
node sdk-resources/postscript.js ./PSSailpoint/beta | |
- name: After SDK Build | |
if: steps.buildBeta.outcome == 'success' | |
shell: pwsh | |
run: | | |
$DebugPreference="Continue" | |
Import-Module -Name '.\PSSailpoint\beta\src\PSSailpoint.Beta' -Verbose | |
Import-Module -Name '.\PSSailpoint\v3\src\PSSailpoint.V3' -Verbose | |
Import-Module -Name '.\PSSailpoint\v2024\src\PSSailpoint.V2024' -Verbose | |
. .\PSSailpoint\Configuration.ps1 | |
. .\PSSailpoint\Pagination.ps1 | |
Install-Module -Name Pester -Force | |
Invoke-Pester -Output Detailed ./PSSailpoint/tests/ |