changing platform #909
Workflow file for this run
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: Push Docker Nightly | |
on: | |
# Run every day at 1:15pm | |
# schedule: | |
# - cron: "15 13 * * *" | |
# workflow_dispatch: | |
push: | |
branches: "docker_aarch" | |
jobs: | |
nightly: | |
runs-on: [self-hosted, multi-test] | |
steps: | |
- name: Clean up previous run | |
run: | | |
echo "Cleaning up previous run" | |
ls -la ./ | |
sudo rm -rf ./* || true | |
sudo rm -rf ./.??* || true | |
ls -la ./ | |
- name: Setup Python 3.9 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.9 | |
architecture: x64 | |
- name: Checkout TorchServe | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Login to Docker | |
env: | |
DOCKER_PASSWORD: ${{secrets.UDAI_TEST}} | |
run: docker login --username udaij12 --password "$DOCKER_PASSWORD" | |
- name: Push Docker Nightly | |
run: | | |
cd docker | |
sudo apt-get update | |
docker buildx rm multibuilder | |
docker buildx create --name multibuilder --use --driver docker-container --bootstrap | |
python docker_nightly.py --cleanup | |
# - name: Push KServe Docker Nightly | |
# run: | | |
# cd kubernetes/kserve | |
# python docker_nightly.py --cleanup | |
# - name: Open issue on failure | |
# if: ${{ failure() && github.event_name == 'schedule' }} | |
# uses: dacbd/create-issue-action@v1 | |
# with: | |
# token: ${{ secrets.GITHUB_TOKEN }} | |
# title: Nightly Docker build failed | |
# body: Commit ${{ github.sha }} daily scheduled [CI run](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}) failed, please check why | |
# assignees: "" |