Skip to content

Commit

Permalink
Merge pull request #212 from KhiopsML/dev-v10
Browse files Browse the repository at this point in the history
Release 10.2.1
  • Loading branch information
bruno-at-orange authored Mar 25, 2024
2 parents 6cfe3b3 + 4ffd314 commit 30cf3ff
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 4 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/pack-debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ jobs:
test:
needs: build
runs-on: ubuntu-latest
continue-on-error: true
defaults:
run:
shell: bash
Expand Down Expand Up @@ -94,6 +93,7 @@ jobs:
dpkg -i ./artifacts/khiops-core* || true
apt-get -f install -y
- name: Check Khiops core installation
continue-on-error: ${{ matrix.os == 'debian:11' }}
run: |
khiops-env --env
khiops -v
Expand All @@ -103,10 +103,12 @@ jobs:
dpkg -i ./khiops_* || true
apt-get -f install -y
- name: Check Khiops installation
continue-on-error: ${{ matrix.os == 'debian:11' }}
run: |
khiops -v
khiops_coclustering -v
- name: Test Khiops installation
continue-on-error: ${{ matrix.os == 'debian:11' || matrix.os == 'debian:12' }}
uses: ./.github/actions/test-khiops-install
test-kni:
needs: build
Expand Down Expand Up @@ -166,7 +168,10 @@ jobs:
for PKG_FILE in *.deb
do
NEW_PKG_FILE=$(echo $PKG_FILE | sed "s/_${SOURCE_VERSION}-/_${{ github.ref_name }}-/")
mv $PKG_FILE $NEW_PKG_FILE
if [[ "$PKG_FILE" != "$NEW_PKG_FILE" ]]
then
mv $PKG_FILE $NEW_PKG_FILE
fi
done
- name: Upload packages to the release
uses: ncipollo/[email protected]
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/pack-nsis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,10 +158,16 @@ jobs:
name: KNI
- name: Rename packages with tag version
run: |
# Build the package file names
SOURCE_VERSION="${{ needs.build.outputs.khiops-version }}"
PKG_FILE=$(ls *-setup.exe)
NEW_PKG_FILE=$(echo $PKG_FILE | sed "s/-${SOURCE_VERSION}-/-${{ github.ref_name }}-/")
mv $PKG_FILE $NEW_PKG_FILE
# Rename to the tag version only if it is not coherent with the source version
if [[ "$PKG_FILE" != "$NEW_PKG_FILE" ]]
then
mv $PKG_FILE $NEW_PKG_FILE
fi
- name: Upload NSIS installer and KNI to the release
uses: ncipollo/[email protected]
with:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/pack-rpm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,11 +156,15 @@ jobs:
merge-multiple: true
- name: Rename packages with tag version
run: |
# Renames the packge only if the source version differs from the tag
SOURCE_VERSION=$(./scripts/khiops-version)
for PKG_FILE in *.rpm
do
NEW_PKG_FILE=$(echo $PKG_FILE | sed "s/-${SOURCE_VERSION}-/-${{ github.ref_name }}-/")
mv $PKG_FILE $NEW_PKG_FILE
if [[ "$PKG_FILE" != "$NEW_PKG_FILE" ]]
then
mv $PKG_FILE $NEW_PKG_FILE
fi
done
- name: Upload packages to the release
uses: ncipollo/[email protected]
Expand Down
8 changes: 8 additions & 0 deletions packaging/common/khiops/WHATSNEW.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
Release Notes for Khiops 10 Version Series
==========================================

Version 10.2.1
==============
Bug fix:
- Fix a bug that appears when reading temporary files in multi-machines mode.

Minor improvments:
- improve java management in linux packages

Version 10.2.0
==============
**Announcement**: This is a special release marking the open-sourcing of the Khiops AutoML suite.
Expand Down

0 comments on commit 30cf3ff

Please sign in to comment.