-
-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into feature/wasm
* master: (22 commits) fix(debuginfo): Update dmsort to 1.0.1 to avoid panic due to UB (#287) ci: Use GHA instead of zeus (#286) ref: Introduce explicit NameMangling and better DemangleOptions (#275) meta: Bump all semver-major dependencies (#283) feat(demangle): Update swift demangler to 5.3 (#282) ref: Add File/FunctionIterator and lifetimes to DebugSession (#279) fix: Implement new clippy advice (#280) fix: Add a SymbolIterator and Lifetimes to ObjectLike trait (#277) ci: Switch to GitHub Actions (#273) ref: Introduce feature flags for demangling languages (#274) ref(common): Change InstructionInfo setters to Option (#272) ref: Remove all deprecated items (#271) ref: Replace failure with std::error::Error (#264) ref: Remove deprecated proguard support (#267) build: Reorganize the workspace (#266) build(unreal): Rename with-serde to serde (#265) fix(debuginfo): Detect mangled anonymous namespaces in PDB inlinees (#261) release: 7.5.0 meta: Update changelog for 7.5.0 feat: Unsafe transmute for PDB symbols (#258) ...
- Loading branch information
Showing
265 changed files
with
3,475 additions
and
4,055 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,21 @@ | ||
--- | ||
minVersion: "0.9.0" | ||
minVersion: "0.13.2" | ||
github: | ||
owner: getsentry | ||
repo: symbolic | ||
changelogPolicy: auto | ||
|
||
statusProvider: | ||
name: github | ||
artifactProvider: | ||
name: github | ||
|
||
preReleaseCommand: bash scripts/bump-version | ||
targets: | ||
- name: crates | ||
- name: pypi | ||
- name: github | ||
changelogPolicy: simple | ||
requireNames: | ||
- /^symbolic-.*-py2.py3-none-macosx_10_13_x86_64.whl$/ | ||
- /^symbolic-.*-py2.py3-none-macosx_10_15_x86_64.whl$/ | ||
- /^symbolic-.*-py2.py3-none-manylinux2010_i686.whl$/ | ||
- /^symbolic-.*-py2.py3-none-manylinux2010_x86_64.whl$/ | ||
- /^symbolic-.*.zip$/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- "release/**" | ||
pull_request: | ||
|
||
jobs: | ||
lints: | ||
name: Style/Linting | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: recursive | ||
|
||
- uses: actions-rs/toolchain@v1 | ||
with: | ||
profile: minimal | ||
toolchain: stable | ||
override: true | ||
components: rustfmt, clippy | ||
|
||
- uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.7 | ||
|
||
- uses: Swatinem/rust-cache@v1 | ||
|
||
- name: Run cargo fmt | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
command: fmt | ||
args: --all -- --check | ||
|
||
- run: make style-python | ||
|
||
- name: Run cargo clippy | ||
uses: actions-rs/clippy-check@v1 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
args: --all-features --workspace --tests --examples -- -D clippy::all | ||
|
||
- run: make lint-python | ||
|
||
test-rust: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu-latest, macos-latest] | ||
|
||
name: Rust Test on ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: recursive | ||
|
||
- uses: actions-rs/toolchain@v1 | ||
with: | ||
profile: minimal | ||
toolchain: stable | ||
override: true | ||
|
||
- uses: Swatinem/rust-cache@v1 | ||
|
||
- name: Run cargo test | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
command: test | ||
args: --workspace --all-features | ||
|
||
test-python: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu-latest, macos-latest] | ||
|
||
name: Python Test on ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
|
||
env: | ||
SYMBOLIC_DEBUG: 1 | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: recursive | ||
|
||
- uses: actions-rs/toolchain@v1 | ||
with: | ||
profile: minimal | ||
toolchain: stable | ||
override: true | ||
|
||
- uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.7 | ||
|
||
- uses: Swatinem/rust-cache@v1 | ||
|
||
- run: make test-python |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
name: Release | ||
|
||
on: | ||
push: | ||
branches: | ||
- "release/**" | ||
|
||
jobs: | ||
python-wheel-mac: | ||
name: Python macOS | ||
runs-on: macos-10.15 | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: recursive | ||
|
||
- uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: stable | ||
profile: minimal | ||
override: true | ||
|
||
- uses: actions/setup-python@v2 | ||
with: | ||
python-version: 2.7 | ||
|
||
- run: make wheel SYMBOLIC_PYTHON=python2 | ||
|
||
- uses: actions/upload-artifact@v2 | ||
with: | ||
name: ${{ github.sha }} | ||
path: py/dist/* | ||
|
||
python-wheel-linux: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
build-arch: [i686, x86_64] | ||
|
||
name: Python Linux ${{ matrix.build-arch }} | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: recursive | ||
|
||
- uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: stable | ||
profile: minimal | ||
override: true | ||
|
||
- name: Build in Docker | ||
run: make wheel-manylinux IMAGE=quay.io/pypa/manylinux2010_${{ matrix.build-arch }} | ||
|
||
- uses: actions/upload-artifact@v2 | ||
with: | ||
name: ${{ github.sha }} | ||
path: py/dist/* | ||
|
||
sdist: | ||
name: Python sdist | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- uses: actions/setup-python@v2 | ||
with: | ||
python-version: 2.7 | ||
|
||
- run: make sdist | ||
|
||
- uses: actions/upload-artifact@v2 | ||
with: | ||
name: ${{ github.sha }} | ||
path: py/dist/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[submodule "minidump/third_party/breakpad"] | ||
path = minidump/third_party/breakpad | ||
path = symbolic-minidump/third_party/breakpad | ||
url = https://github.com/getsentry/breakpad | ||
shallow = true | ||
[submodule "minidump/third_party/lss"] | ||
path = minidump/third_party/lss | ||
path = symbolic-minidump/third_party/lss | ||
url = https://github.com/getsentry/linux-syscall-support |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.