Spaces:
Sleeping
Sleeping
File size: 1,071 Bytes
50bfcf9 fa629f3 50bfcf9 d22211a 50bfcf9 def34fb 4a510e0 50bfcf9 fa629f3 e7941a7 50bfcf9 e2988c9 ab11754 96e48e9 ab11754 50bfcf9 9acb122 50bfcf9 1163194 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
name: Docker_Large_Nightly
on:
schedule:
# Run at the 0th minute of the 10th hour (UTC).
# This means the job will run at 5am EST.
- cron: "0 10 * * *"
# This will automatically run on master branch only.
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.arch == 'linux/arm64' }}
defaults:
run:
shell: bash
strategy:
fail-fast: false
matrix:
julia-version: ['1.6', '1']
python-version: ['3.10']
os: [ubuntu-latest]
arch: ['linux/amd64', 'linux/arm64']
steps:
- uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
with:
platforms: all
- name: Build docker
run: docker build --platform=${{ matrix.arch }} -t pysr --build-arg JLVERSION=${{ matrix.julia-version }} .
- name: Test docker
run: docker run --platform=${{ matrix.arch }} --rm pysr /bin/bash -c 'python3 -m pysr.test main && python3 -m pysr.test cli && python3 -m pysr.test env'
|