# --------------------------------------------------------------- # Workflow File : build-on-Linux-ARMv7.yml # File Authors : Aoran Zeng # Contributors : Nul None # | # Created On : <2023-09-14> # Last Modified : <2025-03-06> # # Build chsrc on Linux (ARMv7) and upload it to GitHub: the 'pre' release # --------------------------------------------------------------- name: 构建于 Linux ARMv7 on: push: branches: [ "gh-build" ] pull_request: branches: [ "gh-build" ] jobs: build-and-upload: runs-on: ubuntu-latest steps: - name: 构建 uses: uraimo/run-on-arch-action@v2 with: arch: armv7 distro: ubuntu_latest dockerRunArgs: | --volume "${PWD}/artifacts:/artifacts" run: | apt-get update -qq apt-get install build-essential -y -q apt-get install git -y -q pwd ; ls -al git clone https://github.com/RubyMetric/chsrc -b gh-build -q cd chsrc make CI CI_ARTIFACT_NAME=chsrc-armv7-linux cp ./chsrc-armv7-linux /artifacts - name: 上传至 'pre' release uses: softprops/action-gh-release@v2 with: tag_name: pre files: | ./artifacts/chsrc-armv7-linux token: ${{ secrets.UPLOAD_TO_GITHUB }}