diff options
author | sumneko <sumneko@hotmail.com> | 2019-06-10 21:56:45 +0800 |
---|---|---|
committer | sumneko <sumneko@hotmail.com> | 2019-06-10 21:56:45 +0800 |
commit | fd4bcd8fd2d3f0268b0729e1aa6b9c3bbc282cce (patch) | |
tree | 75021c8b772359cc65b4559239b6a3e6cee2fcf2 /azure-pipelines.yml | |
parent | a3b57dfc5120b6b391f3008da2303f732232ea74 (diff) | |
download | lua-language-server-fd4bcd8fd2d3f0268b0729e1aa6b9c3bbc282cce.zip |
改一下自动集成试试
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r-- | azure-pipelines.yml | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index c034f045..4deb6405 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -11,16 +11,13 @@ jobs: git submodule update --init --recursive displayName: '拉取子模块' - script: | - cd 3rd\luamake - tools\ninja -f ninja\msvc.ninja - - cd ..\.. - 3rd\luamake\luamake - displayName: '编译C模块' + cd 3rd/luamake + tools/ninja -f ninja/msvc.ninja + cd ../.. + displayName: 'PreCompile' - script: | - cd server - bin\lua-language-server.exe publish.lua - displayName: '测试' + ./3rd/luamake/luamake rebuild + displayName: 'Compile' - job: macos pool: @@ -28,9 +25,17 @@ jobs: steps: - bash: | + git submodule update --init --recursive + displayName: '拉取子模块' + - bash: | sudo xcode-select -s /Applications/Xcode_10.2.app brew install ninja displayName: '安装ninja' - bash: | - ./osx.sh - displayName: '测试' + cd 3rd/luamake + ninja -f ninja/macos.ninja + cd ../.. + displayName: 'PreCompile' + - bash: | + ./3rd/luamake/luamake rebuild + displayName: 'Compile' |