Skip to content

Commit 30f2017

Browse files
committed
Update Docker image tag and Khiops versions to use the Khiops core 11.0.0-b.0
1 parent 6186185 commit 30f2017

File tree

3 files changed

+16
-12
lines changed

3 files changed

+16
-12
lines changed

.github/workflows/api-docs.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
11
---
22
name: API Docs
33
env:
4-
DEFAULT_KHIOPS_PYTHON_TUTORIAL_REVISION: main
4+
DEFAULT_KHIOPS_PYTHON_TUTORIAL_REVISION: 11.0.0.0-b.0
5+
DEFAULT_KHIOPS_SAMPLES_REVISION: 11.0.0
56
on:
67
workflow_dispatch:
78
inputs:
89
khiops-python-tutorial-revision:
9-
default: main
10+
default: 11.0.0.0-b.0
1011
description: khiops-python-tutorial repo revision
12+
khiops-samples-revision:
13+
default: 11.0.0
14+
description: khiops-samples repo revision
1115
image-tag:
12-
default: 11.0.0-a.0.0
16+
default: 11.0.0-b.0.0
1317
description: Development Docker Image Tag
1418
pull_request:
1519
paths:
@@ -41,7 +45,7 @@ jobs:
4145
# because the `env` context is only accessible at the step level;
4246
# hence, it is hard-coded
4347
image: |-
44-
ghcr.io/khiopsml/khiops-python/khiopspydev-ubuntu22.04:${{ inputs.image-tag || '11.0.0-a.0.0' }}
48+
ghcr.io/khiopsml/khiops-python/khiopspydev-ubuntu22.04:${{ inputs.image-tag || '11.0.0-b.0.0' }}
4549
# Use the 'runner' user (1001) from github so checkout actions work properly
4650
# https://github.com/actions/runner/issues/2033#issuecomment-1598547465
4751
options: --user 1001
@@ -56,7 +60,7 @@ jobs:
5660
run: |
5761
# Install package itself to install the samples datasets
5862
pip3 install .
59-
kh-download-datasets --force-overwrite
63+
kh-download-datasets --force-overwrite --version ${{ inputs.khiops-samples-revision || env.DEFAULT_KHIOPS_SAMPLES_REVISION }}
6064
kh-status
6165
6266
# Install the doc python requirements

.github/workflows/pip.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
default: 11.0.0
1010
description: khiops-samples repo revision
1111
image-tag:
12-
default: 11.0.0-a.0.0
12+
default: 11.0.0-b.0.0
1313
description: Development Docker Image Tag
1414
pull_request:
1515
paths:
@@ -64,7 +64,7 @@ jobs:
6464
# because the `env` context is only accessible at the step level;
6565
# hence, it is hard-coded
6666
image: |-
67-
ghcr.io/khiopsml/khiops-python/khiopspydev-${{ matrix.container }}:${{ inputs.image-tag || '11.0.0-a.0.0' }}
67+
ghcr.io/khiopsml/khiops-python/khiopspydev-${{ matrix.container }}:${{ inputs.image-tag || '11.0.0-b.0.0' }}
6868
steps:
6969
- name: Set parameters as env
7070
run: |

.github/workflows/tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
name: Tests
33
env:
44
DEFAULT_SAMPLES_REVISION: 11.0.0
5-
DEFAULT_KHIOPS_DESKTOP_REVISION: 11.0.0-a.0
5+
DEFAULT_KHIOPS_DESKTOP_REVISION: 11.0.0-b.0
66
on:
77
workflow_dispatch:
88
inputs:
99
samples-revision:
1010
default: 11.0.0
1111
description: Git Tag/Branch/Commit for the khiops-samples Repo
1212
image-tag:
13-
default: 11.0.0-a.0.0
13+
default: 11.0.0-b.0.0
1414
description: Development Docker Image Tag
1515
khiops-desktop-revision:
16-
default: 11.0.0-a.0
16+
default: 11.0.0-b.0
1717
description: Khiops Windows Desktop Application Version
1818
run-expensive-tests:
1919
type: boolean
@@ -43,7 +43,7 @@ jobs:
4343
# because the `env` context is only accessible at the step level;
4444
# hence, it is hard-coded
4545
image: |-
46-
ghcr.io/khiopsml/khiops-python/khiopspydev-ubuntu22.04:${{ inputs.image-tag || '11.0.0-a.0.0' }}
46+
ghcr.io/khiopsml/khiops-python/khiopspydev-ubuntu22.04:${{ inputs.image-tag || '11.0.0-b.0.0' }}
4747
credentials:
4848
username: ${{ github.actor }}
4949
password: ${{ secrets.GITHUB_TOKEN }}
@@ -315,7 +315,7 @@ jobs:
315315
# because the `env` context is only accessible at the step level;
316316
# hence, it is hard-coded
317317
image: |-
318-
ghcr.io/khiopsml/khiops-python/khiopspydev-${{ matrix.container }}:${{ inputs.image-tag || '11.0.0-a.0.0' }}
318+
ghcr.io/khiopsml/khiops-python/khiopspydev-${{ matrix.container }}:${{ inputs.image-tag || '11.0.0-b.0.0' }}
319319
credentials:
320320
username: ${{ github.actor }}
321321
password: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)