Skip to content

Commit

Permalink
Merge pull request #44 from UdjinM6/chia_bkp_1.0.15
Browse files Browse the repository at this point in the history
Merge chia tag 1.0.15 into develop
  • Loading branch information
PastaPastaPasta committed Sep 21, 2022
2 parents 610307c + 5f4f6ec commit 057ca01
Show file tree
Hide file tree
Showing 21 changed files with 935 additions and 611 deletions.
130 changes: 0 additions & 130 deletions .github/workflows/build-aarch64.yml

This file was deleted.

95 changes: 0 additions & 95 deletions .github/workflows/build-m1-wheel.yml

This file was deleted.

27 changes: 17 additions & 10 deletions .github/workflows/build-test.yaml
@@ -1,6 +1,19 @@
name: Build and Test C++, Javascript, and Python

on: [push, pull_request]
on:
push:
branches:
- main
tags:
- '**'
pull_request:
branches:
- '**'

concurrency:
# SHA is added to the end if on `main` to let all main workflows run
group: ${{ github.ref }}-${{ github.workflow }}-${{ github.event_name }}-${{ (github.ref == 'refs/heads/main') && github.sha || '' }}
cancel-in-progress: true

jobs:
build_wheels:
Expand All @@ -10,17 +23,11 @@ jobs:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest]
python: ['3.7', '3.8', '3.9']
python: ['3.7', '3.8', '3.9', '3.10']

steps:
- name: Cancel previous runs on the same branch
if: ${{ github.ref != 'refs/heads/main' }}
uses: styfle/cancel-workflow-action@0.7.0
with:
access_token: ${{ github.token }}

- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3

- uses: actions/setup-python@v2
name: Install Python
Expand Down Expand Up @@ -62,7 +69,7 @@ jobs:
python python-impl/impl-test.py
- name: Install emsdk
uses: mymindstorm/setup-emsdk@v9
uses: mymindstorm/setup-emsdk@v11

- name: Test javascript bindings
run: |
Expand Down

0 comments on commit 057ca01

Please sign in to comment.