mirror of
https://gitee.com/fasiondog/hikyuu.git
synced 2024-11-30 02:48:57 +08:00
25 lines
482 B
YAML
25 lines
482 B
YAML
name: ubuntu-python-build
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest]
|
|
|
|
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 core
|