Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Hsu <kennethhsu@gmail.com>2021-02-09 01:37:08 +0300
committerKenneth Hsu <kennethhsu@gmail.com>2021-02-09 02:47:52 +0300
commit94392bf2b70fa710ec8b89dc66e99270e4a23f5c (patch)
treeae44371bb0be642514af60c5cba8fd47e2b5c9d0 /.github
parentd6e9e082720eb7ef5d8d592b9501b7c8a09900eb (diff)
Remove step to install mono, which is already included.
According to the documentation, mono is already included in the ubuntu-latest virtual environment: https://github.com/actions/virtual-environments/blob/ubuntu18/20210131.1/images/linux/Ubuntu1804-README.md
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/tests.yml7
1 files changed, 0 insertions, 7 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index 53a98e4ba..4e39bab6a 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -16,10 +16,6 @@ jobs:
os: [ ubuntu-latest, windows-latest, macos-latest ]
steps:
- - name: Install Mono (Linux)
- if: matrix.os == 'ubuntu-latest'
- run: sudo apt-get install mono-complete
-
- name: Add msbuild to PATH (Windows)
if: matrix.os == 'windows-latest'
uses: microsoft/setup-msbuild@v1.0.2
@@ -55,9 +51,6 @@ jobs:
# can be cleaned up using a composite run steps action once it supports
# what we need (https://github.com/actions/runner/issues/646).
steps:
- - name: Install Mono
- run: sudo apt-get install mono-complete
-
- name: Checkout Source
uses: actions/checkout@v2.3.4