hikyuu2/.github/workflows/ubuntu_aarch64.yml

31 lines
713 B
YAML
Raw Normal View History

2023-08-17 02:42:38 +08:00
name: ubuntu-aarch64-build
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
cross: [aarch64-linux-musl]
concurrency:
group: ${{ github.ref }}-${{ github.base_ref }}-${{ github.head_ref }}-Cross-Musl-${{ matrix.cross }}
cancel-in-progress: true
steps:
- uses: xmake-io/github-action-setup-xmake@v1
- name: checkout
run: |
git clone https://github.com/fasiondog/hikyuu.git --recursive --depth 1
- name: build
run: |
sudo apt-get install -y libsqlite3-dev
cd ./hikyuu
xmake f -y
xmake -b small-test
xmake r small-test