File tree Expand file tree Collapse file tree 6 files changed +12
-13
lines changed
runtime/CSharp/runtime/CSharp/Antlr4.Runtime Expand file tree Collapse file tree 6 files changed +12
-13
lines changed Original file line number Diff line number Diff line change @@ -120,18 +120,21 @@ matrix:
120
120
stage : extended-test
121
121
- os : osx
122
122
osx_image : xcode10.2
123
+ dotnet : 2.0
123
124
env :
124
125
- TARGET=dotnet
125
126
- GROUP=LEXER
126
127
stage : extended-test
127
128
- os : osx
128
129
osx_image : xcode10.2
130
+ dotnet : 2.0
129
131
env :
130
132
- TARGET=dotnet
131
133
- GROUP=PARSER
132
134
stage : extended-test
133
135
- os : osx
134
136
osx_image : xcode10.2
137
+ dotnet : 2.0
135
138
env :
136
139
- TARGET=dotnet
137
140
- GROUP=RECURSION
@@ -162,20 +165,23 @@ matrix:
162
165
stage : main-test
163
166
- os : linux
164
167
jdk : openjdk8
168
+ dotnet : 2.0
165
169
dist : trusty
166
170
env :
167
171
- TARGET=dotnet
168
172
- GROUP=LEXER
169
173
stage : extended-test
170
174
- os : linux
171
175
jdk : openjdk8
176
+ dotnet : 2.0
172
177
dist : trusty
173
178
env :
174
179
- TARGET=dotnet
175
180
- GROUP=PARSER
176
181
stage : extended-test
177
182
- os : linux
178
183
jdk : openjdk8
184
+ dotnet : 2.0
179
185
dist : trusty
180
186
env :
181
187
- TARGET=dotnet
Original file line number Diff line number Diff line change 2
2
3
3
set -euo pipefail
4
4
5
- # install dotnet
6
- sudo sh -c ' echo "deb [arch=amd64] https://apt-mo.trafficmanager.net/repos/dotnet-release/ trusty main" > /etc/apt/sources.list.d/dotnetdev.list'
7
- sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 417A0893
8
- sudo apt-get update
9
- sudo apt-get --allow-unauthenticated install dotnet-dev-1.0.4
10
-
Original file line number Diff line number Diff line change @@ -5,8 +5,7 @@ set -euo pipefail
5
5
# we need to build the runtime before test run, since we used "--no-dependencies"
6
6
# when we call dotnet cli for restore and build, in order to speed up
7
7
8
- dotnet restore ../runtime/CSharp/runtime/CSharp/Antlr4.Runtime/Antlr4.Runtime.dotnet.csproj
9
- dotnet build -c Release -f netstandard1.3 ../runtime/CSharp/runtime/CSharp/Antlr4.Runtime/Antlr4.Runtime.dotnet.csproj
8
+ dotnet build -c Release -f netstandard2.0 ../runtime/CSharp/runtime/CSharp/Antlr4.Runtime/Antlr4.Runtime.csproj
10
9
11
10
# call test
12
11
Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ install:
11
11
- cinst -y dart-sdk --version=2.8.4
12
12
build_script :
13
13
- mvn -DskipTests install --batch-mode
14
- - msbuild /target:restore /target:rebuild /property:Configuration=Release /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" /verbosity:detailed runtime/CSharp/runtime/CSharp/Antlr4.sln
14
+ - dotnet build runtime/CSharp/runtime/CSharp/Antlr4.sln -c Release
15
15
after_build :
16
- - msbuild /target: pack /property:Configuration=Release /verbosity:detailed runtime/CSharp/runtime/CSharp/Antlr4.sln
16
+ - dotnet pack runtime/CSharp/runtime/CSharp/Antlr4.sln -c Release
17
17
test_script :
18
18
- mvn install -Dantlr-php-php="C:\tools\php\php.exe" -Dantlr-dart-dart="C:\tools\dart-sdk\bin\dart.exe" -Dantlr-dart-pub="C:\tools\dart-sdk\bin\pub.bat" -Dantlr-dart-dart2native="C:\tools\dart-sdk\bin\dart2native.bat" -Dantlr-python2-python="C:\Python27\python.exe" -Dantlr-python3-python="C:\Python35\python.exe" --batch-mode
19
19
artifacts :
Original file line number Diff line number Diff line change 15
15
<Authors >Eric Vergnaud, Terence Parr, Sam Harwell</Authors >
16
16
<Description >The .NET Core C# ANTLR 4 runtime from the ANTLR Organization</Description >
17
17
<Summary >The runtime library for parsers generated by the C# target of the standard ANTLR 4 tool.</Summary >
18
- <Copyright >Copyright (c) 2012-2017 The ANTLR Project. All rights reserved.</Copyright >
18
+ <Copyright >Copyright (c) 2012-2020 The ANTLR Project. All rights reserved.</Copyright >
19
19
<PackageRequireLicenseAcceptance >true</PackageRequireLicenseAcceptance >
20
- <PackageLicenseUrl >https://github.com/antlr/antlr4/blob/master/LICENSE.txt</ PackageLicenseUrl >
20
+ <PackageLicenseExpression >BSD-3-Clause</ PackageLicenseExpression >
21
21
<PackageProjectUrl >https://github.com/antlr/antlr4</PackageProjectUrl >
22
- <PackageIconUrl >https://raw.github.com/antlr/website-antlr4/master/images/icons/antlr. png</PackageIconUrl >
22
+ <PackageIcon >Antlr. png</PackageIcon >
23
23
<PackageReleaseNotes >https://github.com/antlr/antlr4/releases</PackageReleaseNotes >
24
24
<PackageTags >antlr parsing grammar</PackageTags >
25
25
<NetStandardImplicitPackageVersion >1.6.1</NetStandardImplicitPackageVersion >
You can’t perform that action at this time.
0 commit comments