Skip to content

Commit

Permalink
ci(i686): build Linux 32-bit version of Starship (starship#1966)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
andytom authored Jan 2, 2021
1 parent 1ba862b commit a6c1cad
Showing 1 changed file with 18 additions and 6 deletions.
24 changes: 18 additions & 6 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down Expand Up @@ -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'
Expand Down

0 comments on commit a6c1cad

Please sign in to comment.