Skip to content

Commit

Permalink
Test build
Browse files Browse the repository at this point in the history
  • Loading branch information
mewim committed Nov 19, 2023
1 parent 2db1978 commit 0ef8271
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/linux-java-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,15 @@ jobs:
- uses: actions/checkout@v3

- name: Build Java lib for Linux
run: make java NUM_THREADS=$(nproc)
run: |
source /opt/rh/devtoolset-11/enable
make java NUM_THREADS=$(nproc)
- uses: actions/upload-artifact@v3
with:
name: java-lib-linux-x86_64
path: tools/java_api/build/libkuzu_java_native*

- uses: actions/upload-artifact@v3
with:
name: kuzu-linux-jar
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/linux-nodejs-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ jobs:

- name: Build Node.js native module
working-directory: tools/nodejs_api/package
run: npm i
run: |
source /opt/rh/devtoolset-11/enable
npm i
- name: Move Node.js native module
working-directory: tools/nodejs_api/package
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/linux-precompiled-bin-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ jobs:
run: /opt/python/cp310-cp310/bin/python -m pip install networkx --user

- name: Build precompiled binaries
run: /opt/python/cp310-cp310/bin/python build.py
run: |
source /opt/rh/devtoolset-11/enable
/opt/python/cp310-cp310/bin/python build.py
working-directory: ./scripts/pre-compiled-bins/

- uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 0ef8271

Please sign in to comment.