-
Notifications
You must be signed in to change notification settings - Fork 4
Update Build Scripts #23
Update Build Scripts #23
Conversation
build/build.csproj
Outdated
|
|
||
| <ItemGroup> | ||
| <PackageReference Include="Bullseye" Version="1.2.0-rc.2" /> | ||
| <PackageReference Include="Bullseye" Version="1.2.0" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be 2.1.0.
build/build.csproj
Outdated
| <ItemGroup> | ||
| <PackageReference Include="Bullseye" Version="1.2.0-rc.2" /> | ||
| <PackageReference Include="Bullseye" Version="1.2.0" /> | ||
| <PackageReference Include="SimpleExec" Version="2.3.0" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FWIW, this can be bumped to 3.0.0.
build.sh
Outdated
| docker build \ | ||
| --build-arg TRAVIS_OS_NAME=$TRAVIS_OS_NAME \ | ||
| --build-arg TRAVIS_BUILD_NUMBER=$TRAVIS_BUILD_NUMBER \ | ||
| --build-arg MYGET_API_KEY=$MYGET_API_KEY . |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One problem here is that arguments supplied to build.sh are not being passed through. That needs to happen if you want to pass any args to Bullseye, otherwise you're missing out on all this. build.cmd has the same problem.
Dockerfile
Outdated
| WORKDIR / | ||
|
|
||
| RUN TRAVIS_BUILD_NUMBER=$TRAVIS_BUILD_NUMBER MYGET_API_KEY=$MYGET_API_KEY dotnet run --project build/build.csproj | ||
| RUN TRAVIS_OS_NAME=$TRAVIS_OS_NAME TRAVIS_BUILD_NUMBER=$TRAVIS_BUILD_NUMBER MYGET_API_KEY=$MYGET_API_KEY dotnet run --project build/build.csproj |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Likewise, any remaining args need to be passed through to Bullseye here, otherwise you cannot pass any args to Bullseye from build.sh.
f8aa1e7 to
691b8da
Compare
- Bullseye 2.2.0 - SimpleExec 3.0.0 - Replaced versioning nightmare wih minver
05c7ca7 to
1daafe1
Compare
No description provided.