Skip to content

Commit 800615b

Browse files
committed
test
1 parent 47feb4d commit 800615b

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/hw.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ on:
1515
jobs:
1616
hardware-test:
1717
name: Hardware ${{ inputs.chip }} ${{ inputs.type }} tests
18-
runs-on: [arduino, "${{ inputs.chip }}"]
18+
#runs-on: [arduino, "${{ inputs.chip }}"]
19+
runs-on: ubuntu-latest
1920
env:
2021
id: ${{ github.event.pull_request.number || github.ref }}-${{ github.event.pull_request.head.sha || github.sha }}-${{ inputs.chip }}-${{ inputs.type }}
2122
container:

.github/workflows/tests.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
6060
call-build-tests:
6161
name: Build
62-
uses: espressif/arduino-esp32/.github/workflows/build_tests.yml@master
62+
uses: ./.github/workflows/build_tests.yml
6363
needs: gen-matrix
6464
if: github.event.action != 'closed'
6565
strategy:
@@ -72,10 +72,9 @@ jobs:
7272

7373
call-hardware-tests:
7474
name: Hardware
75-
uses: espressif/arduino-esp32/.github/workflows/hw.yml@master
75+
uses: ./.github/workflows/hw.yml
7676
needs: [gen-matrix, call-build-tests]
7777
if: |
78-
github.repository == 'espressif/arduino-esp32' &&
7978
(github.event_name != 'pull_request_target' ||
8079
contains(github.event.pull_request.labels.*.name, 'hil_test'))
8180
strategy:
@@ -89,7 +88,7 @@ jobs:
8988

9089
call-wokwi-tests:
9190
name: Wokwi
92-
uses: espressif/arduino-esp32/.github/workflows/wokwi.yml@master
91+
uses: ./.github/workflows/wokwi.yml
9392
needs: [gen-matrix, call-build-tests]
9493
if: github.event.action != 'closed'
9594
strategy:
@@ -106,7 +105,7 @@ jobs:
106105
# This job is disabled for now
107106
call-qemu-tests:
108107
name: QEMU
109-
uses: espressif/arduino-esp32/.github/workflows/qemu.yml@master
108+
uses: ./.github/workflows/qemu.yml
110109
needs: [gen-matrix, call-build-tests]
111110
if: false
112111
strategy:

0 commit comments

Comments
 (0)