-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update version to release 3.3.1 (#153)
* Update version to release 3.3.1 * Sync 3_14 branch
- Loading branch information
Showing
7 changed files
with
26 additions
and
53 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 |
---|---|---|
@@ -1,14 +1,14 @@ | ||
# This workflow will build a Java project with Ant | ||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-ant | ||
|
||
name: Java 1.14 CI | ||
name: Java 3.3.1 CI | ||
|
||
on: | ||
workflow_dispatch: | ||
# push: | ||
# branches: [ "hdfview-3-1_14" ] | ||
pull_request: | ||
branches: [ "hdfview-3-1_14" ] | ||
branches: [ "release/hdfview-3.3.1" ] | ||
|
||
jobs: | ||
get-base-names: | ||
|
@@ -20,32 +20,13 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Get hdf4 release base name | ||
# uses: robinraju/[email protected] | ||
# with: | ||
# repository: "HDFGroup/hdf4" | ||
# tag: "snapshot" | ||
# fileName: "last-file.txt" | ||
uses: dsaltares/fetch-gh-release-asset@master | ||
with: | ||
repo: 'HDFGroup/hdf4' | ||
version: 'tags/snapshot' | ||
file: 'last-file.txt' | ||
|
||
- name: Read base-name file | ||
id: gethdf4base | ||
run: echo "HDF4_NAME_BASE=$(cat last-file.txt)" >> $GITHUB_OUTPUT | ||
|
||
- name: Get hdf5 release base name | ||
uses: dsaltares/fetch-gh-release-asset@master | ||
with: | ||
repo: 'HDFGroup/hdf5' | ||
version: 'tags/snapshot-1.14' | ||
file: 'last-file.txt' | ||
run: echo "HDF4_NAME_BASE=hdf-4_2_16-2" >> $GITHUB_OUTPUT | ||
|
||
- name: Read base-name file | ||
id: gethdf5base | ||
run: echo "HDF5_NAME_BASE=$(cat last-file.txt)" >> $GITHUB_OUTPUT | ||
run: echo "HDF5_NAME_BASE=hdf5-1_14_2" >> $GITHUB_OUTPUT | ||
|
||
build-linux: | ||
runs-on: ubuntu-latest | ||
|
@@ -65,9 +46,7 @@ jobs: | |
uses: dsaltares/fetch-gh-release-asset@master | ||
with: | ||
repo: 'HDFGroup/hdf4' | ||
#version: 'tags/hdf-4_2_16-2' | ||
#file: 'hdf-4_2_16-2-ubuntu-2204.tar.gz' | ||
version: 'tags/snapshot' | ||
version: 'tags/hdf-4_2_16-2' | ||
file: '${{ needs.get-base-names.outputs.hdf4-name }}-ubuntu-2204.tar.gz' | ||
|
||
- name: List files for the space (Linux) | ||
|
@@ -94,9 +73,7 @@ jobs: | |
uses: dsaltares/fetch-gh-release-asset@master | ||
with: | ||
repo: 'HDFGroup/hdf5' | ||
#version: 'tags/1.14.2' | ||
#file: 'hdf5-1_14_2-ubuntu-2204.tar.gz' | ||
version: 'tags/snapshot-1.14' | ||
version: 'tags/hdf5-1_14_2' | ||
file: '${{ needs.get-base-names.outputs.hdf5-name }}-ubuntu-2204.tar.gz' | ||
|
||
- name: List files for the space (Linux) | ||
|
@@ -140,7 +117,7 @@ jobs: | |
uses: actions/upload-artifact@v3 | ||
with: | ||
name: tgz-ubuntu-2204-binary | ||
path: ${{ github.workspace }}/build/dist/HDFView-3.3.99-Linux-x86_64.tar.gz | ||
path: ${{ github.workspace }}/build/dist/HDFView-3.3.1-Linux-x86_64.tar.gz | ||
if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn` | ||
|
||
- name: Test with Ant | ||
|
@@ -167,9 +144,7 @@ jobs: | |
uses: dsaltares/fetch-gh-release-asset@master | ||
with: | ||
repo: 'HDFGroup/hdf4' | ||
#version: 'tags/hdf-4_2_16-2' | ||
#file: 'hdf-4_2_16-2-win_vs2022.zip' | ||
version: 'tags/snapshot' | ||
version: 'tags/hdf-4_2_16-2' | ||
file: '${{ needs.get-base-names.outputs.hdf4-name }}-win_vs2022.zip' | ||
|
||
- name: Uncompress gh binary (Win) | ||
|
@@ -206,9 +181,7 @@ jobs: | |
uses: dsaltares/fetch-gh-release-asset@master | ||
with: | ||
repo: 'HDFGroup/hdf5' | ||
#version: 'tags/1.14.2' | ||
#file: 'hdf5-1_14_2-win_vs2022.zip' | ||
version: 'tags/snapshot-1.14' | ||
version: 'tags/hdf5-1_14_2' | ||
file: '${{ needs.get-base-names.outputs.hdf5-name }}-win_vs2022.zip' | ||
|
||
- name: Uncompress gh binary (Win) | ||
|
@@ -264,7 +237,7 @@ jobs: | |
uses: actions/upload-artifact@v3 | ||
with: | ||
name: zip-win-2022-binary | ||
path: ${{ github.workspace }}/build/dist/HDFView-3.3.99-win64.zip | ||
path: ${{ github.workspace }}/build/dist/HDFView-3.3.1-win64.zip | ||
if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn` | ||
|
||
- name: Test with Ant | ||
|
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 |
---|---|---|
@@ -1 +1 @@ | ||
VERSION=hdf-view-3.3.99 | ||
VERSION=hdf-view-3.3.1 |
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
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
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
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 |
---|---|---|
@@ -1,17 +1,17 @@ | ||
<?xml version="1.0" encoding="utf-8" standalone="no"?> | ||
<installer-gui-script minSpecVersion="1"> | ||
<pkg-ref id="org.hdfgroup.HDFView-3.3.99"/> | ||
<product id="org.hdfgroup.HDFView-3.3.99" version="3.3.99"/> | ||
<title>HDFView-3.3.99</title> | ||
<pkg-ref id="org.hdfgroup.HDFView-3.3.1"/> | ||
<product id="org.hdfgroup.HDFView-3.3.1" version="3.3.1"/> | ||
<title>HDFView-3.3.1</title> | ||
<options customize="never" require-scripts="false" hostArchitectures="x86_64"/> | ||
<choices-outline> | ||
<line choice="default"> | ||
<line choice="org.hdfgroup.HDFView-3.3.99"/> | ||
<line choice="org.hdfgroup.HDFView-3.3.1"/> | ||
</line> | ||
</choices-outline> | ||
<choice id="default" title="HDFView-3.3.99" versStr="3.3.99"/> | ||
<choice id="org.hdfgroup.HDFView-3.3.99" title="HDFView-3.3.99" visible="false"> | ||
<pkg-ref id="org.hdfgroup.HDFView-3.3.99"/> | ||
<choice id="default" title="HDFView-3.3.1" versStr="3.3.1"/> | ||
<choice id="org.hdfgroup.HDFView-3.3.1" title="HDFView-3.3.1" visible="false"> | ||
<pkg-ref id="org.hdfgroup.HDFView-3.3.1"/> | ||
</choice> | ||
<pkg-ref id="org.hdfgroup.HDFView-3.3.99" version="3.3.99" onConclusion="none">org.hdfgroup.HDFView-3.3.99.pkg</pkg-ref> | ||
<pkg-ref id="org.hdfgroup.HDFView-3.3.1" version="3.3.1" onConclusion="none">org.hdfgroup.HDFView-3.3.1.pkg</pkg-ref> | ||
</installer-gui-script> |
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