Skip to content

Commit

Permalink
Build tklog and tkrng.
Browse files Browse the repository at this point in the history
  • Loading branch information
cqc-alec committed Aug 22, 2023
1 parent 53b0c99 commit 72a16d5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build_libs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand All @@ -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:
Expand Down

0 comments on commit 72a16d5

Please sign in to comment.