зеркало из https://github.com/microsoft/AMBROSIA.git
38 строки
839 B
YAML
38 строки
839 B
YAML
|
|
language: csharp
|
|
mono: none
|
|
dotnet: 2.1
|
|
dist: xenial
|
|
|
|
services:
|
|
- docker
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- libunwind-dev
|
|
- make
|
|
- gcc
|
|
|
|
env:
|
|
global:
|
|
# Mount the logs from outside the container when/if running PerformanceTestInterruptible:
|
|
- PTI_MOUNT_LOGS=ExternalLogs
|
|
|
|
matrix:
|
|
# Bring up a basic test within or between containers:
|
|
- DOCK=nodocker
|
|
- DOCK=docker PTI_MODE=OneContainer
|
|
# - DOCK=docker PTI_MODE=TwoContainers
|
|
|
|
before_install:
|
|
- sudo apt-get install -y libunwind-dev make gcc
|
|
|
|
script:
|
|
# Need to remove the dependence on Azure Tables /
|
|
# AZURE_STORAGE_CONN_STRING if we want to do full CI in a public
|
|
# context (or find some way to use an account without leaking its auth
|
|
# info).
|
|
# In the meantime, this will just make sure that everything builds.
|
|
- ./Scripts/run_linux_ci.sh $DOCK
|