diff --git a/.github/workflows/build-js-steps.yml b/.github/workflows/build-js-steps.yml index 673a0612..d614895f 100644 --- a/.github/workflows/build-js-steps.yml +++ b/.github/workflows/build-js-steps.yml @@ -24,6 +24,12 @@ jobs: runs-on: ${{ inputs.platform }}-latest steps: + - name: Check for OpenSSL 1.1 + shell: bash + run: | + ls /usr/lib/x86_64-linux-gnu/libssl.so.1.1 || echo "libssl 1.1 not found" + ldd ./runtimes/linux-x64/native/libonnxruntime.so | grep ssl || true + - name: Checkout repository uses: actions/checkout@v4 with: diff --git a/.github/workflows/foundry-local-sdk-build.yml b/.github/workflows/foundry-local-sdk-build.yml index 5132381e..3aee9fe0 100644 --- a/.github/workflows/foundry-local-sdk-build.yml +++ b/.github/workflows/foundry-local-sdk-build.yml @@ -41,4 +41,17 @@ jobs: with: version: '0.9.0.${{ github.run_number }}' platform: 'macos' - secrets: inherit \ No newline at end of file + secrets: inherit + + build-cs-linux: + uses: ./.github/workflows/build-cs-steps.yml + with: + version: '0.9.0.${{ github.run_number }}' + platform: 'ubuntu' + secrets: inherit + build-js-linux: + uses: ./.github/workflows/build-js-steps.yml + with: + version: '0.9.0.${{ github.run_number }}' + platform: 'ubuntu' + secrets: inherit