Skip to content

Commit

Permalink
Revert "Use rustls for sentry client (#9667)"
Browse files Browse the repository at this point in the history
This reverts commit 82ed636.
  • Loading branch information
marcins committed Apr 23, 2024
1 parent 71a8493 commit cbee81e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 187 deletions.
15 changes: 5 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,6 @@ on:
description: 'The type of release, usually corresponds to the dist-tag'
required: true
type: string
profile:
description: 'The profile to use when building the native binaries'
required: false
default: 'release'
type: string
secrets:
GHCR_TOKEN:
required: true
Expand Down Expand Up @@ -58,7 +53,7 @@ jobs:
if: ${{ matrix.target == 'aarch64-apple-darwin' }}
run: sudo rm -Rf /Library/Developer/CommandLineTools/SDKs/*;
- name: Build native packages
run: yarn build-native-${{ inputs.profile }}
run: yarn build-native-${{ input.profile || 'release' }}
env:
RUST_TARGET: ${{ matrix.target }}
- name: Strip debug symbols # https://github.com/rust-lang/rust/issues/46034
Expand Down Expand Up @@ -93,7 +88,7 @@ jobs:
override: true
- uses: bahmutov/npm-install@v1.8.35
- name: Build native packages
run: yarn build-native-${{ inputs.profile }}
run: yarn build-native-${{ input.profile || 'release' }}
- name: Strip debug symbols # https://github.com/rust-lang/rust/issues/46034
run: strip packages/*/*/*.node
- name: Upload artifacts
Expand Down Expand Up @@ -138,7 +133,7 @@ jobs:
with:
shared-key: ${{ matrix.target }}
- name: Build native packages
run: yarn build-native-${{ inputs.profile }}
run: yarn build-native-${{ input.profile || 'release' }}
env:
RUST_TARGET: ${{ matrix.target }}
CFLAGS: ${{ matrix.cflags }}
Expand Down Expand Up @@ -191,7 +186,7 @@ jobs:
target: ${{ matrix.target }}
- uses: bahmutov/npm-install@v1.8.35
- name: Build native packages
run: yarn build-native-${{ inputs.profile }}
run: yarn build-native-${{ input.profile || 'release' }}
env:
RUST_TARGET: ${{ matrix.target }}
CFLAGS: ${{ matrix.cflags }}
Expand Down Expand Up @@ -222,7 +217,7 @@ jobs:
fetch-depth: 0
- uses: bahmutov/npm-install@v1.8.35
- name: Build native packages
run: yarn build-native-${{ inputs.profile }}
run: yarn build-native-${{ input.profile || 'release' }}
- name: Download artifacts
uses: actions/download-artifact@v3
with:
Expand Down
177 changes: 6 additions & 171 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit cbee81e

Please sign in to comment.