Skip to content
Open
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
22 changes: 11 additions & 11 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -229,14 +229,14 @@ jobs:
fi
# - name: Upload the code coverage files as artifacts
# if: always()
# uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
# uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
# with:
# name: Code coverage files (${{matrix.database}}, stable${{matrix.coreVersion}}, ${{matrix.httpServer}}, ${{matrix.phpVersion}})
# path: ".github/actions/run-tests/volumes/coverage"

- name: Upload the log file as artifact
if: steps.ncVersionRequirements.outputs.matchingVersion == 'true' && always()
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
with:
name: Nextcloud-logs (${{matrix.database}}, stable${{matrix.coreVersion}}, ${{matrix.httpServer}}, ${{matrix.phpVersion}})
path: .github/actions/run-tests/volumes/data/nextcloud.log
Expand All @@ -250,19 +250,19 @@ jobs:

- name: Upload the code coverage report for codecov as artifacts
if: steps.ncVersionRequirements.outputs.matchingVersion == 'true'
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
with:
name: Code coverage (XML) (${{matrix.database}}, stable${{matrix.coreVersion}}, ${{matrix.httpServer}}, ${{matrix.phpVersion}})
path: "/tmp/coverage/coverage.*.xml"

# - name: Upload the code coverage report (unit tests) as artifacts
# uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
# uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
# with:
# name: Code coverage (HTML) (${{matrix.database}}, stable${{matrix.coreVersion}}, ${{matrix.httpServer}}, ${{matrix.phpVersion}})
# path: "/tmp/coverage"

- name: Upload the junit log file artifact as artifact
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
with:
name: Junit test log files (${{matrix.database}}, stable${{matrix.coreVersion}}, ${{matrix.httpServer}}, ${{matrix.phpVersion}})
path: .github/actions/run-tests/volumes/coverage/junit*.xml
Expand Down Expand Up @@ -345,14 +345,14 @@ jobs:
fi

# - name: Upload the coverage files as artifact
# uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
# uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
# with:
# name: Coverage files (mysql, master, apache)
# path: .github/actions/run-tests/volumes/coverage
# if: always()

- name: Upload the log file as artifact
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
if: always()
with:
name: Nextcloud-logs (mysql, master, apache)
Expand All @@ -365,13 +365,13 @@ jobs:
rsync -a .github/actions/run-tests/volumes/coverage/latest/ /tmp/coverage

- name: Upload the code coverage report for codecov as artifacts
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
with:
name: Code coverage (XML) (mysql, master, apache)
path: "/tmp/coverage/coverage.*.xml"

- name: Upload the junit log file artifact as artifact
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
with:
name: Junit test log files (mysql, master, apache)
path: .github/actions/run-tests/volumes/coverage/junit*.xml
Expand Down Expand Up @@ -525,7 +525,7 @@ jobs:
run: >-
make appstore_package_name=/tmp/appstore appstore
- name: Publish the app store package as artifact
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
with:
name: cookbook-appstore
path: /tmp/appstore.tar.gz
Expand All @@ -535,7 +535,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Upload
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
with:
name: Event File
path: ${{ github.event_path }}
Expand Down
Loading