Skip to content

Commit 5fdc7d0

Browse files
🔖 Bump 0.1.8
1 parent 42a2a24 commit 5fdc7d0

2 files changed

Lines changed: 3 additions & 27 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,6 @@ jobs:
2121
os: ubuntu-22.04
2222
artifact_name: piri-x86_64-unknown-linux-gnu
2323
strip: true
24-
- target: aarch64-unknown-linux-gnu
25-
os: ubuntu-22.04
26-
artifact_name: piri-aarch64-unknown-linux-gnu
27-
strip: true
2824

2925
steps:
3026
- name: Checkout repository
@@ -48,33 +44,13 @@ jobs:
4844
restore-keys: |
4945
${{ runner.os }}-cargo-${{ matrix.target }}-
5046
51-
- name: Install cross-compilation dependencies
52-
if: matrix.target == 'aarch64-unknown-linux-gnu'
53-
run: |
54-
sudo apt-get update
55-
sudo apt-get install -y gcc-aarch64-linux-gnu
56-
sudo apt-get install -y libc6-dev-arm64-cross
57-
sudo apt-get install -y binutils-aarch64-linux-gnu
58-
59-
- name: Set up cross-compilation
60-
if: matrix.target == 'aarch64-unknown-linux-gnu'
61-
run: |
62-
echo "CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=aarch64-linux-gnu-gcc" >> $GITHUB_ENV
63-
echo "CC_aarch64_unknown_linux_gnu=aarch64-linux-gnu-gcc" >> $GITHUB_ENV
64-
echo "CXX_aarch64_unknown_linux_gnu=aarch64-linux-gnu-g++" >> $GITHUB_ENV
65-
6647
- name: Build release binary
6748
run: |
6849
cargo build --release --target ${{ matrix.target }}
6950
7051
- name: Strip binary
7152
if: matrix.strip
72-
run: |
73-
if [ "${{ matrix.target }}" == "aarch64-unknown-linux-gnu" ]; then
74-
aarch64-linux-gnu-strip target/${{ matrix.target }}/release/piri
75-
else
76-
strip target/${{ matrix.target }}/release/piri
77-
fi
53+
run: strip target/${{ matrix.target }}/release/piri
7854

7955
- name: Create archive
8056
working-directory: ${{ github.workspace }}

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "piri"
3-
version = "0.1.7"
3+
version = "0.1.8"
44
edition = "2021"
55
authors = ["Starfall"]
66
description = "Extend niri compositor capabilities with extensible command system and plugins"
@@ -19,7 +19,7 @@ log = "0.4"
1919
env_logger = "0.11"
2020
shellexpand = "3.1"
2121
libc = "0.2"
22-
niri-ipc = "25.11"
22+
niri-ipc = "26.4.0"
2323
async-trait = "0.1"
2424
regex = "1.10"
2525
futures = "0.3"

0 commit comments

Comments
 (0)