mirror of
https://github.com/Chia-Network/chia-blockchain.git
synced 2024-11-11 01:28:17 +03:00
106 lines
2.7 KiB
YAML
106 lines
2.7 KiB
YAML
name: Ubuntu core-util Test
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
tags:
|
|
- '**'
|
|
pull_request:
|
|
branches:
|
|
- '**'
|
|
|
|
jobs:
|
|
build:
|
|
name: Ubuntu core-util Test
|
|
runs-on: ${{ matrix.os }}
|
|
timeout-minutes: 30
|
|
strategy:
|
|
fail-fast: false
|
|
max-parallel: 4
|
|
matrix:
|
|
python-version: [3.7, 3.8, 3.9]
|
|
os: [ubuntu-latest]
|
|
|
|
steps:
|
|
- name: Cancel previous runs on the same branch
|
|
if: ${{ github.ref != 'refs/heads/main' }}
|
|
uses: styfle/cancel-workflow-action@0.9.0
|
|
with:
|
|
access_token: ${{ github.token }}
|
|
|
|
- name: Checkout Code
|
|
uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Setup Python environment
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Cache npm
|
|
uses: actions/cache@v2.1.5
|
|
with:
|
|
path: ~/.npm
|
|
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-node-
|
|
|
|
- name: Get pip cache dir
|
|
id: pip-cache
|
|
run: |
|
|
echo "::set-output name=dir::$(pip cache dir)"
|
|
|
|
- name: Cache pip
|
|
uses: actions/cache@v2.1.5
|
|
with:
|
|
path: ${{ steps.pip-cache.outputs.dir }}
|
|
key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-pip-
|
|
|
|
- name: Checkout test blocks and plots
|
|
uses: actions/checkout@v2
|
|
with:
|
|
repository: 'Chia-Network/test-cache'
|
|
path: '.chia'
|
|
ref: '0.26.0'
|
|
fetch-depth: 1
|
|
|
|
- name: Link home directory
|
|
run: |
|
|
cd $HOME
|
|
ln -s $GITHUB_WORKSPACE/.chia
|
|
echo "$HOME/.chia"
|
|
ls -al $HOME/.chia
|
|
|
|
- name: Install ubuntu dependencies
|
|
run: |
|
|
sudo apt-get install software-properties-common
|
|
sudo add-apt-repository ppa:deadsnakes/ppa
|
|
sudo apt-get update
|
|
sudo apt-get install python${{ matrix.python-version }}-venv python${{ matrix.python-version }}-distutils git -y
|
|
|
|
- name: Run install script
|
|
env:
|
|
INSTALL_PYTHON_VERSION: ${{ matrix.python-version }}
|
|
run: |
|
|
sh install.sh
|
|
|
|
- name: Install timelord
|
|
run: |
|
|
. ./activate
|
|
sh install-timelord.sh
|
|
./vdf_bench square_asm 400000
|
|
|
|
- name: Install developer requirements
|
|
run: |
|
|
. ./activate
|
|
venv/bin/python -m pip install pytest pytest-asyncio pytest-xdist
|
|
|
|
- name: Test core-util code with pytest
|
|
run: |
|
|
. ./activate
|
|
./venv/bin/py.test tests/core/util/test_keychain.py tests/core/util/test_significant_bits.py tests/core/util/test_streamable.py tests/core/util/test_type_checking.py -s -v --durations 0
|