Skip to content

Commit

Permalink
added profile to maven command
Browse files Browse the repository at this point in the history
  • Loading branch information
ennerf committed Dec 20, 2023
1 parent 773c272 commit f1a7673
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/conformance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/native-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion conformance/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f1a7673

Please sign in to comment.