Skip to content
This repository was archived by the owner on Sep 21, 2024. It is now read-only.

Commit 397c22b

Browse files
committed
Initial state for moving over to github.com
0 parents  commit 397c22b

File tree

460 files changed

+42606
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

460 files changed

+42606
-0
lines changed

._run_ci.sh

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/bash
2+
set -xeu
3+
4+
# A simple script to build and test under Linux CI.
5+
6+
uname -a
7+
pwd -P
8+
cat /etc/issue || echo ok
9+
10+
./build_docker_images.sh run

.dockerignore

+258
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,258 @@
1+
## Ignore Visual Studio temporary files, build results, and
2+
## files generated by popular Visual Studio add-ons.
3+
4+
# User-specific files
5+
*.suo
6+
*.user
7+
*.userosscache
8+
*.sln.docstates
9+
10+
# User-specific files (MonoDevelop/Xamarin Studio)
11+
*.userprefs
12+
13+
# Build results
14+
[Dd]ebug/
15+
[Dd]ebugPublic/
16+
[Rr]elease/
17+
[Rr]eleases/
18+
[Xx]64/
19+
[Xx]86/
20+
[Bb]uild/
21+
bld/
22+
[Oo]bj/
23+
24+
# Visual Studio 2015 cache/options directory
25+
.vs/
26+
# Uncomment if you have tasks that create the project's static files in wwwroot
27+
#wwwroot/
28+
29+
# MSTest test Results
30+
[Tt]est[Rr]esult*/
31+
[Bb]uild[Ll]og.*
32+
33+
# NUNIT
34+
*.VisualState.xml
35+
TestResult.xml
36+
37+
# Build Results of an ATL Project
38+
[Dd]ebugPS/
39+
[Rr]eleasePS/
40+
dlldata.c
41+
42+
# DNX
43+
project.lock.json
44+
artifacts/
45+
46+
*_i.c
47+
*_p.c
48+
*_i.h
49+
*.ilk
50+
*.meta
51+
*.obj
52+
*.pch
53+
*.pgc
54+
*.pgd
55+
*.rsp
56+
*.sbr
57+
*.tlb
58+
*.tli
59+
*.tlh
60+
*.tmp
61+
*.tmp_proj
62+
*.log
63+
*.vspscc
64+
*.vssscc
65+
.builds
66+
*.pidb
67+
*.svclog
68+
*.scc
69+
70+
# Chutzpah Test files
71+
_Chutzpah*
72+
73+
# Visual C++ cache files
74+
ipch/
75+
*.aps
76+
*.ncb
77+
*.opendb
78+
*.opensdf
79+
*.sdf
80+
*.cachefile
81+
*.VC.db
82+
83+
# Visual Studio profiler
84+
*.psess
85+
*.vsp
86+
*.vspx
87+
*.sap
88+
89+
# TFS 2012 Local Workspace
90+
$tf/
91+
92+
# Guidance Automation Toolkit
93+
*.gpState
94+
95+
# ReSharper is a .NET coding add-in
96+
_ReSharper*/
97+
*.[Rr]e[Ss]harper
98+
*.DotSettings.user
99+
100+
# JustCode is a .NET coding add-in
101+
.JustCode
102+
103+
# TeamCity is a build add-in
104+
_TeamCity*
105+
106+
# DotCover is a Code Coverage Tool
107+
*.dotCover
108+
109+
# NCrunch
110+
_NCrunch_*
111+
.*crunch*.local.xml
112+
nCrunchTemp_*
113+
114+
# MightyMoose
115+
*.mm.*
116+
AutoTest.Net/
117+
118+
# Web workbench (sass)
119+
.sass-cache/
120+
121+
# Installshield output folder
122+
[Ee]xpress/
123+
124+
# DocProject is a documentation generator add-in
125+
DocProject/buildhelp/
126+
DocProject/Help/*.HxT
127+
DocProject/Help/*.HxC
128+
DocProject/Help/*.hhc
129+
DocProject/Help/*.hhk
130+
DocProject/Help/*.hhp
131+
DocProject/Help/Html2
132+
DocProject/Help/html
133+
134+
# Click-Once directory
135+
136+
# Publish Web Output
137+
*.[Pp]ublish.xml
138+
*.azurePubxml
139+
140+
# TODO: Un-comment the next line if you do not want to checkin
141+
# your web deploy settings because they may include unencrypted
142+
# passwords
143+
#*.pubxml
144+
*.publishproj
145+
146+
# NuGet Packages
147+
*.nupkg
148+
# The packages folder can be ignored because of Package Restore
149+
**/packages/*
150+
# except build/, which is used as an MSBuild target.
151+
!**/packages/build/
152+
# Uncomment if necessary however generally it will be regenerated when needed
153+
#!**/packages/repositories.config
154+
# NuGet v3's project.json files produces more ignoreable files
155+
*.nuget.props
156+
*.nuget.targets
157+
158+
# Microsoft Azure Build Output
159+
csx/
160+
*.build.csdef
161+
162+
# Microsoft Azure Emulator
163+
ecf/
164+
rcf/
165+
166+
# Microsoft Azure ApplicationInsights config file
167+
ApplicationInsights.config
168+
169+
# Windows Store app package directory
170+
AppPackages/
171+
BundleArtifacts/
172+
173+
# Visual Studio cache files
174+
# files ending in .cache can be ignored
175+
*.[Cc]ache
176+
# but keep track of directories ending in .cache
177+
!*.[Cc]ache/
178+
179+
# Others
180+
ClientBin/
181+
[Ss]tyle[Cc]op.*
182+
~$*
183+
*~
184+
*.dbmdl
185+
*.dbproj.schemaview
186+
*.pfx
187+
*.publishsettings
188+
node_modules/
189+
orleans.codegen.cs
190+
191+
# RIA/Silverlight projects
192+
Generated_Code/
193+
194+
# Backup & report files from converting an old project file
195+
# to a newer Visual Studio version. Backup files are not needed,
196+
# because we have git ;-)
197+
_UpgradeReport_Files/
198+
Backup*/
199+
UpgradeLog*.XML
200+
UpgradeLog*.htm
201+
202+
# SQL Server files
203+
*.mdf
204+
*.ldf
205+
206+
# Business Intelligence projects
207+
*.rdl.data
208+
*.bim.layout
209+
*.bim_*.settings
210+
211+
# Microsoft Fakes
212+
FakesAssemblies/
213+
214+
# GhostDoc plugin setting file
215+
*.GhostDoc.xml
216+
217+
# Node.js Tools for Visual Studio
218+
.ntvs_analysis.dat
219+
220+
# Visual Studio 6 build log
221+
*.plg
222+
223+
# Visual Studio 6 workspace options file
224+
*.opt
225+
226+
# Visual Studio LightSwitch build output
227+
**/*.HTMLClient/GeneratedArtifacts
228+
**/*.DesktopClient/GeneratedArtifacts
229+
**/*.DesktopClient/ModelManifest.xml
230+
**/*.Server/GeneratedArtifacts
231+
**/*.Server/ModelManifest.xml
232+
_Pvt_Extensions
233+
234+
# LightSwitch generated files
235+
GeneratedArtifacts/
236+
ModelManifest.xml
237+
238+
# Paket dependency manager
239+
.paket/paket.exe
240+
241+
# FAKE - F# Make
242+
.fake/
243+
244+
# Ignore InternalImmortals, because they typically build their own Docker containers:
245+
InternalImmortals/
246+
247+
#Test run logs
248+
/AmbrosiaTest/AmbrosiaTest/AmbrosiaLogs
249+
250+
/bin/
251+
252+
# Emacs temp files
253+
.\#*
254+
\#*\#
255+
/FranklinTest_Local/FranklinTest_Local/cmp
256+
.git
257+
Dockerfile
258+
build_docker_images.sh

.gitattributes

+67
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
###############################################################################
2+
# Set default behavior to automatically normalize line endings.
3+
###############################################################################
4+
* text=auto
5+
6+
###############################################################################
7+
# Set default behavior for command prompt diff.
8+
#
9+
# This is need for earlier builds of msysgit that does not have it on by
10+
# default for csharp files.
11+
# Note: This is only used by command line
12+
###############################################################################
13+
#*.cs diff=csharp
14+
*.c text
15+
*.h text
16+
*.sh text eol=lf
17+
Dockerfile* text eol=lf
18+
19+
###############################################################################
20+
# Set the merge driver for project and solution files
21+
#
22+
# Merging from the command prompt will add diff markers to the files if there
23+
# are conflicts (Merging from VS is not affected by the settings below, in VS
24+
# the diff markers are never inserted). Diff markers may cause the following
25+
# file extensions to fail to load in VS. An alternative would be to treat
26+
# these files as binary and thus will always conflict and require user
27+
# intervention with every merge. To do so, just uncomment the entries below
28+
###############################################################################
29+
#*.sln merge=binary
30+
#*.csproj merge=binary
31+
#*.vbproj merge=binary
32+
#*.vcxproj merge=binary
33+
#*.vcproj merge=binary
34+
#*.dbproj merge=binary
35+
#*.fsproj merge=binary
36+
#*.lsproj merge=binary
37+
#*.wixproj merge=binary
38+
#*.modelproj merge=binary
39+
#*.sqlproj merge=binary
40+
#*.wwaproj merge=binary
41+
42+
###############################################################################
43+
# behavior for image files
44+
#
45+
# image files are treated as binary by default.
46+
###############################################################################
47+
#*.jpg binary
48+
#*.png binary
49+
#*.gif binary
50+
51+
###############################################################################
52+
# diff behavior for common document formats
53+
#
54+
# Convert binary document formats to text before diffing them. This feature
55+
# is only available from the command line. Turn it on by uncommenting the
56+
# entries below.
57+
###############################################################################
58+
#*.doc diff=astextplain
59+
#*.DOC diff=astextplain
60+
#*.docx diff=astextplain
61+
#*.DOCX diff=astextplain
62+
#*.dot diff=astextplain
63+
#*.DOT diff=astextplain
64+
#*.pdf diff=astextplain
65+
#*.PDF diff=astextplain
66+
#*.rtf diff=astextplain
67+
#*.RTF diff=astextplain

0 commit comments

Comments
 (0)