diff options
-rw-r--r-- | azure-pipelines.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 41f72cd5..b719841f 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -7,16 +7,16 @@ jobs: name: Hosted VS2017 steps: - - script: | + - bash: | git submodule update --init --recursive displayName: '拉取子模块' - - script: | + - bash: | cd 3rd/luamake tools/ninja -f ninja/msvc.ninja cd ../.. displayName: 'PreCompile' - - script: | - 3rd/luamake/luamake.exe rebuild + - bash: | + ./3rd/luamake/luamake rebuild displayName: 'Compile' - job: macos |