chsrc/.github/workflows/linux-riscv64.yml

37 lines
995 B
YAML
Raw Normal View History

2023-09-21 21:28:33 +08:00
name: Linux riscv64 Build
on:
push:
branches: [ "gh-pipeline" ]
pull_request:
branches: [ "gh-pipeline" ]
jobs:
riscv64-linux-build-and-upload:
runs-on: ubuntu-latest
steps:
- 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 -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-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-riscv64-linux
token: ${{ secrets.CHSRC_UPLOAD }}