加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.appveyor-wsl.yml 720 Bytes
一键复制 编辑 原始数据 按行查看 历史
version: 4.0.{build}
branches:
except:
- gh-pages
- mac-ci
- ubuntu-ci
- win-ci
skip_tags: true
image: Visual Studio 2019
build_script:
# Install dotnet on WSL and then build and run tests.
- cmd: |
wsl pwd
wsl whoami
wsl wget https://packages.microsoft.com/config/ubuntu/19.10/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
wsl sudo dpkg -i packages-microsoft-prod.deb
wsl sudo apt-get update -y
wsl sudo apt-get install -y apt-transport-https
wsl sudo apt-get update -y
wsl sudo apt-get install -y dotnet-sdk-3.1
wsl dotnet test test/unit/SIPSorcery.UnitTests.csproj -c Release --framework netcoreapp3.1
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化