Skip to content

Commit

Permalink
correct the extraction of libraries from the jar
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosuc3m committed Sep 11, 2024
1 parent 8262875 commit 4c96c88
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -144,10 +144,11 @@ jobs:
echo ${{steps.mvn_info.outputs.name}}-${{steps.mvn_info.outputs.version}}.jar
- name: Extract compiled native libraries to target fodler libs
run: |
jar xvf ubuntu-artifact/${{steps.mvn_info.outputs.name}}-${{steps.mvn_info.outputs.version}}.jar net/clesperanto/linux-x86_64
#jar xf windows-artifact/${{steps.mvn_info.outputs.name}}-${{steps.mvn_info.outputs.version}}.jar net/clesperanto/windows-x86_64
# jar xf macos-artifact/${{steps.mvn_info.outputs.name}}-${{steps.mvn_info.outputs.version}}.jar net/clesperanto/macos-arm64
mkdir -p libs
jar xvf ubuntu-artifact/${{steps.mvn_info.outputs.name}}-${{steps.mvn_info.outputs.version}}.jar libs/net/clesperanto/linux-x86_64
#jar xf windows-artifact/${{steps.mvn_info.outputs.name}}-${{steps.mvn_info.outputs.version}}.jar libs/net/clesperanto/windows-x86_64
# jar xf macos-artifact/${{steps.mvn_info.outputs.name}}-${{steps.mvn_info.outputs.version}}.jar libs/net/clesperanto/macos-arm64
mv net/clesperanto libs/net/
- name: understand what is decompressed
run: |
ls libs
Expand Down

0 comments on commit 4c96c88

Please sign in to comment.