mirror of
https://github.com/starship/starship.git
synced 2025-01-27 16:49:13 +01:00
ci(i686): build Linux 32-bit version of Starship (#1966)
Have updated the deploy workflow to build a 32 bit version of Starship for Linux. This switches the build steps to use the action-rs cargo since it makes using cross a lot easier.
This commit is contained in:
parent
1ba862b26f
commit
a6c1cad4d0
24
.github/workflows/deploy.yml
vendored
24
.github/workflows/deploy.yml
vendored
@ -42,6 +42,7 @@ jobs:
|
||||
target:
|
||||
- x86_64-unknown-linux-gnu
|
||||
- x86_64-unknown-linux-musl
|
||||
- i686-unknown-linux-musl
|
||||
- x86_64-apple-darwin
|
||||
- x86_64-pc-windows-msvc
|
||||
include:
|
||||
@ -51,6 +52,9 @@ jobs:
|
||||
- target: x86_64-unknown-linux-musl
|
||||
os: ubuntu-latest
|
||||
name: starship-x86_64-unknown-linux-musl.tar.gz
|
||||
- target: i686-unknown-linux-musl
|
||||
os: ubuntu-latest
|
||||
name: starship-i686-unknown-linux-musl.tar.gz
|
||||
- target: x86_64-apple-darwin
|
||||
os: macOS-latest
|
||||
name: starship-x86_64-apple-darwin.tar.gz
|
||||
@ -80,16 +84,24 @@ jobs:
|
||||
target: ${{ matrix.target }}
|
||||
|
||||
- name: Setup | musl tools
|
||||
if: matrix.target == 'x86_64-unknown-linux-musl'
|
||||
if: contains(matrix.target, 'musl')
|
||||
run: sudo apt install -y musl-tools
|
||||
|
||||
- name: Build | Build
|
||||
if: matrix.target != 'x86_64-unknown-linux-musl'
|
||||
run: cargo build --release --target ${{ matrix.target }}
|
||||
if: "! contains(matrix.target, 'musl')"
|
||||
uses: actions-rs/cargo@v1
|
||||
with:
|
||||
command: build
|
||||
args: --release --target ${{ matrix.target }}
|
||||
use-cross: true
|
||||
|
||||
- name: Build | Build (musl)
|
||||
if: matrix.target == 'x86_64-unknown-linux-musl'
|
||||
run: cargo build --release --features tls-vendored --target ${{ matrix.target }}
|
||||
- name: Build | Build [musl]
|
||||
if: contains(matrix.target, 'musl')
|
||||
uses: actions-rs/cargo@v1
|
||||
with:
|
||||
command: build
|
||||
args: --release --features tls-vendored --target ${{ matrix.target }}
|
||||
use-cross: true
|
||||
|
||||
- name: Post Setup | Prepare artifacts [Windows]
|
||||
if: matrix.os == 'windows-latest'
|
||||
|
Loading…
Reference in New Issue
Block a user