forked from Chia-Network/chia-blockchain
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cae7676
commit 153aa55
Showing
6 changed files
with
594 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
name: MacOS core-full_node-dos Tests | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
tags: | ||
- '**' | ||
pull_request: | ||
branches: | ||
- '**' | ||
|
||
jobs: | ||
build: | ||
name: MacOS core-full_node-dos Tests | ||
runs-on: ${{ matrix.os }} | ||
timeout-minutes: 30 | ||
strategy: | ||
fail-fast: false | ||
max-parallel: 4 | ||
matrix: | ||
python-version: [3.8, 3.9] | ||
os: [macOS-latest] | ||
|
||
steps: | ||
- name: Cancel previous runs on the same branch | ||
if: ${{ github.ref != 'refs/heads/dev' }} | ||
uses: styfle/[email protected] | ||
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: Get pip cache dir | ||
id: pip-cache | ||
run: | | ||
echo "::set-output name=dir::$(pip cache dir)" | ||
- name: Cache pip | ||
uses: actions/[email protected] | ||
with: | ||
# Note that new runners may break this https://github.com/actions/cache/issues/292 | ||
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: Run install script | ||
env: | ||
INSTALL_PYTHON_VERSION: ${{ matrix.python-version }} | ||
BUILD_VDF_CLIENT: "N" | ||
run: | | ||
brew install boost | ||
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-full_node-dos code with pytest | ||
run: | | ||
. ./activate | ||
./venv/bin/py.test -s -v --durations 0 |
93 changes: 93 additions & 0 deletions
93
.github/workflows/build-test-macos-core-full_node-full_sync.yml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
name: MacOS core-full_node-full_sync Tests | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
tags: | ||
- '**' | ||
pull_request: | ||
branches: | ||
- '**' | ||
|
||
jobs: | ||
build: | ||
name: MacOS core-full_node-full_sync Tests | ||
runs-on: ${{ matrix.os }} | ||
timeout-minutes: 30 | ||
strategy: | ||
fail-fast: false | ||
max-parallel: 4 | ||
matrix: | ||
python-version: [3.8, 3.9] | ||
os: [macOS-latest] | ||
|
||
steps: | ||
- name: Cancel previous runs on the same branch | ||
if: ${{ github.ref != 'refs/heads/dev' }} | ||
uses: styfle/[email protected] | ||
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: Get pip cache dir | ||
id: pip-cache | ||
run: | | ||
echo "::set-output name=dir::$(pip cache dir)" | ||
- name: Cache pip | ||
uses: actions/[email protected] | ||
with: | ||
# Note that new runners may break this https://github.com/actions/cache/issues/292 | ||
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: Run install script | ||
env: | ||
INSTALL_PYTHON_VERSION: ${{ matrix.python-version }} | ||
BUILD_VDF_CLIENT: "N" | ||
run: | | ||
brew install boost | ||
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-full_node-full_sync code with pytest | ||
run: | | ||
. ./activate | ||
./venv/bin/py.test tests/core/full_node/full_sync/test_full_sync.py -s -v --durations 0 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
name: MacOS wallet-sync Tests | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
tags: | ||
- '**' | ||
pull_request: | ||
branches: | ||
- '**' | ||
|
||
jobs: | ||
build: | ||
name: MacOS wallet-sync Tests | ||
runs-on: ${{ matrix.os }} | ||
timeout-minutes: 30 | ||
strategy: | ||
fail-fast: false | ||
max-parallel: 4 | ||
matrix: | ||
python-version: [3.8, 3.9] | ||
os: [macOS-latest] | ||
|
||
steps: | ||
- name: Cancel previous runs on the same branch | ||
if: ${{ github.ref != 'refs/heads/dev' }} | ||
uses: styfle/[email protected] | ||
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: Get pip cache dir | ||
id: pip-cache | ||
run: | | ||
echo "::set-output name=dir::$(pip cache dir)" | ||
- name: Cache pip | ||
uses: actions/[email protected] | ||
with: | ||
# Note that new runners may break this https://github.com/actions/cache/issues/292 | ||
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: Run install script | ||
env: | ||
INSTALL_PYTHON_VERSION: ${{ matrix.python-version }} | ||
BUILD_VDF_CLIENT: "N" | ||
run: | | ||
brew install boost | ||
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 wallet-sync code with pytest | ||
run: | | ||
. ./activate | ||
./venv/bin/py.test tests/wallet/sync/test_wallet_sync.py -s -v --durations 0 |
105 changes: 105 additions & 0 deletions
105
.github/workflows/build-test-ubuntu-core-full_node-dos.yml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
name: Ubuntu core-full_node-dos Test | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
tags: | ||
- '**' | ||
pull_request: | ||
branches: | ||
- '**' | ||
|
||
jobs: | ||
build: | ||
name: Ubuntu core-full_node-dos 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/dev' }} | ||
uses: styfle/[email protected] | ||
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/[email protected] | ||
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/[email protected] | ||
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-full_node-dos code with pytest | ||
run: | | ||
. ./activate | ||
./venv/bin/py.test -s -v --durations 0 |
Oops, something went wrong.