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

chore(ci): remove musl release #17041

Merged
merged 1 commit into from
Dec 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 1 addition & 27 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,30 +131,6 @@ jobs:
cp ./target/${{ matrix.target }}/${{ env.BUILD_PROFILE }}/databend-* ./target/${{ env.BUILD_PROFILE }}/
bash ./scripts/ci/ci-run-sqllogic-tests.sh base

build_musl:
runs-on: [self-hosted, X64, Linux, 8c32g, aws]
needs: create_release
strategy:
fail-fast: false
matrix:
target:
- x86_64-unknown-linux-musl
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ needs.create_release.outputs.sha }}
fetch-depth: 0
- name: Build Release
uses: ./.github/actions/build_linux
env:
DATABEND_RELEASE_VERSION: ${{ needs.create_release.outputs.version }}
DATABEND_ENTERPRISE_LICENSE_PUBLIC_KEY: ${{ secrets.DATABEND_ENTERPRISE_LICENSE_PUBLIC_KEY }}
with:
sha: ${{ github.sha }}
target: ${{ matrix.target }}
artifacts: query,meta,metactl

build_udf:
runs-on: [self-hosted, "${{ matrix.runner }}", Linux, 8c32g, aws]
needs: create_release
Expand Down Expand Up @@ -184,7 +160,7 @@ jobs:

publish:
runs-on: [self-hosted, X64, Linux, 2c8g, aws]
needs: [create_release, build_default, build_musl]
needs: [create_release, build_default]
strategy:
fail-fast: false
matrix:
Expand All @@ -193,8 +169,6 @@ jobs:
target: x86_64-unknown-linux-gnu
- category: default
target: aarch64-unknown-linux-gnu
- category: default
target: x86_64-unknown-linux-musl
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
Loading