Skip to content
Open
Show file tree
Hide file tree
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
15 changes: 8 additions & 7 deletions .github/workflows/ci-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,20 +89,21 @@ jobs:
# In case this is second attempt try restoring failed tests
- name: Restore the previous failed combine result
if: steps.run_result.outputs.run_result == 'failedtest'
uses: martijnhols/actions-cache/restore@v3
uses: actions/download-artifact@v3
with:
path: |
~/combined_failed_spec_ci
key: ${{ github.run_id }}-"ci-test-result"
restore-keys: |
${{ github.run_id }}-${{ github.job }}
name: combined_failed_spec_ci
path: ~/combined_failed_spec_ci

- run: |
cd ~/combined_failed_spec_ci
ls

# failed_spec_env will contain list of all failed specs
# We are using environment variable instead of regular to support multiline
- name: Get failed_spec
if: steps.run_result.outputs.run_result == 'failedtest'
run: |
failed_spec_env=$(cat ~/combined_failed_spec_ci)
failed_spec_env=$(cat ~/combined_failed_spec_ci/combined_failed_spec_ci)
echo "failed_spec_env<<EOF" >> $GITHUB_ENV
echo "$failed_spec_env" >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-lfs-artifact
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Appsmith External Integration Test Workflow
name: TEST APPSMITH ARTIFACT

on:
# This workflow is only triggered by the ok to test command dispatch
Expand Down