Skip to content

Commit e53fb7f

Browse files
committed
Update to stable inline asm
1 parent eba1c1b commit e53fb7f

File tree

2 files changed

+4
-14
lines changed

2 files changed

+4
-14
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
env:
1212
RUSTFLAGS: -D warnings
1313
RUST_BACKTRACE: 1
14-
STABLE_VERSION: 1.51.0
14+
STABLE_VERSION: 1.59.0
1515

1616
jobs:
1717
test:
@@ -68,7 +68,7 @@ jobs:
6868
- aarch64
6969
version:
7070
- 1.2.1
71-
- 1.4.0
71+
- 1.6.2
7272
name: libunwind ${{ matrix.target }} ${{ matrix.version }}
7373
runs-on: ubuntu-latest
7474
env:
@@ -79,17 +79,8 @@ jobs:
7979
- uses: actions/checkout@v2
8080
- name: Install Rust
8181
run: |
82-
case ${{ matrix.target }} in
83-
aarch64)
84-
version=nightly
85-
;;
86-
*)
87-
version=$STABLE_VERSION
88-
;;
89-
esac
90-
91-
rustup update $version
92-
rustup default $version
82+
rustup update $STABLE_VERSION
83+
rustup default $STABLE_VERSION
9384
rustup target add ${{ matrix.target }}-unknown-linux-gnu
9485
- name: Get Rust version
9586
id: rust-version

unwind/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@
3737
//!
3838
//! [libunwind]: http://www.nongnu.org/libunwind/
3939
#![doc(html_root_url = "https://sfackler.github.io/rstack/doc")]
40-
#![cfg_attr(target_arch = "aarch64", feature(asm))]
4140
#![warn(missing_docs)]
4241

4342
use foreign_types::Opaque;

0 commit comments

Comments
 (0)