8000 Add github workflow for debian buster by Molytho · Pull Request #54 · dotdevelop/dotdevelop · GitHub
[go: up one dir, main page]

Skip to content

Add github workflow for debian buster #54

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
26 changes: 24 additions & 2 deletions .github/workflows/monodevelop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ on:
branches:
- '*'
paths-ignore:
- '**.md'
- '**.md'
pull_request:
branches:
- '*'

jobs:
linux:
ubuntu2004:

runs-on: ubuntu-20.04

Expand All @@ -24,3 +24,25 @@ jobs:
run: |
./configure --profile=gnome
make

debian10:
runs-on: ubuntu-20.04
container:
image: "debian:buster"
steps:
- name: Dependencies
run: |
apt update
apt upgrade -y
apt install git apt-transport-https dirmngr gnupg ca-certificates wget autoconf intltool build-essential sed -y
wget https://packages.microsoft.com/config/debian/10/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
dpkg -i packages-microsoft-prod.deb
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
echo "deb https://download.mono-project.com/repo/debian stable-buster main" > /etc/apt/sources.list.d/mono-official-stable.list
apt update
apt install mono-devel fsharp gtk-sharp2 dotnet-sdk-5.0 -y
- uses: actions/checkout@v2
- name: Configure and build
run: |
./configure --profile=gnome
make
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ MSBUILD_LIBRARIES=Microsoft.Build.dll Microsoft.Build.Framework.dll Microsoft.Bu
MSBUILD_DLLS=$(patsubst %, $(MSBUILD_PATH)/%, $(MSBUILD_LIBRARIES))

# Set $PATH to point to provisioned .NET Core and avoid the ones provisioned by VSTS itself
all: export PATH:="/usr/local/share/dotnet:$(PATH)"
all: export PATH:=/usr/local/share/dotnet:$(PATH)
all: print_config update_submodules all-recursive

GIT_FOUND = $$(echo $$(which git))
Expand Down
0