Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@ jobs:
# Runs a single command using the runners shell
- name: Run Build (Latest)
run: |
./gradlew --stacktrace --no-problems-report -PskipNodeTests=true -PweaveVersion=2.11.0-SNAPSHOT -PweaveTestSuiteVersion=2.11.0-SNAPSHOT -PweaveSuiteVersion=2.11.0-SNAPSHOT build
./gradlew --stacktrace --no-problems-report -PskipNodeTests=true build
shell: bash

# Generate distro
- name: Create Distro
run: ./gradlew --stacktrace --no-problems-report -PweaveVersion=2.11.0-SNAPSHOT -PweaveTestSuiteVersion=2.11.0-SNAPSHOT -PweaveSuiteVersion=2.11.0-SNAPSHOT native-cli:distro
run: ./gradlew --stacktrace --no-problems-report native-cli:distro
shell: bash

# Install Python build dependencies (setuptools/wheel may be missing on Windows runners)
Expand All @@ -52,7 +52,7 @@ jobs:

# Generate native-lib python wheel
- name: Create Native Lib Python Wheel
run: ./gradlew --stacktrace --no-problems-report -PweaveVersion=2.11.0-SNAPSHOT native-lib:buildPythonWheel
run: ./gradlew --stacktrace --no-problems-report native-lib:buildPythonWheel
shell: bash

# Setup Node.js for native-lib Node package
Expand All @@ -63,12 +63,12 @@ jobs:

# Stage the native lib and build Node package (npm install, node-gyp, tsc, npm pack)
- name: Create Native Lib Node Package
run: ./gradlew --stacktrace --no-problems-report -PweaveVersion=2.11.0-SNAPSHOT native-lib:buildNodePackage
run: ./gradlew --stacktrace --no-problems-report native-lib:buildNodePackage
shell: bash

# Run Node.js tests
- name: Run Node.js Tests
run: ./gradlew --stacktrace --no-problems-report -PweaveVersion=2.11.0-SNAPSHOT native-lib:nodeTest
run: ./gradlew --stacktrace --no-problems-report native-lib:nodeTest
shell: bash

# Upload the artifact file
Expand Down
Loading