[BUG] CLI forecast command fails with pipeline ensembles (#1331) #316
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: Build and push docker image from trunk | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
push: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
dockerfile: | |
- {"name": etna-cpu, "path": docker/etna-cpu/Dockerfile} | |
- {"name": etna-cuda-11.6.2, "path": docker/etna-cuda-11.6.2/Dockerfile} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build image | |
run: | | |
cd $( dirname ${{ matrix.dockerfile.path }}) | |
sed -i 's#etna\[all\]#etna[all] @ git+https://github.com/${{ github.repository }}.git@${{ github.sha }}#g' requirements.txt | |
cat requirements.txt | |
docker build . --tag image | |
- name: Log into registry | |
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin | |
- name: Push image | |
run: | | |
IMAGE_ID=ghcr.io/${{ github.repository }}/${{ matrix.dockerfile.name }} | |
VERSION=latest | |
echo IMAGE_ID=$IMAGE_ID | |
echo VERSION=$VERSION | |
docker tag image $IMAGE_ID:$VERSION | |
docker push $IMAGE_ID:$VERSION |