docker-multigpu-tests-biweekly #8
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: docker-multigpu-tests-biweekly | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * 1,4' # Runs at 00:00 UTC every monday & thursday | |
jobs: | |
test-axolotl-multigpu: | |
if: ${{ ! contains(github.event.commits[0].message, '[skip docker]]') && github.repository_owner == 'axolotl-ai-cloud' }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- cuda: 121 | |
cuda_version: 12.1.1 | |
python_version: "3.11" | |
pytorch: 2.3.1 | |
axolotl_extras: | |
num_gpus: 2 | |
- cuda: 121 | |
cuda_version: 12.1.1 | |
python_version: "3.11" | |
pytorch: 2.3.1 | |
axolotl_extras: | |
num_gpus: 2 | |
nightly_build: "true" | |
runs-on: [self-hosted, modal] | |
timeout-minutes: 120 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Install Modal | |
run: | | |
python -m pip install --upgrade pip | |
pip install modal==0.63.64 jinja2 | |
- name: Update env vars | |
run: | | |
echo "BASE_TAG=main-base-py${{ matrix.python_version }}-cu${{ matrix.cuda }}-${{ matrix.pytorch }}" >> $GITHUB_ENV | |
echo "PYTORCH_VERSION=${{ matrix.pytorch}}" >> $GITHUB_ENV | |
echo "AXOLOTL_ARGS=${{ matrix.axolotl_args}}" >> $GITHUB_ENV | |
echo "AXOLOTL_EXTRAS=${{ matrix.axolotl_extras}}" >> $GITHUB_ENV | |
echo "CUDA=${{ matrix.cuda }}" >> $GITHUB_ENV | |
echo "N_GPUS=${{ matrix.num_gpus }}" >> $GITHUB_ENV | |
echo "NIGHTLY_BUILD=${{ matrix.nightly_build }}" >> $GITHUB_ENV | |
- name: Run tests job on Modal | |
run: | | |
modal run cicd.multigpu |