/
aprogrammer
/
serilog
Обзор
Документация
Войти
/
aprogrammer
/
serilog
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
appveyor.yml
38 строк
1 KB
Nicholas Blumhardt
Drop macOS CI target; too slow to run successfully (#2093)
25 июл 2024, 03:43
Не верифицирован
25 июл 2024, 03:43
f91b1bc
Код
Авторство
О чём код?
version: '{build}' skip_tags: true image: - Visual Studio 2022 - Ubuntu configuration: Release test: off build_script: - pwsh: | if ($isWindows) { Invoke-WebRequest "https://dot.net/v1/dotnet-install.ps1" -OutFile "./dotnet-install.ps1" ./dotnet-install.ps1 -JSonFile global.json -Architecture x64 -InstallDir 'C:\Program Files\dotnet' ./Build.ps1 } if ($isLinux) { Invoke-WebRequest "https://dot.net/v1/dotnet-install.sh" -OutFile "./dotnet-install.sh" sudo chmod u+x dotnet-install.sh sudo ./dotnet-install.sh --jsonfile global.json --architecture x64 --install-dir '/usr/share/dotnet' ./build.sh } artifacts: - path: artifacts/Serilog.*.nupkg - path: artifacts/Serilog.*.snupkg deploy: - provider: NuGet api_key: secure: JbUCIGD4FHOxmhM49oqvJdLb0TtGQAmBD5vOG9fSROaa85d7sddTLA8suvm407Dk on: branch: /^(main|dev)$/ - provider: GitHub auth_token: secure: p4LpVhBKxGS5WqucHxFQ5c7C8cP74kbNB0Z8k9Oxx/PMaDQ1+ibmoexNqVU5ZlmX artifacts: /Serilog.*\.nupkg/ /Serilog.*\.snupkg/ tag: v$(appveyor_build_version) on: branch: main