Skip to content

Commit 928598c

Browse files
committed
Simplify build files
1 parent 53eb2d6 commit 928598c

File tree

5 files changed

+21
-18
lines changed

5 files changed

+21
-18
lines changed

.appveyor.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
version: '{build}'
22
pull_requests:
33
do_not_increment_build_number: true
4-
image: Visual Studio 2017
4+
image: Visual Studio 2019
55
nuget:
66
disable_publish_on_pr: true
77
build_script:
8-
- ps: .\build.ps1
8+
- cmd: dotnet build
9+
- cmd: dotnet test .\test\Webenable.Logging.JavaScript.Tests
10+
- cmd: dotnet pack .\src\Webenable.Logging.JavaScript -c Release -o .\artifacts
911
test: off
12+
branches:
13+
only:
14+
- master
1015
init:
1116
- git config --global core.autocrlf input
1217
environment:

.travis.yml

+14-9
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
language: csharp
22
mono: none
3-
dotnet: 2.1.502
4-
dist: trusty
5-
os:
6-
- linux
7-
- osx
8-
osx_image: xcode8.3
9-
before_script:
10-
- chmod +x ./build.sh
3+
dotnet: 2.1.701
4+
dist: xenial
5+
branches:
6+
only:
7+
- master
118
script:
12-
- ./build.sh
9+
- dotnet build
10+
- dotnet test test/Webenable.Logging.JavaScript.Tests
11+
matrix:
12+
include:
13+
- os: linux
14+
dist: xenial
15+
- os: osx
16+
dotnet: 2.1.701
17+
osx_image: xcode10.1

build.cmd

-2
This file was deleted.

build.ps1

-4
This file was deleted.

build.sh

-1
This file was deleted.

0 commit comments

Comments
 (0)