Skip to content

Commit

Permalink
Produce only one asset (with xpress) (#764)
Browse files Browse the repository at this point in the history
Given xpress is now dynamically loaded at runtime it is no more
necessary to produce several assets.
  • Loading branch information
JasonMarechal25 authored Feb 29, 2024
1 parent bafa6d0 commit a2559fe
Show file tree
Hide file tree
Showing 8 changed files with 30 additions and 13 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build_centos7.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,11 @@ jobs:
container: 'antaresrte/rte-antares:centos7-system-deps'
strategy:
matrix:
xprs: [ { value: XPRESS-ON, ref: 8.13a },
xprs: [
# { value: XPRESS-ON, ref: 8.13a },
{ value: XPRESS-ON, ref: 9.2.5 },
{ value: XPRESS-OFF } ]
# { value: XPRESS-OFF }
]
env:
XPRESSDIR: ${{ github.workspace }}/xpress
XPRESS: ${{ github.workspace }}/xpress/bin
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/build_oracle8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,10 @@ jobs:
container: 'oraclelinux:8'
strategy:
matrix:
xprs: [ { value: XPRESS-ON, ref: 8.13a },
xprs: [ #{ value: XPRESS-ON, ref: 8.13a },
{ value: XPRESS-ON, ref: 9.2.5 },
{ value: XPRESS-OFF } ]
# { value: XPRESS-OFF }
]
needs: [ versions ]
env:
XPRESSDIR: ${{ github.workspace }}/xpress
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/build_ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,11 @@ jobs:
strategy:
matrix:
os: [ ubuntu-20.04 ]
xprs: [ { value: XPRESS-ON, ref: 8.13a },
xprs: [
#{ value: XPRESS-ON, ref: 8.13a },
{ value: XPRESS-ON, ref: 9.2.5 },
{ value: XPRESS-OFF } ]
# { value: XPRESS-OFF }
]
env:
XPRESSDIR: ${{ github.workspace }}/xpress
XPRESS: ${{ github.workspace }}/xpress/bin
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/build_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@ jobs:
matrix:
os: [ windows-latest ]
triplet: [ x64-windows ]
xprs: [ { value: XPRESS-ON, ref: 8.13a },
xprs: [ #{ value: XPRESS-ON, ref: 8.13a },
{ value: XPRESS-ON, ref: 9.2.5 },
{ value: XPRESS-OFF } ]
#{ value: XPRESS-OFF }
]
env:
XPRESSDIR: ${{ github.workspace }}\xpress
XPRESS: ${{ github.workspace }}\xpress\bin
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/centos-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,10 @@ jobs:
container: 'antaresrte/rte-antares:centos7-system-deps'
strategy:
matrix:
xprs: [ XPRESS-ON, XPRESS-OFF ]
xprs: [
XPRESS-ON,
#XPRESS-OFF
]
env:
XPRESSDIR: ${{ github.workspace }}/xpress
XPRESS: ${{ github.workspace }}/xpress/bin
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/ol8-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,10 @@ jobs:
container: 'oraclelinux:8'
strategy:
matrix:
xprs: [ { value: XPRESS-ON, ref: 9.2.5 },
{ value: XPRESS-OFF } ]
xprs: [
{ value: XPRESS-ON, ref: 9.2.5 },
#{ value: XPRESS-OFF }
]
env:
XPRESSDIR: ${{ github.workspace }}/xpress
XPRESS: ${{ github.workspace }}/xpress/bin
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/ubuntu-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,10 @@ jobs:
strategy:
matrix:
os: [ ubuntu-20.04 ]
xprs: [ XPRESS-ON, XPRESS-OFF ]
xprs: [
XPRESS-ON,
#XPRESS-OFF
]
env:
XPRESSDIR: ${{ github.workspace }}/xpress
XPRESS: ${{ github.workspace }}/xpress/bin
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/windows-vcpkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,10 @@ jobs:
matrix:
os: [ windows-latest ]
triplet: [ x64-windows ]
xprs: [ XPRESS-ON, XPRESS-OFF ]
xprs: [
XPRESS-ON,
#XPRESS-OFF
]
env:
XPRESSDIR: ${{ github.workspace }}\xpress
XPRESS: ${{ github.workspace }}\xpress\bin
Expand Down

0 comments on commit a2559fe

Please sign in to comment.