Skip to content

Commit 10334c2

Browse files
committed
modify for testing
1 parent ba2e562 commit 10334c2

File tree

1 file changed

+40
-38
lines changed

1 file changed

+40
-38
lines changed

.github/workflows/release.yml

Lines changed: 40 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ on:
99
push:
1010
tags:
1111
- '**'
12+
branches:
13+
- 'dasm/build-aarch64'
1214

1315

1416
env:
@@ -24,7 +26,7 @@ jobs:
2426
re="^(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)(-(alpha|beta|rc)\.(0|[1-9][0-9]*))?$"
2527
if [[ ! "$GITHUB_REF_NAME" =~ $re ]]; then
2628
echo "Tag $GITHUB_REF_NAME is not a valid version number. Aborting release pipeline."
27-
exit 1
29+
exit 0
2830
fi
2931
3032
Package:
@@ -35,10 +37,10 @@ jobs:
3537
include:
3638
- name: linux-intel
3739
os: ubuntu-latest
38-
- name: macos-intel
39-
os: macos-15-intel
40-
- name: macos-arm
41-
os: macos-latest
40+
# - name: macos-intel
41+
# os: macos-15-intel
42+
# - name: macos-arm
43+
# os: macos-latest
4244
- name: linux-arm
4345
os: ubuntu-24.04-arm
4446
needs: Check-Tag-Pattern
@@ -61,37 +63,37 @@ jobs:
6163
name: sdist
6264
path: dist/*.tar.gz
6365

64-
Test-Slow:
65-
if: github.repository == 'opendp/tumult-core'
66-
runs-on: ubuntu-latest
67-
needs: Package
68-
steps:
69-
- name: Checkout code repository
70-
uses: actions/checkout@v4
71-
- name: Set up runner
72-
uses: opendp/tumult-tools/actions/setup@eabe1054863f0916a0087ad180fd83719049c094
73-
- name: Download dist
74-
uses: actions/download-artifact@v4
75-
with:
76-
name: linux-intel-wheel
77-
path: dist
78-
- run: uv run nox -s test-slow
66+
# Test-Slow:
67+
# if: github.repository == 'opendp/tumult-core'
68+
# runs-on: ubuntu-latest
69+
# needs: Package
70+
# steps:
71+
# - name: Checkout code repository
72+
# uses: actions/checkout@v4
73+
# - name: Set up runner
74+
# uses: opendp/tumult-tools/actions/setup@eabe1054863f0916a0087ad180fd83719049c094
75+
# - name: Download dist
76+
# uses: actions/download-artifact@v4
77+
# with:
78+
# name: linux-intel-wheel
79+
# path: dist
80+
# - run: uv run nox -s test-slow
7981

80-
Benchmark:
81-
if: github.repository == 'opendp/tumult-core'
82-
runs-on: ubuntu-latest
83-
needs: Package
84-
steps:
85-
- name: Checkout code repository
86-
uses: actions/checkout@v4
87-
- name: Set up runner
88-
uses: opendp/tumult-tools/actions/setup@eabe1054863f0916a0087ad180fd83719049c094
89-
- name: Download dist
90-
uses: actions/download-artifact@v4
91-
with:
92-
name: linux-intel-wheel
93-
path: dist
94-
- run: uv run nox -t benchmark
82+
# Benchmark:
83+
# if: github.repository == 'opendp/tumult-core'
84+
# runs-on: ubuntu-latest
85+
# needs: Package
86+
# steps:
87+
# - name: Checkout code repository
88+
# uses: actions/checkout@v4
89+
# - name: Set up runner
90+
# uses: opendp/tumult-tools/actions/setup@eabe1054863f0916a0087ad180fd83719049c094
91+
# - name: Download dist
92+
# uses: actions/download-artifact@v4
93+
# with:
94+
# name: linux-intel-wheel
95+
# path: dist
96+
# - run: uv run nox -t benchmark
9597

9698
Dependency-Matrix:
9799
if: github.repository == 'opendp/tumult-core'
@@ -100,8 +102,8 @@ jobs:
100102
matrix:
101103
# Note: mac runners are rather expensive (10x multiplier) so we don't use them here.
102104
os: [ubuntu-latest]
103-
dependencies: [oldest, newest]
104-
python: ["3.10", "3.12"]
105+
dependencies: [oldest] #, newest]
106+
python: ["3.10"] #, "3.12"]
105107
include:
106108
- os: ubuntu-latest
107109
wheel: linux-intel-wheel
@@ -123,4 +125,4 @@ jobs:
123125
path: dist
124126
- run: uv run nox -s "test_dependency_matrix(${{matrix.python}}-${{matrix.dependencies}})"
125127
env:
126-
SPARK_LOCAL_HOSTNAME: localhost
128+
SPARK_LOCAL_HOSTNAME: localhost

0 commit comments

Comments
 (0)