diff --git a/.github/workflows/build_libs.yml b/.github/workflows/build_libs.yml index 747a8e1567..9cfb81f90a 100644 --- a/.github/workflows/build_libs.yml +++ b/.github/workflows/build_libs.yml @@ -38,11 +38,11 @@ jobs: build_libraries: name: build library needs: changes - if: ${{ needs.changes.outputs.libs != '[]' && needs.changes.outputs.libs != '' }} + # if: ${{ needs.changes.outputs.libs != '[]' && needs.changes.outputs.libs != '' }} strategy: matrix: os: ['ubuntu-22.04', 'macos-12', 'windows-2022'] - lib: ${{ fromJson(needs.changes.outputs.libs) }} + lib: ['tklog', 'tkrng'] build_type: ['Release', 'Debug'] runs-on: ${{ matrix.os }} steps: @@ -86,11 +86,11 @@ jobs: macos-m1: name: build library (macos-m1) needs: changes - if: ${{ needs.changes.outputs.libs != '[]' && needs.changes.outputs.libs != '' }} + # if: ${{ needs.changes.outputs.libs != '[]' && needs.changes.outputs.libs != '' }} runs-on: ['self-hosted', 'macOS', 'ARM64'] strategy: matrix: - lib: ${{ fromJson(needs.changes.outputs.libs) }} + lib: ['tklog', 'tkrng'] build_type: ['Release', 'Debug'] steps: - uses: actions/checkout@v3 @@ -117,11 +117,11 @@ jobs: manylinux: name: build library (manylinux) needs: changes - if: ${{ needs.changes.outputs.libs != '[]' && needs.changes.outputs.libs != '' }} + # if: ${{ needs.changes.outputs.libs != '[]' && needs.changes.outputs.libs != '' }} runs-on: ubuntu-22.04 strategy: matrix: - lib: ${{ fromJson(needs.changes.outputs.libs) }} + lib: ['tklog', 'tkrng'] env: UPLOAD_PACKAGE: "NO" steps: