File tree Expand file tree Collapse file tree 2 files changed +25
-3
lines changed Expand file tree Collapse file tree 2 files changed +25
-3
lines changed Original file line number Diff line number Diff line change 5
5
branches :
6
6
- ' *'
7
7
paths-ignore :
8
- - ' **.md'
8
+ - ' **.md'
9
9
pull_request :
10
10
branches :
11
11
- ' *'
12
12
13
13
jobs :
14
- linux :
14
+ ubuntu2004 :
15
15
16
16
runs-on : ubuntu-20.04
17
17
24
24
run : |
25
25
./configure --profile=gnome
26
26
make
27
+
28
+ debian10 :
29
+ runs-on : ubuntu-20.04
30
+ container :
31
+ image : " debian:buster"
32
+ steps :
33
+ - name : Dependencies
34
+ run : |
35
+ apt update
36
+ apt upgrade -y
37
+ apt install git apt-transport-https dirmngr gnupg ca-certificates wget autoconf intltool build-essential sed -y
38
+ wget https://packages.microsoft.com/config/debian/10/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
39
+ dpkg -i packages-microsoft-prod.deb
40
+ apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
41
+ echo "deb https://download.mono-project.com/repo/debian stable-buster main" > /etc/apt/sources.list.d/mono-official-stable.list
42
+ apt update
43
+ apt install mono-devel fsharp gtk-sharp2 dotnet-sdk-5.0 -y
44
+ - uses : actions/checkout@v2
45
+ - name : Configure and build
46
+ run : |
47
+ ./configure --profile=gnome
48
+ make
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ MSBUILD_LIBRARIES=Microsoft.Build.dll Microsoft.Build.Framework.dll Microsoft.Bu
23
23
MSBUILD_DLLS =$(patsubst % , $(MSBUILD_PATH ) /% , $(MSBUILD_LIBRARIES ) )
24
24
25
25
# Set $PATH to point to provisioned .NET Core and avoid the ones provisioned by VSTS itself
26
- all : export PATH:=" /usr/local/share/dotnet:$(PATH ) "
26
+ all : export PATH:=/usr/local/share/dotnet:$(PATH )
27
27
all : print_config update_submodules all-recursive
28
28
29
29
GIT_FOUND = $$(echo $$(which git ) )
You can’t perform that action at this time.
0 commit comments