ci: Do not remove container abi-execution #14
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: CI/CD Workflow | |
on: | |
push: | |
branches: | |
- 178-schedule-abi-using-github-action | |
pull_request: | |
branches: | |
- 178-schedule-abi-using-github-action | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Cache Docker layers | |
uses: actions/cache@v2 | |
with: | |
path: /tmp/.buildx-cache | |
key: ${{ runner.os }}-buildx-${{ github.sha }} | |
restore-keys: | | |
${{ runner.os }}-buildx- | |
- name: Log in to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build Docker image | |
run: | | |
make build | |
docker tag abi:latest ghcr.io/${{ github.repository }}/abi:latest | |
- name: Push Docker image to GitHub Container Registry | |
run: docker push ghcr.io/${{ github.repository }}/abi:latest | |
- name: Run Papermill | |
run: | | |
docker run --name abi-execution --platform linux/amd64 ghcr.io/${{ github.repository }}/abi:latest papermill tests/ci.ipynb outputs/ci.output.ipynb | |
mkdir execution_outputs | |
docker cp abi-execution:/app/outputs ./execution_outputs/ | |
- name: Upload output artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: output-files | |
path: ./execution_outputs | |
# jobs: | |
# pull_and_run: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Checkout repository | |
# uses: actions/checkout@v4 | |
# - name: Log in to GitHub Container Registry | |
# uses: docker/login-action@v3 | |
# with: | |
# registry: ghcr.io | |
# username: ${{ github.actor }} | |
# password: ${{ secrets.GITHUB_TOKEN }} | |
# - name: Pull Docker image | |
# run: docker pull ghcr.io/${{ github.repository }}/abi:latest | |
# - name: Run Papermill | |
# run: | | |
# docker run --name abi-execution -i --platform linux/amd64 ghcr.io/${{ github.repository }}/abi:latest papermill tests/ci.ipynb outputs/ci.ipynb | |
# mkdir outputs | |
# docker cp -r abi-execution:/app/outputs ./outputs/ | |
# - name: Upload output artifacts | |
# uses: actions/upload-artifact@v4 | |
# with: | |
# name: output-files | |
# path: ./outputs |