Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
c9505df
attempted to add performance tests to CI
lostmsu Oct 22, 2019
949b55f
attempt to fix PerformanceTests xplat CI build
lostmsu Nov 21, 2019
1c92d0c
enabling building PerformanceTests for Mono
lostmsu Nov 21, 2019
4deda8b
use Ubuntu 18.04 Bionic Beaver image in Travis CI
lostmsu Nov 21, 2019
a7b9417
fixed AppVeyor path to Python.PerformanceTests.dll
lostmsu Nov 21, 2019
400ea33
fixed Mono deb sources to bionic
lostmsu Nov 21, 2019
01ea645
slightly relaxed perf target for WriteInt64Property
lostmsu Nov 21, 2019
419bddf
PerformanceTests: explicitly specify platform
lostmsu Nov 21, 2019
f36318f
use framework-specific build of perf tests in xplat and generic other…
lostmsu Nov 21, 2019
265b363
added reference to net461 reference assemblies nuget to perf tests
lostmsu Nov 21, 2019
e17f64e
added perf tests run to Travis CI
lostmsu Nov 21, 2019
433c016
fixed perf tests being build for Any CPU instead of x86
lostmsu Nov 21, 2019
74ba9d3
only run perf tests in Travis on Python 3.5
lostmsu Nov 21, 2019
54f9698
added performance tests to the old solution
lostmsu Nov 21, 2019
e2f192f
better error message for a failure to run benchmarks
lostmsu Nov 21, 2019
f69baf5
Revert "added performance tests to the old solution"
lostmsu Nov 21, 2019
618b841
appveyor: don't run perf tests in unsupported configurations
lostmsu Nov 21, 2019
123a701
commented out perf tests from Travis, as they are Windows-only due to…
lostmsu Nov 21, 2019
1993598
missing brace in appveyor_run_tests.ps1
lostmsu Nov 21, 2019
c46701d
fixed performance test Python version condition in AppVeyor
lostmsu Nov 21, 2019
340a6d1
explicitly notify when performance tests are skipped in AppVeyor
lostmsu Nov 21, 2019
a6c55d4
relax performance targets to ~10%, improve perf failure message
lostmsu Dec 19, 2019
171643c
Merge branch 'master' into features/PerfTests-CI
lostmsu Feb 12, 2020
031e8bb
travis: revert to xenial, as in bionic some tests crash
lostmsu Feb 12, 2020
0af4937
switch to the release of Microsoft.NETFramework.ReferenceAssemblies p…
lostmsu Feb 13, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
travis: revert to xenial, as in bionic some tests crash
  • Loading branch information
lostmsu committed Feb 12, 2020
commit 031e8bbedc45411690c7af5e651c570650b5e03c
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dist: bionic
dist: xenial
sudo: false
language: python
python:
Expand All @@ -21,9 +21,9 @@ env:
addons:
apt:
sources:
- sourceline: deb [arch=amd64] https://packages.microsoft.com/repos/microsoft-ubuntu-bionic-prod bionic main
- sourceline: deb [arch=amd64] https://packages.microsoft.com/repos/microsoft-ubuntu-xenial-prod xenial main
key_url: https://packages.microsoft.com/keys/microsoft.asc
- sourceline: deb http://download.mono-project.com/repo/ubuntu stable-bionic/snapshots/5.20 main
- sourceline: deb http://download.mono-project.com/repo/ubuntu stable-xenial/snapshots/5.20 main
key_url: http://keyserver.ubuntu.com/pks/lookup?op=get&search=0xA6A19B38D3D831EF
packages:
- mono-devel
Expand Down