mirror of
https://github.com/librespot-org/librespot.git
synced 2024-12-18 17:11:53 +00:00
Remove .cargo/config.toml and set link compiler on CI with CARGO_TARGET_<triple>_LINKER (#1333)
* Remove .cargo/config.toml and set link compiler on CI with CARGO_TARGET_<triple>_LINKER * Run windows and cross builds parallel to linux tests Signed-off-by: yubiuser <github@yubiuser.dev>
This commit is contained in:
parent
4f9151c642
commit
b85bab5095
3 changed files with 19 additions and 8 deletions
|
@ -1,3 +0,0 @@
|
|||
|
||||
[target.armv7-unknown-linux-gnueabihf]
|
||||
linker = "arm-linux-gnueabihf-gcc"
|
23
.github/workflows/test.yml
vendored
23
.github/workflows/test.yml
vendored
|
@ -154,7 +154,7 @@ jobs:
|
|||
- run: cargo hack check --each-feature
|
||||
|
||||
test-windows:
|
||||
needs: test-linux
|
||||
needs: clippy
|
||||
name: cargo +${{ matrix.toolchain }} check (${{ matrix.os }})
|
||||
runs-on: ${{ matrix.os }}
|
||||
continue-on-error: false
|
||||
|
@ -201,7 +201,7 @@ jobs:
|
|||
|
||||
test-cross-arm:
|
||||
name: cross +${{ matrix.toolchain }} build ${{ matrix.target }}
|
||||
needs: test-linux
|
||||
needs: clippy
|
||||
runs-on: ${{ matrix.os }}
|
||||
continue-on-error: false
|
||||
strategy:
|
||||
|
@ -234,11 +234,24 @@ jobs:
|
|||
target
|
||||
key: ${{ runner.os }}-${{ matrix.target }}-${{ steps.get-rustc-version.outputs.version }}-${{ hashFiles('Cargo.lock') }}
|
||||
|
||||
- name: Install the cross compiler targets
|
||||
- name: Install the cross compiler rust targets
|
||||
run: rustup target add ${{ matrix.target }}
|
||||
|
||||
- name: Install cross compiler toolchain
|
||||
run: sudo apt-get install -y gcc-arm-linux-gnueabihf
|
||||
- name: Install cross compiler
|
||||
run: |
|
||||
if [ ${{ matrix.target }} = "armv7-unknown-linux-gnueabihf" ]; then
|
||||
sudo apt-get install -y gcc-arm-linux-gnueabihf
|
||||
fi
|
||||
|
||||
- name: Set target link compiler
|
||||
run: |
|
||||
# Convert target to uppercase and replace - with _
|
||||
target=${{ matrix.target }}
|
||||
target=${target^^}
|
||||
target=${target//-/_}
|
||||
if [ ${{ matrix.target }} = "armv7-unknown-linux-gnueabihf" ]; then
|
||||
echo "CARGO_TARGET_${target}_LINKER=arm-linux-gnueabihf-gcc" >> $GITHUB_ENV
|
||||
fi
|
||||
|
||||
- name: Build
|
||||
run: cargo build --verbose --target ${{ matrix.target }} --no-default-features
|
||||
|
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,4 +1,5 @@
|
|||
target
|
||||
.cargo
|
||||
spotify_appkey.key
|
||||
.vagrant/
|
||||
.project
|
||||
|
|
Loading…
Reference in a new issue