diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 56197e65..a6510f59 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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) @@ -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 @@ -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