Skip to content

Commit

Permalink
create big final deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosuc3m authored Oct 17, 2024
1 parent ddef720 commit 745c124
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,31 @@ env:
jobs:
build-os:
strategy:
fail-fast: false
fail-fast: true
matrix:
name:
- ubuntu
- windows
- macos
include:
- name: ubuntu
os: ubuntu-latest
c-compiler: gcc
cxx-compiler: g++
cmake-build-type: Release
cmake-build-flag: ""
- name: windows
os: windows-latest
c-compiler: cl.exe
cxx-compiler: cl.exe
cmake-build-type: Release
cmake-build-flag: -A x64
- name: macos
os: macos-14
c-compiler: clang
cxx-compiler: clang++
cmake-build-type: Release
cmake-build-flag: ""
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -124,6 +138,10 @@ jobs:
run: |
jar xf 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/macosx-arm64
mkdir -p libs
mv net/clesperanto/* libs/
Expand Down

0 comments on commit 745c124

Please sign in to comment.