gpt4 book ai didi

asp.net-core - 让 Cake 的 build.cake 和 asp.net core 在 travis-ci 上工作

转载 作者:行者123 更新时间:2023-12-01 22:57:37 27 4
gpt4 key购买 nike

我必须在 .travis.yml 中添加什么内容才能运行 cake.build 并编译 .net core 项目?

最佳答案

首先添加build.sh到你的github存储库,然后赋予它执行权限,在 Windows 中运行以下命令 git update-index --add --chmod=+x build.sh当您与 build.sh 位于同一目录时.

要让 cake.build 运行,请添加以下内容:

language: csharp
script:
- ./build.sh

cache:
directories:
- src/packages
- tools

安装dotnet cli添加以下内容:

language: csharp
os:
- linux

sudo: required
dist: trusty
env:
- CLI_VERSION=latest

addons:
apt:
packages:
- gettext
- libcurl4-openssl-dev
- libicu-dev
- libssl-dev
- libunwind8
- zlib1g

install:
- export DOTNET_INSTALL_DIR="$PWD/.dotnetcli"
- curl -sSL https://raw.githubusercontent.com/dotnet/cli/rel/1.0.0/scripts/obtain/dotnet-install.sh | bash /dev/stdin --version "$CLI_VERSION" --install-dir "$DOTNET_INSTALL_DIR"
- export PATH="$DOTNET_INSTALL_DIR:$PATH"

script:
- ./build.sh

cache:
directories:
- src/packages
- tools

关于asp.net-core - 让 Cake 的 build.cake 和 asp.net core 在 travis-ci 上工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38652094/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com