Skip to content

Update bug_report.yml #30

Update bug_report.yml

Update bug_report.yml #30

Workflow file for this run

name: Ci-Build
on:
push:
jobs:
build:
strategy:
matrix:
target:
- i686-linux-android
- x86_64-linux-android
- aarch64-linux-android
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Rust
run: rustup update stable
- name: Install cross-compilation tools
uses: taiki-e/setup-cross-toolchain-action@v1
with:
target: ${{ matrix.target }}
- name: build
run: cargo build --profile release
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: BuildLimitChanger-${{ matrix.target }}
path: target/${{ matrix.target }}/release/libBuildLimitChanger.so