HAVE_FFDHE_2048 for ESP32C2 fixed DH test failure (limited memory) #224
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Self-Hosted Runner Test | |
# START OF COMMON SECTION | |
on: | |
push: | |
branches: | |
- ED25519_SHA2_fix | |
# END OF COMMON SECTION | |
jobs: | |
test: | |
# Don't run this on downstream forks: | |
# DISABLED See https://github.com/actions/runner/issues/756 | |
if: github.repository_owner == 'gojimmypi' && (1 == 0) | |
runs-on: self-hosted | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
echo "apt-get install shellcheck" | |
ls /mnt/c/github | |
- name: Run tests | |
run: | | |
whoami | |
- name: Send repository dispatch to wolfssl-actions | |
run: | | |
curl -X POST \ | |
-H "Accept: application/vnd.github+json" \ | |
-H "Authorization: Bearer ${{ secrets.WOLFSSL_ACTION_TOKENF1 }}" \ | |
https://api.github.com/repos/gojimmypi/wolfssl-actions/dispatches \ | |
-H "X-GitHub-Api-Version: 2022-11-28" \ | |
-d '{"event_type":"espressif_test","client_payload":{"unit":false,"integration":true}}' | |