Skip to content

Commit

Permalink
test: make tests with test environment
Browse files Browse the repository at this point in the history
  • Loading branch information
tfuxu committed Sep 4, 2023
1 parent 69de072 commit fe448f4
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build_wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
path: dist/*.tar.gz

build_macos:
#if: false
if: false # Disable for now; For testing
name: MacOS ${{ matrix.arch_cibw_go[0] }}
strategy:
fail-fast: false
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
path: ./wheelhouse/*.whl

build_linux_arm64:
#if: false
if: false # Disable for now; For testing
name: Linux arm64
runs-on: ubuntu-latest
strategy:
Expand Down Expand Up @@ -236,13 +236,13 @@ jobs:
upload_to_pypi:
needs:
- build_sdist
- build_macos
#- build_macos
- build_linux_x86_64
- build_linux_arm64
#- build_linux_arm64
#- build_linux_armv7l
#- build_windows
runs-on: ubuntu-latest
environment: pypi-upload
environment: pypi-test-upload
permissions:
id-token: write
if: github.event_name == 'push' # && startsWith(github.ref, 'refs/tags/v')
Expand All @@ -259,9 +259,9 @@ jobs:
all_builds_passed:
needs:
- build_sdist
- build_macos
#- build_macos
- build_linux_x86_64
- build_linux_arm64
#- build_linux_arm64
#- build_linux_armv7l
#- build_windows
runs-on: ubuntu-latest
Expand Down

0 comments on commit fe448f4

Please sign in to comment.