Skip to content

Commit

Permalink
Cleaning up.
Browse files Browse the repository at this point in the history
  • Loading branch information
agarny committed May 2, 2024
2 parents b63159e + 609b9e1 commit 3ba59b4
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/LLVMClang.yml
Expand Up @@ -8,3 +8,4 @@ jobs:
uses: ./.github/workflows/buildThirdPartyLibrary.yml
with:
third_party_library_name: LLVMCLANG
wasm_support: false
1 change: 1 addition & 0 deletions .github/workflows/OpenSSL.yml
Expand Up @@ -8,3 +8,4 @@ jobs:
uses: ./.github/workflows/buildThirdPartyLibrary.yml
with:
third_party_library_name: OPENSSL
wasm_support: false
7 changes: 6 additions & 1 deletion .github/workflows/buildThirdPartyLibrary.yml
Expand Up @@ -6,6 +6,10 @@ on:
third_party_library_name:
required: true
type: string
wasm_support:
required: false
type: boolean
default: true

jobs:
libraries:
Expand Down Expand Up @@ -82,6 +86,7 @@ jobs:
path: ./build/*.tar.gz
webassembly:
name: WebAssembly
if: ${{ inputs.wasm_support }}
runs-on: macos-latest
env:
BUILDCACHE_ACCURACY: STRICT
Expand Down Expand Up @@ -113,4 +118,4 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: WebAssembly
path: ./build/*wasm.tar.gz
path: ./build/*.wasm.tar.gz
1 change: 1 addition & 0 deletions .github/workflows/libcurl.yml
Expand Up @@ -8,3 +8,4 @@ jobs:
uses: ./.github/workflows/buildThirdPartyLibrary.yml
with:
third_party_library_name: LIBCURL
wasm_support: false
1 change: 1 addition & 0 deletions .github/workflows/libssh2.yml
Expand Up @@ -8,3 +8,4 @@ jobs:
uses: ./.github/workflows/buildThirdPartyLibrary.yml
with:
third_party_library_name: LIBSSH2
wasm_support: false

0 comments on commit 3ba59b4

Please sign in to comment.