-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
88 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -125,6 +125,54 @@ jobs: | |
name: test-log | ||
path: ${{ github.workspace }}/_build/Testing/Temporary/LastTest.log | ||
|
||
- name: Installer .deb creation | ||
run: | | ||
cd _build | ||
cpack -G DEB | ||
- name: .tar.gz creation | ||
run: | | ||
cd _build | ||
cpack -G TGZ | ||
- name: Solver archive creation | ||
run: | | ||
cd _build | ||
cmake --install . --prefix install | ||
pushd . | ||
cd install/bin | ||
tar czf ../../antares-solver_ubuntu20.04.tar.gz antares-*-solver libsirius_solver.so | ||
popd | ||
rm -rf install | ||
- name: Installer archive upload push | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
path: _build/*.tar.gz | ||
|
||
- name: Installer deb upload push | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
path: _build/*.deb | ||
|
||
publish_assets: | ||
name: Publish assets | ||
needs: build | ||
runs-on: ${{needs.build.outputs.os}} | ||
steps: | ||
- name: Download all artifacts | ||
if: ${{ env.IS_RELEASE == 'true' }} | ||
uses: actions/download-artifact@v3 | ||
|
||
|
||
- name: Publish assets | ||
if: ${{ env.IS_RELEASE == 'true' }} | ||
uses: alexellis/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ github.token }} | ||
with: | ||
asset_paths: '["*/*.tar.gz", "*/*.deb"]' | ||
|
||
# simtest | ||
- name: Read simtest version | ||
id: simtest-version | ||
|
@@ -197,50 +245,3 @@ jobs: | |
batch-name: long-tests-3 | ||
os: ${{ matrix.test-platform }} | ||
|
||
- name: Installer .deb creation | ||
run: | | ||
cd _build | ||
cpack -G DEB | ||
- name: .tar.gz creation | ||
run: | | ||
cd _build | ||
cpack -G TGZ | ||
- name: Solver archive creation | ||
run: | | ||
cd _build | ||
cmake --install . --prefix install | ||
pushd . | ||
cd install/bin | ||
tar czf ../../antares-solver_ubuntu20.04.tar.gz antares-*-solver libsirius_solver.so | ||
popd | ||
rm -rf install | ||
- name: Installer archive upload push | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
path: _build/*.tar.gz | ||
|
||
- name: Installer deb upload push | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
path: _build/*.deb | ||
|
||
publish_assets: | ||
name: Publish assets | ||
needs: build | ||
runs-on: ${{needs.build.outputs.os}} | ||
steps: | ||
- name: Download all artifacts | ||
if: ${{ env.IS_RELEASE == 'true' }} | ||
uses: actions/download-artifact@v3 | ||
|
||
|
||
- name: Publish assets | ||
if: ${{ env.IS_RELEASE == 'true' }} | ||
uses: alexellis/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ github.token }} | ||
with: | ||
asset_paths: '["*/*.tar.gz", "*/*.deb"]' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -121,6 +121,46 @@ jobs: | |
shell: bash | ||
run: rm -rf ${{ github.workspace }}/src/_build/_deps | ||
|
||
- name: .zip creation | ||
shell: bash | ||
run: | | ||
cd _build | ||
cpack -G ZIP | ||
export ZIP_NAME=$(ls *.zip) | ||
echo "ZIP_NAME=$ZIP_NAME" >> $GITHUB_ENV | ||
- name: Solver archive creation | ||
shell: bash | ||
run: | | ||
cd _build | ||
zip -r antares-solver_windows.zip solver/Release/antares-*-solver.exe solver/Release/*.dll | ||
- name: NSIS Installer creation | ||
shell: bash | ||
run: | | ||
rm -rf src/tests/resources/Antares_Simulator_Tests | ||
rm -rf src/tests/resources/NonRegTests | ||
cd _build | ||
cpack -GNSIS | ||
export NSIS_NAME=$(ls *.exe) | ||
echo "NSIS_NAME=$NSIS_NAME" >> $GITHUB_ENV | ||
- name: Upload NSIS logs | ||
if: ${{ failure() }} | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: NSISOutput.log | ||
path: _build/_CPack_Packages/win64/NSIS/NSISOutput.log | ||
|
||
- name: Upload release assets | ||
uses: softprops/[email protected] | ||
if: startsWith(github.ref, 'refs/tags/') | ||
with: | ||
files: | | ||
_build/${{env.NSIS_NAME}} | ||
_build/${{env.ZIP_NAME}} | ||
_build/solver.zip | ||
# simtest | ||
- name: Read simtest version | ||
id: simtest-version | ||
|
@@ -163,43 +203,3 @@ jobs: | |
simtest-tag: ${{steps.simtest-version.outputs.prop}} | ||
batch-name: long-tests-3 | ||
os: ${{ matrix.test-platform }} | ||
|
||
- name: .zip creation | ||
shell: bash | ||
run: | | ||
cd _build | ||
cpack -G ZIP | ||
export ZIP_NAME=$(ls *.zip) | ||
echo "ZIP_NAME=$ZIP_NAME" >> $GITHUB_ENV | ||
- name: Solver archive creation | ||
shell: bash | ||
run: | | ||
cd _build | ||
zip -r antares-solver_windows.zip solver/Release/antares-*-solver.exe solver/Release/*.dll | ||
- name: NSIS Installer creation | ||
shell: bash | ||
run: | | ||
rm -rf src/tests/resources/Antares_Simulator_Tests | ||
rm -rf src/tests/resources/NonRegTests | ||
cd _build | ||
cpack -GNSIS | ||
export NSIS_NAME=$(ls *.exe) | ||
echo "NSIS_NAME=$NSIS_NAME" >> $GITHUB_ENV | ||
- name: Upload NSIS logs | ||
if: ${{ failure() }} | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: NSISOutput.log | ||
path: _build/_CPack_Packages/win64/NSIS/NSISOutput.log | ||
|
||
- name: Upload release assets | ||
uses: softprops/[email protected] | ||
if: startsWith(github.ref, 'refs/tags/') | ||
with: | ||
files: | | ||
_build/${{env.NSIS_NAME}} | ||
_build/${{env.ZIP_NAME}} | ||
_build/solver.zip |