Skip to content

[OCM][Test Suite] add public download link for the tests ci jobs #6

[OCM][Test Suite] add public download link for the tests ci jobs

[OCM][Test Suite] add public download link for the tests ci jobs #6

name: OCM Test Invite Link oCIS v5.0.6 to OC v10.14.0
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the specified branch.
push:
branches:
- main
pull_request:
branches:
- main
# Allows you to run this workflow manually from the Actions tab.
workflow_dispatch:
jobs:
invite-link:
strategy:
fail-fast: false
max-parallel: 1
matrix:
sender: [
{
platform: ocis,
version: 5.0.6
},
]
receiver: [
{
platform: owncloud,
version: v10.14.0
},
]
# The OS to run tests on, (I believe for OCM testing OS is really not that important).
runs-on: ubuntu-24.04
# Steps represent a sequence of tasks that will be executed as part of the job.
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it.
- name: Checkout.
uses: actions/checkout@v4
- name: Pull images.
shell: bash
run: |
./docker/pull/ocm-test-suite/${{ matrix.sender.platform }}.sh ${{ matrix.sender.version }}
./docker/pull/ocm-test-suite/${{ matrix.receiver.platform }}.sh ${{ matrix.receiver.version }}
- name: Run tests.
shell: bash
run: ./dev/ocm-test-suite.sh invite-link ${{ matrix.sender.platform }} ${{ matrix.sender.version }} ci electron ${{ matrix.receiver.platform }} ${{ matrix.receiver.version }}
- name: Upload Cypress video artifacts.
uses: actions/upload-artifact@v4
if: always()
with:
name: invite-link from ${{ matrix.sender.platform }} ${{ matrix.sender.version }} to ${{ matrix.receiver.platform }} ${{ matrix.receiver.version }}
path: ./cypress/ocm-test-suite/cypress/videos
- name: Upload to GitHub Pages
if: github.ref == 'refs/heads/main'
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./cypress/ocm-test-suite/cypress/videos