forked from optuna/optuna
-
Notifications
You must be signed in to change notification settings - Fork 0
79 lines (66 loc) · 2.3 KB
/
dockerimage.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
name: Build Docker Image
on:
push:
branches:
- master
release:
types: [published]
pull_request:
paths:
- .dockerignore
- .github/workflows/dockerimage.yml
- Dockerfile
- pyproject.toml
concurrency:
group: ${{ github.workflow }}-${{ github.ref == 'refs/heads/master' && github.run_number || github.ref }}
cancel-in-progress: true
env:
DOCKER_HUB_BASE_NAME: optuna/optuna
jobs:
dockerimage:
runs-on: ubuntu-latest
strategy:
matrix:
python_version: ['3.8', '3.9', '3.10', '3.11', '3.12']
build_type: ['', 'dev'] # "dev" installs all the dependencies including pytest.
# This action cannot be executed in the forked repository.
if: github.repository == 'optuna/optuna'
steps:
- uses: actions/checkout@v4
- name: Set ENV
run: |
export TAG_NAME="py${{ matrix.python_version }}"
if [ "${{ github.event_name }}" = 'release' ]; then
export TAG_NAME="${{ github.event.release.tag_name }}-${TAG_NAME}"
fi
if [ "${{matrix.build_type}}" = 'dev' ]; then
export TAG_NAME="${TAG_NAME}-dev"
fi
echo "HUB_TAG=${DOCKER_HUB_BASE_NAME}:${TAG_NAME}" >> $GITHUB_ENV
- name: Build the Docker image
run: |
if [ "${{ github.event_name }}" = 'release' ]; then
# Cache is not available because the image tag includes the Optuna version.
CACHE_FROM=""
else
CACHE_FROM="--cache-from=${HUB_TAG}"
fi
docker build ${CACHE_FROM} . --build-arg PYTHON_VERSION=${{ matrix.python_version }} --build-arg BUILD_TYPE=${{ matrix.build_type }} --file Dockerfile --tag "${HUB_TAG}"
env:
DOCKER_BUILDKIT: 1
- name: Output installed packages
run: |
docker run "${HUB_TAG}" sh -c "pip freeze --all"
- name: Output dependency tree
run: |
docker run "${HUB_TAG}" sh -c "pip install pipdeptree && pipdeptree"
- name: Verify the built image
run: |
docker run "${HUB_TAG}" optuna --version
- name: Login & Push to Docker Hub
if: ${{ github.event_name != 'pull_request' }}
env:
DOCKER_HUB_TOKEN: ${{ secrets.DOCKER_HUB_TOKEN }}
run: |
echo "${DOCKER_HUB_TOKEN}" | docker login -u optunabot --password-stdin
docker push "${HUB_TAG}"