Skip to content

cross-android-cannot-find-lunwind #2

cross-android-cannot-find-lunwind

cross-android-cannot-find-lunwind #2

name: CI
on: [push]
env:
CROSS_VERSION: 0.2.5
jobs:
cross_build:
strategy:
max-parallel: 8
fail-fast: false
matrix:
rust_versoin:
- 1.67.0
- 1.68.0
- 1.76.0
target:
- i686-linux-android # ERROR
- x86_64-linux-android # ERROR
- x86_64-unknown-linux-musl # WORKS
runs-on: ubuntu-22.04
working-directory: ./cross-android-cannot-find-lunwind

Check failure on line 23 in .github/workflows/cross-android-cannot-find-lunwind.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/cross-android-cannot-find-lunwind.yml (Line: 23, Col: 5): Unexpected value 'working-directory'
steps:
- run: rustup default ${{ matrix.rust_versoin }}
- uses: actions/checkout@v4
- name: Install cross
run: cd /tmp && curl -L https://github.com/cross-rs/cross/releases/download/v${CROSS_VERSION}/cross-x86_64-unknown-linux-musl.tar.gz | tar xzf -
- run: /tmp/cross build --target=${{ matrix.target }} --release --locked