Skip to content

use GE backend for ms2.3 (#785) #1125

use GE backend for ms2.3 (#785)

use GE backend for ms2.3 (#785) #1125

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ['3.8', '3.9']
# include:
# - os: macos-latest
# python-version: "3.8"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements/dev.txt
pip install "Pillow==9.1.1"
- name: Install Mindspore If Python38 & Linux X86
if: ${{ matrix.python-version == '3.8' }}
run:
# MindSpore must be installed following the instruction from official web, but not from pypi.
# That's why we exclude mindspore from requirements.txt. Does this work?
pip install https://ms-release.obs.cn-north-4.myhuaweicloud.com/2.3.0/MindSpore/unified/x86_64/mindspore-2.3.0-cp38-cp38-linux_x86_64.whl --trusted-host ms-release.obs.cn-north-4.myhuaweicloud.com -i https://pypi.tuna.tsinghua.edu.cn/simple
- name: Install Mindspore If Python39 & Linux X86
if: ${{ matrix.python-version == '3.9' }}
run:
# MindSpore must be installed following the instruction from official web, but not from pypi.
# That's why we exclude mindspore from requirements.txt. Does this work?
pip install https://ms-release.obs.cn-north-4.myhuaweicloud.com/2.3.0/MindSpore/unified/x86_64/mindspore-2.3.0-cp39-cp39-linux_x86_64.whl --trusted-host ms-release.obs.cn-north-4.myhuaweicloud.com -i https://pypi.tuna.tsinghua.edu.cn/simple
- name: Lint with pre-commit
uses: pre-commit/action@v3.0.0
- name: Test with pytest (UT)
run: |
pytest tests/modules/*.py
- name: Test with pytest (ST)
run: |
pytest tests/tasks/*.py