Run python3 dev/update_requirements.py --requirements-... #2802
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
name: Devcontainer | |
on: | |
push: | |
branches: | |
- "master" | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- ready_for_review | |
paths: | |
- .devcontainer/** | |
permissions: | |
contents: read | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }} | |
cancel-in-progress: true | |
defaults: | |
run: | |
shell: bash --noprofile --norc -exo pipefail {0} | |
env: | |
DOCKER_BUILDKIT: 1 | |
BUILDKIT_PROGRESS: plain | |
jobs: | |
devcontainer: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
if: github.repository == 'mlflow/mlflow' | |
permissions: | |
packages: write # to push to ghcr.io | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Get image name | |
run: | | |
IMAGE_NAME=$(yq '.services.mlflow.image' .devcontainer/docker-compose.yml) | |
echo "IMAGE_NAME=$IMAGE_NAME" >> $GITHUB_ENV | |
- name: Build image | |
run: | | |
docker build -f .devcontainer/Dockerfile.devcontainer -t $IMAGE_NAME . | |
- name: Show layer sizes | |
run: | | |
docker history $IMAGE_NAME | |
- name: Inspect image | |
run: | | |
docker image inspect $IMAGE_NAME | |
- name: Test Image | |
run: | | |
docker run --rm -v $(pwd):/workspaces/mlflow $IMAGE_NAME bash -c "pip install --no-deps -e . && pytest tests/test_version.py" | |
- uses: docker/login-action@v2 | |
if: github.event_name == 'push' | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Push image | |
if: github.event_name == 'push' | |
run: | | |
docker push $IMAGE_NAME |