Skip to content

Commit

Permalink
remove native image for windows and mac, add version and arch to binary
Browse files Browse the repository at this point in the history
  • Loading branch information
robfrank committed Jun 1, 2024
1 parent 1faaee0 commit bf71498
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/mvn-native-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,7 @@ on:

jobs:
build:
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest

steps:
- uses: xembly/workflow-manager@v1
Expand Down Expand Up @@ -38,5 +35,4 @@ jobs:
- name: Upload binary
uses: actions/upload-artifact@v4
with:
name: arcadedb-${{ matrix.os }}-${{ runner.arch }}
path: ./native/target/arcadedb
path: ./native/target/arcadedb-*
2 changes: 1 addition & 1 deletion native/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@
</executions>
<configuration>
<mainClass>com.arcadedb.server.ArcadeDBServer</mainClass>
<imageName>arcadedb</imageName>
<imageName>arcadedb-${project.version}-${os.arch}</imageName>
<buildArgs>
<buildArg>-H:+ReportExceptionStackTraces</buildArg>
<!-- <buildArg>-H:+StaticExecutableWithDynamicLibC</buildArg> -->
Expand Down

0 comments on commit bf71498

Please sign in to comment.