mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-05-12 17:04:46 +00:00
* [ACA-4652] Run unit tests as one GH job, add e2es as GH job * [ACA-4652] Fix yaml syntax * [ACA-4652] Fix if syntax * [ACA-4652] Correct syntax * [ACA-4652] Correct syntax * [ACA-4652] Each job must contain uses or run * [ACA-4652] Migrate uploading/downloading build artifacts, migrate before install * [ACA-4652] Fix bad substitution * [ACA-4652] Fix string merging in bash * [ACA-4652] Bash fix * [ACA-4652] Install aws before downloading/uploading artifacts * [ACA-4652] Add setup with aws config action * [ACA-4652] Add aws-region * [ACA-4652] Use aws default region * [ACA-4652] Log github event * [ACA-4652] Log workflow run * [ACA-4652] Fix commit logging * [ACA-4652] Use action to get current commit msg * [ACA-4652] Add correct version of build tools * [ACA-4652] Get commit msg from env * [ACA-4652] Get commit msg in the same job * [ACA-4652] Final commit msg test * [ACA-4652] Fix logging * [ACA-4652] Cleanup commit msg, correct s3 bucket * [link-adf:AAE-12767] Test adf linking * [link-adf:AAE-12767] Test adf linking finalize * [link-adf:AAE-12767] Tweak finalize job * [link-adf:AAE-12767] Get commit msg in before install * [link-adf:AAE-12767] Add missing adfprod configs * [ACA-4652] Migrate before and after e2e scripts to GHA * [ACA-4652] Add before e2e logging * [ACA-4652] Use new GH secrets * [ACA-4652] Remove logs, add envsub * [ACA-4652] Install envsub globally * [ACA-4652] Log replaced config * [ACA-4652] Add missing env variable * [ACA-4652] Add e2e run as GH action * [ACA-4652] Remove logging, fix download path * [ACA-4652] Disable protractor smartrunner artifact * [ACA-4652] Install webdriver-manager * [ACA-4652] Disable failing download on Travis, npm ci in before e2e * [ACA-4652] Missing shell * [ACA-4652] Restore artifact download * [ACA-4652] Download smartrunner artifact only when present * [ACA-4652] Check run attempt * [ACA-4652] Correct attempt check * [ACA-4652] Stop running e2es in Travis for now * [ACA-4652] Run Travis e2es again, add test suite id * [ACA-4652] Add test suite id to after e2e action * [ACA-4652] Remove additional install * [ACA-4652] CR fixes, remove some Travis config that is already migrated * [ACA-4652] Cleanup setup leftover * [ACA-4652] Propagate aws credentials * [ACA-4652] Fix aws default region * [ACA-4652] Misspelled variable fix * [ACA-4652] Propagate aws region * [ACA-4652] Rename PR workflow * [ACA-4652] Download artifact only if bucket exists * [ACA-4652] Run test even is aws bucket doesn't exist * [ACA-4652] Fix aws download error * [ACA-4652] Check if file exists before downloading * [ACA-4652] Remove uploading/downloading e2e artifact after successful run * [ACA-4652] Add missing check to finalize stage
31 lines
591 B
YAML
31 lines
591 B
YAML
name: "After e2e"
|
|
description: "After e2e"
|
|
|
|
env:
|
|
storage_file: "./storage-state/AdminUserState.json"
|
|
|
|
inputs:
|
|
id:
|
|
description: 'test suite id'
|
|
required: true
|
|
type: number
|
|
aws-access-key-id:
|
|
description: 'aws access key id'
|
|
required: true
|
|
type: string
|
|
aws-secret-access-key:
|
|
description: 'aws secret access key'
|
|
required: true
|
|
type: string
|
|
aws-region:
|
|
description: 'aws region'
|
|
required: true
|
|
type: string
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Remove storage file
|
|
shell: bash
|
|
run: rm -f ${{ env.storage_file }}
|