mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
37 lines
1.0 KiB
YAML
37 lines
1.0 KiB
YAML
name: CMake
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
env:
|
|
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
|
|
BUILD_TYPE: Release
|
|
|
|
jobs:
|
|
build:
|
|
# The CMake configure and build commands are platform agnostic and should work equally
|
|
# well on Windows or Mac. You can convert this to a matrix build if you need
|
|
# cross-platform coverage.
|
|
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: PULL_CORE
|
|
run: cd ${{github.workspace}}/port/linux && bash pull-core.sh
|
|
|
|
- name: INIT
|
|
|
|
run: cd ${{github.workspace}}/port/linux && bash init.sh
|
|
|
|
- name: TEST
|
|
# Build your program with the given configuration
|
|
run: cd ${{github.workspace}}/port/linux && bash test.sh
|
|
|
|
- name: PACKAGE_MANAGER
|
|
run: cd ${{github.workspace}}/tools/pikaPackageManager && go build
|