Skip to content

Commit e702427

Browse files
ci: fix typo
1 parent c7cfea8 commit e702427

2 files changed

Lines changed: 28 additions & 32 deletions

File tree

.github/workflows/ci.yml

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,4 +106,31 @@ jobs:
106106
uses: actions/upload-artifact@v4
107107
with:
108108
name: Espressif-IDE-${{ env.VERSION }}-macosx.cocoa.aarch64
109-
path: releng/ide-dmg-builder/Espressif-IDE-macosx-cocoa-aarch64.dmg
109+
path: releng/ide-dmg-builder/Espressif-IDE-macosx-cocoa-aarch64.dmg
110+
111+
rc_test:
112+
if: ${{ always() }}
113+
needs: [build_macos]
114+
runs-on: [self-hosted, eclipse, BrnoUBU0004]
115+
116+
steps:
117+
- name: Checkout repository
118+
uses: actions/checkout@v4
119+
120+
- name: Make test scripts executable
121+
run: |
122+
chmod +x releng/update-site-tests/*.sh
123+
124+
- name: Run Eclipse Update Site compatibility tests
125+
run: |
126+
cd releng/update-site-tests
127+
./run-all-cases.sh
128+
129+
- name: Upload Update Site Test Results
130+
if: ${{ always() }}
131+
uses: actions/upload-artifact@v4
132+
with:
133+
name: eclipse-update-site-test-results
134+
path: |
135+
releng/update-site-tests/out
136+
releng/update-site-tests/workdir
Lines changed: 0 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,2 @@
1-
name: RC Update Site Test
21

3-
on:
4-
workflow_run:
5-
workflows: ["Java CI with Maven "]
6-
types: [completed]
7-
8-
jobs:
9-
rc_test:
10-
runs-on: [self-hosted, eclipse, BrnoUBU0004]
11-
12-
steps:
13-
- name: Checkout repository
14-
- uses: actions/checkout@v4
15-
16-
- name: Make test scripts executable
17-
run: |
18-
chmod +x releng/update-site-tests/*.sh
19-
20-
- name: Run Eclipse Update Site compatibility tests
21-
run: |
22-
cd releng/update-site-tests
23-
./run-all-cases.sh
24-
25-
- name: Upload Update Site Test Results
26-
if: ${{ always() }}
27-
uses: actions/upload-artifact@v4
28-
with:
29-
name: eclipse-update-site-test-results
30-
path: |
31-
releng/update-site-tests/out
32-
releng/update-site-tests/workdir
332

0 commit comments

Comments
 (0)