Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge chia tag 1.0.15 into develop #44

Merged
merged 30 commits into from Sep 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
ba9bbb2
Also build Python 3.10 wheels (#292)
altendky Dec 3, 2021
64d8d7e
Build on main, tags, and PRs (#293)
altendky Dec 3, 2021
cffc646
Cancel-workflow to 0.9.1 - test Python 3.10 on Mac/Ubuntu (#303)
hoffmang9 Jan 8, 2022
c009fa3
Build Python 3.9 and 3.10 M1 wheels (#304)
hoffmang9 Jan 9, 2022
802fd68
Update cibuildwheel to 2.3.1 (#302)
hoffmang9 Jan 9, 2022
f0810fd
build(deps): bump follow-redirects from 1.14.1 to 1.14.7 in /js-bindi…
dependabot[bot] Jan 16, 2022
41a1b44
build(deps): bump engine.io from 4.1.1 to 4.1.2 in /js-bindings (#306)
dependabot[bot] Jan 16, 2022
34a3301
Updated the pairings tutorial URL
christianpaquin Jan 19, 2022
cdb1685
build(deps): bump log4js from 6.3.0 to 6.4.0 in /js-bindings (#310)
dependabot[bot] Jan 21, 2022
52fa408
build(deps-dev): bump karma from 6.3.4 to 6.3.14 in /js-bindings (#312)
dependabot[bot] Feb 11, 2022
50438df
test: Add augmented test vector
navroudsari Feb 22, 2022
7a87417
test: fix lint issue
navroudsari Feb 23, 2022
5a4204e
build(deps-dev): bump karma from 6.3.14 to 6.3.16 in /js-bindings (#314)
dependabot[bot] Mar 2, 2022
84e1944
python-bindings: Release the python GIL whenever it makes sense (#311)
xdustinface Apr 4, 2022
4787d21
Link GMP dynamically in a consistent way. (#307)
AmineKhaldi Apr 4, 2022
0c37d86
build(deps): bump minimist from 1.2.5 to 1.2.6 in /js-bindings (#316)
dependabot[bot] Apr 10, 2022
9c0d7d8
build(deps): bump ansi-regex from 3.0.0 to 3.0.1 in /js-bindings (#317)
dependabot[bot] Apr 10, 2022
7476dce
Fix and use OpenMP on Windows builds. (#324)
AmineKhaldi Apr 24, 2022
3a1489b
Fix a typo that resulted in skipping the wheel build preparing comman…
AmineKhaldi Apr 24, 2022
1579662
target arm64 linux runner (#325)
cmmarslender Apr 25, 2022
ffd1622
Start working on from_bytes_unchecked
mariano54 May 5, 2022
235066d
Always CheckValid before NativeVerify
mariano54 May 5, 2022
3be4e9b
from_bytes_unchecked
mariano54 May 6, 2022
eca6749
lighter-weight buffer handling
arvidn May 7, 2022
bef7015
NPM Publish (#335)
cmmarslender Jun 21, 2022
dc5ee69
Fix bit getters in point deserialization
alessandroguggino May 31, 2022
7c64d8c
Fix a typo. Addresses issue #336
AmineKhaldi Jul 24, 2022
a9f9013
fix Bytes signatures. Byte is a span-type, it should be passed by value
arvidn Aug 4, 2022
d50917d
add unchecked version of GTElement.from_bytes
arvidn Aug 4, 2022
5f4f6ec
rework build matrix to a single workflow (#338)
altendky Aug 11, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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