Skip to content

Commit 67810b2

Browse files
authored
Remove windows and macos bridge release (#1431)
We did this for server, let's do same here, as they are failing.
1 parent 4d54203 commit 67810b2

File tree

1 file changed

+5
-19
lines changed

1 file changed

+5
-19
lines changed

.github/workflows/bridge-release.yml

Lines changed: 5 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -9,26 +9,18 @@ env:
99

1010
jobs:
1111
release:
12-
name: release ${{ matrix.target }}
13-
runs-on: ${{ matrix.os }}
12+
name: release x86_64-unknown-linux-gnu
13+
runs-on: ubuntu-latest
1414
environment: release
1515

1616
strategy:
1717
fail-fast: false
1818
matrix:
1919
include:
20-
- target: x86_64-pc-windows-gnu
21-
os: windows-latest
22-
extension: ".exe"
23-
2420
- target: x86_64-unknown-linux-gnu
2521
os: ubuntu-latest
2622
extension: ""
2723

28-
- target: x86_64-apple-darwin
29-
os: macos-latest
30-
extension: ""
31-
3224
- target: aarch64-apple-darwin
3325
os: macos-latest
3426
extension: ""
@@ -37,21 +29,15 @@ jobs:
3729

3830
- name: Install Rust toolchain
3931
uses: dtolnay/rust-toolchain@stable
40-
with:
41-
targets: ${{ matrix.target }}
42-
43-
- name: Install musl for x86_64-unknown-linux-musl
44-
if: ${{ matrix.target == 'x86_64-unknown-linux-musl' }}
45-
run: sudo apt-get install -y musl-dev musl-tools
4632

4733
- name: Compile bridge
48-
run: cargo build --target ${{ matrix.target }} --release --manifest-path bridge/svix-bridge/Cargo.toml
34+
run: cargo build --release --manifest-path bridge/svix-bridge/Cargo.toml
4935

5036
- name: Release
5137
uses: actions/upload-artifact@v3
5238
with:
53-
name: svix-bridge-${{ matrix.target }}
54-
path: bridge/target/${{ matrix.target }}/release/svix-bridge${{ matrix.extension }}
39+
name: svix-bridge-x86_64-unknown-linux-gnu
40+
path: bridge/target/release/svix-bridge
5541
env:
5642
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5743

0 commit comments

Comments
 (0)