21 lines
455 B
YAML
21 lines
455 B
YAML
name: Make Windows C++
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
# Building using the github runner environement directly.
|
|
make:
|
|
runs-on: windows-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Check make
|
|
run: make --version
|
|
- name: Build third party
|
|
run: make third_party -j4
|
|
- name: Build C++
|
|
run: make cc -j4
|
|
- name: Test
|
|
run: make test_cc
|
|
- name: Install
|
|
run: make install_cc DESTDIR=install
|