Skip to content

feat: add graal native image profile for logback library #1246

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Jan 16, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
feat:add graal native image profile for logback library
  • Loading branch information
cindy-peng committed Jan 11, 2024
commit f155d995617790697bc6c97531eadc9e43849854
3 changes: 1 addition & 2 deletions owlbot.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@
'.github/blunderbuss.yml',
'CONTRIBUTING.md',
'.github/auto-label.yaml',
".github/release-please.yml",
".kokoro/build.sh"
".github/release-please.yml"
])

# --------------------------------------------------------------------------
Expand Down
8 changes: 8 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -225,4 +225,12 @@
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>native</id>
<properties>
<test>!LoggingAppenderTest</test>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please re-add the comment that was in the build.sh file about why we're skipping this

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please re-add the comment that was in the build.sh file about why we're skipping this

Good feedback! Added the comment.

</properties>
</profile>
</profiles>
</project>