aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2021-12-13 21:20:27 +0800
committercrupest <crupest@outlook.com>2021-12-13 21:20:27 +0800
commit770d0dbdcdc1e54f66c2ed2c8855a2f9cf2af61a (patch)
treeacde102bfba4cfe69883ad769f1b6de1aefcb055 /.github/workflows/ci.yml
parent97c691162c39c9d592e418f07a1015f4032c2d86 (diff)
downloadcru-770d0dbdcdc1e54f66c2ed2c8855a2f9cf2af61a.tar.gz
cru-770d0dbdcdc1e54f66c2ed2c8855a2f9cf2af61a.tar.bz2
cru-770d0dbdcdc1e54f66c2ed2c8855a2f9cf2af61a.zip
...
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml43
1 files changed, 0 insertions, 43 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
deleted file mode 100644
index 599e59fc..00000000
--- a/.github/workflows/ci.yml
+++ /dev/null
@@ -1,43 +0,0 @@
-name: CI
-
-on:
- push:
- branches: [master]
- paths-ignore:
- - "docs/**"
- - "drafts/**"
- - "**/README.md"
- pull_request:
- branches: [master]
- paths-ignore:
- - "docs/**"
- - "drafts/**"
- - "**/README.md"
-
-jobs:
- build:
- name: Build
- runs-on: windows-latest
-
- steps:
- - uses: actions/checkout@v2
-
- - name: Restore Cache
- uses: actions/cache@v2
- with:
- path: ~/AppData/Local/vcpkg/archives
- key: vcpkg-${{ runner.os }}
-
- - name: Setup Ninja
- uses: ashutoshvarma/setup-ninja@master
- with:
- version: 1.10.2
-
- - name: Run build script
- shell: pwsh
- run: |
- . ./tools/Use-VC.ps1
- Use-VC
- mkdir build && cd build
- cmake .. -G Ninja -DCMAKE_BUILD_TYPE:STRING=Debug
- ninja all