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-03-07 02:11:18 +0300
committerKenneth Hsu <kennethhsu@gmail.com>2021-03-07 02:11:18 +0300
commit54cd890879321f7e73723608325a6fd43f61573a (patch)
treed4cacd0b8302fc582221489bf1e6ba3836aa8d38 /.github
parentb765841dca6e371354d4c758d0d325a06ed085a3 (diff)
Remove artifacts from GitHub test workflow.
The proper way to create a usable package is to call UpdateManager.CreateUpdatePackage and define all the required parameters. Given that there isn't high demand for such an artifact, we will simply avoid it for now.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/tests.yml18
1 files changed, 0 insertions, 18 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index 2fa6ecc24..572f4a258 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -40,24 +40,6 @@ jobs:
if: matrix.os == 'windows-latest'
run: msbuild -p:Configuration=Release Duplicati.sln
- - name: Prepare Artifacts
- shell: bash
- run: |
- cp -r Duplicati/Server/webroot "${{ env.build_directory }}"/webroot
-
- # Copy some files for alphavss manually that are not picked up by the build.
- mkdir "${{ env.build_directory }}"/alphavss
- cp Duplicati/Library/Snapshots/bin/Release/AlphaVSS.*.dll "${{ env.build_directory }}"/alphavss
-
- # Copy some support libraries (e.g., for Azure) that are not picked up by the build.
- for BACKEND in Duplicati/Library/Backend/*; do if [ -d "${BACKEND}/bin/Release/" ]; then cp "${BACKEND}/bin/Release/"*.dll "${{ env.build_directory }}"; fi; done
-
- - name: Upload Build Artifacts
- uses: actions/upload-artifact@v2
- with:
- name: build artifacts (${{ matrix.os }})
- path: "${{ env.build_directory }}"
-
- name: Run Unit Tests (Linux and macOS)
if: matrix.os != 'windows-latest'
run: |