Skip to content
This repository was archived by the owner on May 25, 2025. It is now read-only.

Commit eb7b9d7

Browse files
committed
gh-action: only build x64
1 parent 1d2169b commit eb7b9d7

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ jobs:
1818
matrix:
1919
target:
2020
- x86_64-unknown-linux-gnu
21-
- aarch64-unknown-linux-gnu
22-
- armv7-unknown-linux-gnueabihf
21+
#- aarch64-unknown-linux-gnu
22+
#- armv7-unknown-linux-gnueabihf
2323

2424
steps:
2525
- uses: actions/checkout@v4
@@ -38,11 +38,12 @@ jobs:
3838
3939
- uses: dtolnay/rust-toolchain@stable
4040

41-
- name: Install cross
42-
run: wget -cO - https://github.com/cross-rs/cross/releases/latest/download/cross-x86_64-unknown-linux-gnu.tar.gz | tar -xz
41+
#- name: Install cross
42+
#run: wget -cO - https://github.com/cross-rs/cross/releases/latest/download/cross-x86_64-unknown-linux-gnu.tar.gz | tar -xz
4343

4444
- name: Build
45-
run: ./cross build --release --target ${{ matrix.target }}
45+
run: cargo build --release --target ${{ matrix.target }}
46+
#run: ./cross build --release --target ${{ matrix.target }}
4647

4748
- name: Rename binary
4849
run: |

Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ RUN adduser \
1414
--uid "${UID}" \
1515
"${USER}"
1616

17+
RUN apt-get update \
18+
&& apt-get install -y pkg-config libssl-dev
19+
1720
RUN cargo new --bin jitsi-openid
1821

1922
WORKDIR /jitsi-openid

0 commit comments

Comments
 (0)