mirror of
https://github.com/RubyMetric/chsrc
synced 2025-06-22 20:42:46 +08:00
96 lines
2.7 KiB
YAML
96 lines
2.7 KiB
YAML
name: Linux Build
|
|
on:
|
|
push:
|
|
branches: [ "gh-pipeline" ]
|
|
pull_request:
|
|
branches: [ "gh-pipeline" ]
|
|
|
|
jobs:
|
|
x64-build-and-upload:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v3
|
|
- name: Compile chsrc x64
|
|
run: |
|
|
make CI CI_BUILD_NAME=chsrc-x64-linux
|
|
- name: List files
|
|
run: ls *-linux
|
|
- name: Release
|
|
uses: softprops/action-gh-release@v1
|
|
# if: startsWith(github.ref, 'refs/tags/')
|
|
with:
|
|
tag_name: preview
|
|
files: |
|
|
chsrc-x64-linux
|
|
token: ${{ secrets.CHSRC_UPLOAD }}
|
|
|
|
|
|
multi-build-and-upload:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Build ARMv7
|
|
uses: uraimo/run-on-arch-action@v2
|
|
with:
|
|
arch: armv7
|
|
distro: ubuntu_latest
|
|
|
|
dockerRunArgs: |
|
|
--volume "${PWD}/artifacts:/artifacts"
|
|
run: |
|
|
apt-get update -q
|
|
apt-get install build-essential -y -q
|
|
apt-get install git -y -q
|
|
cd /home/runner/work
|
|
git clone https://github.com/RubyMetric/chsrc -b gh-pipeline -q
|
|
cd chsrc
|
|
make CI CI_BUILD_NAME=chsrc-armv7-linux
|
|
cp ./chsrc-armv7-linux /artifacts
|
|
|
|
- name: Build aarch64
|
|
uses: uraimo/run-on-arch-action@v2
|
|
with:
|
|
arch: aarch64
|
|
distro: ubuntu_latest
|
|
|
|
dockerRunArgs: |
|
|
--volume "${PWD}/artifacts:/artifacts"
|
|
run: |
|
|
apt-get update -q
|
|
apt-get install build-essential -y -q
|
|
apt-get install git -y -q
|
|
cd /home/runner/work
|
|
git clone https://github.com/RubyMetric/chsrc -b gh-pipeline -q
|
|
cd chsrc
|
|
make CI CI_BUILD_NAME=chsrc-aarch64-linux
|
|
cp ./chsrc-aarch64-linux /artifacts
|
|
|
|
- name: Build riscv64
|
|
uses: uraimo/run-on-arch-action@v2
|
|
with:
|
|
arch: riscv64
|
|
distro: ubuntu_latest
|
|
|
|
dockerRunArgs: |
|
|
--volume "${PWD}/artifacts:/artifacts"
|
|
run: |
|
|
apt-get update -q
|
|
apt-get install build-essential -y -q
|
|
apt-get install git -y -q
|
|
cd /home/runner/work
|
|
git clone https://github.com/RubyMetric/chsrc -b gh-pipeline -q
|
|
cd chsrc
|
|
make CI CI_BUILD_NAME=chsrc-riscv64-linux
|
|
cp ./chsrc-riscv64-linux /artifacts
|
|
|
|
- name: Release
|
|
uses: softprops/action-gh-release@v1
|
|
with:
|
|
tag_name: preview
|
|
files: |
|
|
./artifacts/chsrc-armv7-linux
|
|
./artifacts/chsrc-aarch64-linux
|
|
./artifacts/chsrc-riscv64-linux
|
|
token: ${{ secrets.CHSRC_UPLOAD }}
|
|
|