diff options
author | sumneko <sumneko@hotmail.com> | 2019-05-20 16:06:39 +0800 |
---|---|---|
committer | sumneko <sumneko@hotmail.com> | 2019-05-20 16:06:39 +0800 |
commit | 17b4a4562d8ddfdb87b65f5eaca7cde3d04915ef (patch) | |
tree | 96aceb4fba6b80050ada5afa1b7df61c084a6498 /azure-pipelines.yml | |
parent | 3e2248b17aa45e8c9e2fb39dd3884ebce1d50fa2 (diff) | |
download | lua-language-server-17b4a4562d8ddfdb87b65f5eaca7cde3d04915ef.zip |
试一下
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r-- | azure-pipelines.yml | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index aa912913..f6d2d09c 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -7,13 +7,17 @@ trigger: - master pool: - vmImage: 'ubuntu-latest' + name: Hosted VS2017 steps: -- script: echo Hello, world! - displayName: 'Run a one-line script' - - script: | - echo Add other tasks to build, test, and deploy your project. - echo See https://aka.ms/yaml - displayName: 'Run a multi-line script' + cd 3rd\luamake + tools\ninja -f ninja\msvc.ninja + + cd ..\.. + 3rd\luamake\luamake + displayName: '编译C模块' +- script: | + cd server + bin\lua-language-server.exe publish.lua + displayName: '测试' |