diff --git a/.github/workflows/conformance.yml b/.github/workflows/conformance.yml index 6a90b431..45a1cc10 100644 --- a/.github/workflows/conformance.yml +++ b/.github/workflows/conformance.yml @@ -24,7 +24,7 @@ jobs: github-token: ${{ secrets.GITHUB_TOKEN }} - name: Build generator - run: mvn clean package --projects parser,generator -am -Pnative + run: mvn clean package --projects parser,generator -am -Pshade,native - name: Build conformance executable run: | diff --git a/.github/workflows/native-plugin.yml b/.github/workflows/native-plugin.yml index 2e99c8a0..bc8edeb5 100644 --- a/.github/workflows/native-plugin.yml +++ b/.github/workflows/native-plugin.yml @@ -33,7 +33,7 @@ jobs: run: | echo "GRAALVM_HOME: $GRAALVM_HOME" echo "JAVA_HOME: $JAVA_HOME" - mvn clean package -Pnative --projects generator -am + mvn clean package -Pshade,native --projects generator -am - name: Upload build uses: actions/upload-artifact@v3 diff --git a/conformance/README.md b/conformance/README.md index 357507ed..5456f4a5 100644 --- a/conformance/README.md +++ b/conformance/README.md @@ -10,7 +10,7 @@ After encountering issues with Java wrapper scripts, we decided to compile the J ```shell # 1) build a native image of the generator -mvn clean package --projects parser,generator -am -Pnative +mvn clean package --projects parser,generator -am -Pshade,native # 2) test the native generator and build the conformance executable mvn clean package --projects runtime,compat,conformance -am -Pnative -PuseNativeGen