From 26c0a6509ac96c2d4309168d1d4e01112ed222d8 Mon Sep 17 00:00:00 2001 From: Kirill Sizov Date: Tue, 13 Sep 2022 10:12:13 +0300 Subject: [PATCH] Workflows: fix typo (#4939) Co-authored-by: kirill-sizov --- .github/workflows/full.yml | 10 ++++------ .github/workflows/main.yml | 9 +++------ 2 files changed, 7 insertions(+), 12 deletions(-) diff --git a/.github/workflows/full.yml b/.github/workflows/full.yml index 31c1528c..30a926be 100644 --- a/.github/workflows/full.yml +++ b/.github/workflows/full.yml @@ -163,7 +163,7 @@ jobs: docker load --input /tmp/cvat_server/image.tar docker load --input /tmp/cvat_ui/image.tar docker tag cvat/server:latest cvat/server:dev - docker tag cvat/ui:latest cvat/server:dev + docker tag cvat/ui:latest cvat/ui:dev docker image ls -a - name: Running REST API and SDK tests @@ -193,11 +193,9 @@ jobs: - name: Uploading "cvat" container logs as an artifact if: failure() uses: actions/upload-artifact@v2 - env: - LOGS_DIR: "${{ github.workspace }}/rest_api" with: name: container_logs - path: $LOGS_DIR + path: "${{ github.workspace }}/rest_api" unit_testing: needs: build @@ -339,13 +337,13 @@ jobs: npx cypress run \ --headed \ --browser chrome \ - --env coverage=false + --env coverage=false \ --config-file cypress_canvas3d.json \ --spec 'cypress/integration/${{ matrix.specs }}/**/*.js,cypress/integration/remove_users_tasks_projects_organizations.js' else npx cypress run \ --browser chrome \ - --env coverage=false + --env coverage=false \ --spec 'cypress/integration/${{ matrix.specs }}/**/*.js,cypress/integration/remove_users_tasks_projects_organizations.js' fi diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f85b3a7b..9e9e4d90 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -159,11 +159,9 @@ jobs: - name: Uploading "cvat" container logs as an artifact if: failure() uses: actions/upload-artifact@v2 - env: - LOGS_DIR: "${{ github.workspace }}/rest_api" with: name: container_logs - path: $LOGS_DIR + path: "${{ github.workspace }}/rest_api" unit_testing: needs: build @@ -220,11 +218,10 @@ jobs: - name: Uploading "cvat" container logs as an artifact if: failure() uses: actions/upload-artifact@v2 - env: - LOGS_DIR: "${{ github.workspace }}/unit_testing" with: name: container_logs - path: $LOGS_DIR + path: "${{ github.workspace }}/unit_testing" + e2e_testing: needs: build