mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-03 04:57:38 +03:00
fix(client): revert to hyper_rustls :P hi SWE 👋
This commit is contained in:
parent
6ecdedd2ed
commit
cb9a2a3c39
5 changed files with 112 additions and 115 deletions
8
.github/workflows/build-artifacts.yaml
vendored
8
.github/workflows/build-artifacts.yaml
vendored
|
@ -38,24 +38,24 @@ jobs:
|
|||
- if: matrix.target == 'x86_64-unknown-linux-musl'
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y --no-install-recommends musl-tools libssl-dev
|
||||
sudo apt-get install -y --no-install-recommends musl-tools
|
||||
|
||||
- if: matrix.target == 'armv7-unknown-linux-musleabihf'
|
||||
run: |
|
||||
sudo apt update
|
||||
sudo apt install -y gcc-arm-linux-gnueabihf musl-tools libssl-dev
|
||||
sudo apt install -y gcc-arm-linux-gnueabihf musl-tools
|
||||
|
||||
- if: matrix.target == 'aarch64-unknown-linux-musl'
|
||||
run: |
|
||||
sudo apt update
|
||||
sudo apt install -y gcc-aarch64-linux-gnu musl-tools libssl-dev
|
||||
sudo apt install -y gcc-aarch64-linux-gnu musl-tools
|
||||
|
||||
- name: Versions
|
||||
id: version
|
||||
run: echo "VERSION=$(cargo metadata --format-version 1 --no-deps | jq .packages[0].version -r | sed 's/^/v/')" >> "$GITHUB_OUTPUT"
|
||||
|
||||
- name: Build
|
||||
run: RUSTFLAGS='-C target-feature=+crt-static' cargo build --release --target ${{ matrix.target }}
|
||||
run: cargo build --release --target ${{ matrix.target }}
|
||||
|
||||
- name: Package release
|
||||
run: tar czf redlib-${{ matrix.target }}.tar.gz -C target/${{ matrix.target }}/release/ redlib
|
||||
|
|
4
.github/workflows/main-rust.yml
vendored
4
.github/workflows/main-rust.yml
vendored
|
@ -30,8 +30,8 @@ jobs:
|
|||
with:
|
||||
toolchain: stable
|
||||
|
||||
- name: Install musl-gcc and libssl-dev
|
||||
run: sudo apt-get install musl-tools libssl-dev
|
||||
- name: Install musl-gcc
|
||||
run: sudo apt-get install musl-tools
|
||||
|
||||
- name: Install cargo musl target
|
||||
run: rustup target add x86_64-unknown-linux-musl
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue