summaryrefslogtreecommitdiff
path: root/.github/workflows/build.yml
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2019-08-28 13:29:53 +0800
committer最萌小汐 <sumneko@hotmail.com>2019-08-28 13:29:53 +0800
commitf0f10161d686946b7924e4ed6335fd32a22448f0 (patch)
treedc053924cfe4ad2bbe7de46646a43bfd888d31d9 /.github/workflows/build.yml
parent48f2711db1950440d33ada567f2d0557c344855b (diff)
downloadlua-language-server-f0f10161d686946b7924e4ed6335fd32a22448f0.zip
还是不用github集成了
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r--.github/workflows/build.yml69
1 files changed, 0 insertions, 69 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
deleted file mode 100644
index 4bd0fdae..00000000
--- a/.github/workflows/build.yml
+++ /dev/null
@@ -1,69 +0,0 @@
-on:
- push:
- branches:
- - master
-
-jobs:
- windows:
- name: build in windows
- runs-on: windows-latest
- steps:
- - name: Init
- run: |
- git submodule update --init --recursive
- - name: Compile luamake
- run: |
- cd 3rd\luamake
- tools\ninja.exe -f ninja\msvc.ninja
- cd ..\..
- - name: Compile
- run: |
- 3rd\luamake\luamake.exe rebuild
- - name: Publish
- run: |
- server\bin\lua-language-server.exe server\publish.lua
-
- macos:
- name: build in macos
- runs-on: macos-latest
- steps:
- - name: Init
- run: |
- git submodule update --init --recursive
- - name: Install
- run: |
- sudo xcode-select -s /Applications/Xcode_10.2.app
- brew install ninja
- - name: Compile luamake
- run: |
- cd 3rd/luamake
- ninja -f ninja/macos.ninja
- cd ../..
- - name: Compile
- run: |
- ./3rd/luamake/luamake rebuild
- - name: Publish
- run: |
- server/bin/lua-language-server server/publish.lua
-
- linux:
- name: build in linux
- runs-on: ubuntu-latest
- steps:
- - name: Init
- run: |
- git submodule update --init --recursive
- - name: Install
- run: |
- sudo apt-get install -y libreadline-dev ninja-build
- - name: Compile luamake
- run: |
- cd 3rd/luamake
- ninja -f ninja/linux.ninja
- cd ../..
- - name: Compile
- run: |
- ./3rd/luamake/luamake rebuild
- - name: Publish
- run: |
- server/bin/lua-language-server server/publish.lua