This repository was archived by the owner on May 25, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 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 : |
Original file line number Diff line number Diff 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+
1720RUN cargo new --bin jitsi-openid
1821
1922WORKDIR /jitsi-openid
You can’t perform that action at this time.
0 commit comments