114 lines
3.3 KiB
YAML
114 lines
3.3 KiB
YAML
name: unit-tests-gh-hosted
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- master
|
|
- open-release/lilac.master
|
|
|
|
jobs:
|
|
run-test:
|
|
if: github.repository != 'openedx/edx-platform' && github.repository != 'edx/edx-platform-private'
|
|
runs-on: ubuntu-20.04
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
python-version: [ '3.8' ]
|
|
django-version: [ "3.2" ]
|
|
shard_name: [
|
|
"lms-1",
|
|
"lms-2",
|
|
"lms-3",
|
|
"lms-4",
|
|
"lms-5",
|
|
"lms-6",
|
|
"openedx-1",
|
|
"openedx-2",
|
|
"openedx-3",
|
|
"openedx-4",
|
|
"cms-1",
|
|
"cms-2",
|
|
"common-1",
|
|
"common-2",
|
|
"common-3",
|
|
]
|
|
name: gh-hosted-python-${{ matrix.python-version }},django-${{ matrix.django-version }},${{ matrix.shard_name }}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Install Required System Packages
|
|
run: sudo apt-get update && sudo apt-get install libxmlsec1-dev lynx
|
|
|
|
- name: Start MongoDB
|
|
uses: supercharge/mongodb-github-action@1.7.0
|
|
with:
|
|
mongodb-version: 4.4
|
|
|
|
- name: Setup Python
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Get pip cache dir
|
|
id: pip-cache-dir
|
|
run: |
|
|
echo "::set-output name=dir::$(pip cache dir)"
|
|
|
|
- name: Cache pip dependencies
|
|
id: cache-dependencies
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ${{ steps.pip-cache-dir.outputs.dir }}
|
|
key: ${{ runner.os }}-pip-${{ hashFiles('requirements/edx/development.txt') }}
|
|
restore-keys: ${{ runner.os }}-pip-
|
|
|
|
- name: Install Required Python Dependencies
|
|
run: |
|
|
pip install -r requirements/pip.txt
|
|
pip install -r requirements/edx/development.txt --src ${{ runner.temp }}
|
|
pip install "django~=${{ matrix.django-version }}.0"
|
|
|
|
- name: Setup and run tests
|
|
uses: ./.github/actions/unit-tests
|
|
|
|
collect-and-verify:
|
|
if: github.repository != 'openedx/edx-platform' && github.repository != 'edx/edx-platform-private'
|
|
runs-on: ubuntu-20.04
|
|
strategy:
|
|
matrix:
|
|
python-version: [ '3.8' ]
|
|
django-version: [ "3.2" ]
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Install Required System Packages
|
|
run: sudo apt-get update && sudo apt-get install libxmlsec1-dev
|
|
|
|
- name: Setup Python
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Get pip cache dir
|
|
id: pip-cache-dir
|
|
run: |
|
|
echo "::set-output name=dir::$(pip cache dir)"
|
|
|
|
- name: Cache pip dependencies
|
|
id: cache-dependencies
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ${{ steps.pip-cache-dir.outputs.dir }}
|
|
key: ${{ runner.os }}-pip-${{ hashFiles('requirements/edx/development.txt') }}
|
|
restore-keys: ${{ runner.os }}-pip-
|
|
|
|
- name: Install Required Python Dependencies
|
|
run: |
|
|
pip install -r requirements/pip.txt
|
|
pip install -r requirements/edx/development.txt --src ${{ runner.temp }}
|
|
pip install "django~=${{ matrix.django-version }}.0"
|
|
|
|
- name: verify unit tests count
|
|
uses: ./.github/actions/verify-tests-count
|