Skip to content

Commit

Permalink
comment out everything
Browse files Browse the repository at this point in the history
  • Loading branch information
mkurnikov committed Apr 7, 2024
1 parent 8c78f74 commit aa8bd71
Showing 1 changed file with 25 additions and 24 deletions.
49 changes: 25 additions & 24 deletions .github/workflows/ui_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ jobs:
Xvfb -ac :99 -screen 0 1920x1080x24 &
sleep 10
mkdir -p ui-tests/build/reports
./gradlew :ui-tests:runIdeForUiTests > ui-tests/build/reports/idea.log &
./gradlew :ui-tests:runIdeForUiTests > ui-tests/build/reports/idea.log
# ./gradlew :ui-tests:runIdeForUiTests > ui-tests/build/reports/idea.log &
runTests: |
export DISPLAY=:99.0
./gradlew :ui-tests:test
Expand Down Expand Up @@ -75,28 +76,28 @@ jobs:
- name: Run Idea
run: ${{ matrix.runIde }}

- name: Wait for Idea started
uses: jtalk/url-health-check-action@v3
with:
url: ${{ matrix.url }}
max-attempts: 15
retry-delay: 30s

- name: Run tests
run: ${{ matrix.runTests }}
# - name: Wait for Idea started
# uses: jtalk/url-health-check-action@v3
# with:
# url: ${{ matrix.url }}
# max-attempts: 15
# retry-delay: 30s

- name: Move video
if: ${{ failure() }}
run: mv ui-tests/video ui-tests/build/reports
# - name: Run tests
# run: ${{ matrix.runTests }}

- name: Copy logs
if: ${{ failure() }}
run: mv ui-tests/build/idea-sandbox/system/log/ ui-tests/build/reports

- name: Save fails report
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.reportName }}
path: |
ui-tests/build/reports
# - name: Move video
# if: ${{ failure() }}
# run: mv ui-tests/video ui-tests/build/reports
#
# - name: Copy logs
# if: ${{ failure() }}
# run: mv ui-tests/build/idea-sandbox/system/log/ ui-tests/build/reports
#
# - name: Save fails report
# if: ${{ failure() }}
# uses: actions/upload-artifact@v4
# with:
# name: ${{ matrix.reportName }}
# path: |
# ui-tests/build/reports

0 comments on commit aa8bd71

Please sign in to comment.