Skip to content

Commit a412809

Browse files
committed
back to full binary wheel checks etc
1 parent 9abbcb6 commit a412809

File tree

3 files changed

+10
-17
lines changed

3 files changed

+10
-17
lines changed

.github/actions/install/action.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,6 @@ inputs:
3939
runs:
4040
using: "composite"
4141
steps:
42-
- name: Set up rust
43-
# TODO: figure out how to get maturin to install this maybe?
44-
# or otherwise get this matching the 'other project's' rust expectations?
45-
uses: dtolnay/[email protected]
46-
4742
- name: Run install script (macOS, Ubuntu)
4843
if: runner.os == 'macos' || runner.os == 'linux'
4944
shell: bash

.github/workflows/check_wheel_availability.yaml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
name: 🚨 Check Dependency Artifacts
22

3-
# TODO: re-enable once we are using a release of chia_rs
43
on:
54
push:
65
branches:
7-
# - "long_lived/**"
6+
- "long_lived/**"
87
- main
98
- "release/**"
109
release:
1110
types: [published]
12-
# pull_request:
13-
# branches:
14-
# - "**"
11+
pull_request:
12+
branches:
13+
- "**"
1514

1615
concurrency:
1716
group: ${{ github.event_name == 'pull_request' && format('{0}-{1}', github.workflow_ref, github.event.pull_request.number) || github.run_id }}

.github/workflows/test-install-scripts.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,20 @@
11
name: 🏗️ Test Install Scripts
22

3-
# TODO: re-enable once we are using a release of chia_rs
43
on:
54
push:
65
paths-ignore:
76
- "**.md"
87
branches:
9-
# - "long_lived/**"
8+
- "long_lived/**"
109
- main
1110
- "release/**"
1211
release:
1312
types: [published]
14-
# pull_request:
15-
# paths-ignore:
16-
# - "**.md"
17-
# branches:
18-
# - "**"
13+
pull_request:
14+
paths-ignore:
15+
- "**.md"
16+
branches:
17+
- "**"
1918

2019
concurrency:
2120
group: ${{ github.event_name == 'pull_request' && format('{0}-{1}', github.workflow_ref, github.event.pull_request.number) || github.run_id }}

0 commit comments

Comments
 (0)