Skip to content

Commit

Permalink
Disabling static builds for arm in release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kenshaw committed Oct 28, 2023
1 parent 3cc538c commit 95ad636
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,12 @@ jobs:
- name: Build ${{ matrix.arch }}
run: ./build-release.sh -r -a ${{ matrix.arch }}
- name: Build ${{ matrix.arch }} (static)
if: matrix.arch != 'arm'
run: ./build-release.sh -r -a ${{ matrix.arch }} -s
# - name: Archive artifacts
# uses: actions/upload-artifact@v3
# with:
# name: dist-linux
# name: dist-linux-${{ matrix.arch }}
# path: build/linux/*/*/usql*.tar.bz2

# build_for_macos:
Expand All @@ -65,7 +66,7 @@ jobs:
# - name: Archive artifacts
# uses: actions/upload-artifact@v3
# with:
# name: dist-darwin-amd64
# name: dist-darwin-${{ matrix.arch }}
# path: build/darwin/*/*/usql*.tar.bz2

# build_for_windows:
Expand Down

0 comments on commit 95ad636

Please sign in to comment.