Merge pull request #10053 from douzzer/20260323-revert-9841

20260323-revert-9841
This commit is contained in:
David Garske
2026-03-23 15:27:36 -07:00
committed by GitHub
4 changed files with 48 additions and 19 deletions
@@ -248,6 +248,9 @@ ap_wpa2_eap_tls_check_cert_subject_neg
ap_wpa2_eap_tls_diff_ca_trust2
ap_wpa2_eap_tls_domain_mismatch_cn
ap_wpa2_eap_tls_domain_suffix_mismatch_cn
ap_wpa2_eap_tls_intermediate_ca_ocsp_multi_missing_resp
ap_wpa2_eap_tls_intermediate_ca_ocsp_revoked_sha1
ap_wpa2_eap_tls_intermediate_ca_ocsp_sha1
ap_wpa2_eap_tls_neg_incorrect_trust_root
ap_wpa2_eap_tls_ocsp_multi
ap_wpa2_eap_tls_ocsp_multi_revoked
@@ -646,6 +649,9 @@ dpp_config_dpp_gen_secp521r1
dpp_config_dpp_gen_secp521r1_prime256v1
dpp_config_dpp_gen_secp521r1_secp384r1
dpp_config_dpp_gen_secp521r1_secp521r1
dpp_config_dpp_override_prime256v1
dpp_config_dpp_override_secp384r1
dpp_config_dpp_override_secp521r1
dpp_config_error_legacy_invalid_psk
dpp_config_error_legacy_no_pass
dpp_config_error_legacy_no_pass_for_sae
@@ -685,6 +691,7 @@ dpp_config_no_discovery
dpp_config_no_discovery_ssid
dpp_config_no_signed_connector
dpp_config_no_wi_fi_tech
dpp_config_override_objects
dpp_config_root_not_an_object
dpp_config_save
dpp_config_save2
@@ -741,6 +748,12 @@ dpp_hostapd_configurator_enrollee_v1
dpp_hostapd_configurator_fragmentation
dpp_hostapd_configurator_override_objects
dpp_hostapd_configurator_responder
dpp_hostapd_enrollee_fragmentation
dpp_hostapd_enrollee_gas_errors
dpp_hostapd_enrollee_gas_proto
dpp_hostapd_enrollee_gas_timeout
dpp_hostapd_enrollee_gas_timeout_comeback
dpp_hostapd_enrollee_gas_tx_status_errors
dpp_intro_mismatch
dpp_invalid_configurator_key
dpp_invalid_legacy_params
@@ -893,6 +906,10 @@ dpp_qr_code_auth_incompatible_roles2
dpp_qr_code_auth_incompatible_roles_failure
dpp_qr_code_auth_incompatible_roles_failure2
dpp_qr_code_auth_incompatible_roles_failure3
dpp_qr_code_auth_initiator_either_1
dpp_qr_code_auth_initiator_either_2
dpp_qr_code_auth_initiator_either_3
dpp_qr_code_auth_initiator_enrollee
dpp_qr_code_auth_mutual
dpp_qr_code_auth_mutual2
dpp_qr_code_auth_mutual_bp_256
@@ -347,6 +347,7 @@ ap_wpa2_eap_tls_ocsp_server_signed
ap_wpa2_eap_tls_ocsp_invalid_data
ap_wpa2_eap_tls_ocsp_invalid
ap_wpa2_eap_tls_ocsp_unknown_sign
ap_wpa2_eap_tls_intermediate_ca
ap_wpa2_eap_tls_ocsp_multi_revoked
ap_wpa2_eap_tls_domain_suffix_match_cn_full
ap_wpa2_eap_tls_domain_match_cn
@@ -460,6 +461,9 @@ dpp_qr_code_auth_mutual_not_used
dpp_qr_code_auth_mutual_curve_mismatch
dpp_qr_code_auth_hostapd_mutual2
dpp_qr_code_listen_continue
dpp_qr_code_auth_initiator_enrollee
dpp_qr_code_auth_initiator_either_2
dpp_qr_code_auth_initiator_either_3
dpp_config_legacy
dpp_config_legacy_psk_hex
dpp_config_fragmentation
@@ -471,6 +475,9 @@ dpp_config_dpp_gen_secp521r1
dpp_config_dpp_gen_expiry
dpp_config_dpp_gen_expired_key
dpp_config_dpp_gen_3rd_party
dpp_config_dpp_override_prime256v1
dpp_config_dpp_override_secp384r1
dpp_config_override_objects
dpp_config_signed_connector_error_no_dot_1
dpp_config_signed_connector_error_no_dot_2
dpp_config_signed_connector_error_unexpected_signature_len
@@ -572,6 +579,12 @@ dpp_pkex_nak_curve_change2
dpp_hostapd_configurator
dpp_hostapd_configurator_responder
dpp_hostapd_configurator_fragmentation
dpp_hostapd_enrollee_fragmentation
dpp_hostapd_enrollee_gas_timeout
dpp_hostapd_enrollee_gas_timeout_comeback
dpp_hostapd_enrollee_gas_errors
dpp_hostapd_enrollee_gas_proto
dpp_hostapd_enrollee_gas_tx_status_errors
dpp_hostapd_configurator_override_objects
dpp_own_config
dpp_own_config_group_id
+18 -18
View File
@@ -2,10 +2,14 @@ name: hostap and wpa-supplicant Tests
# START OF COMMON SECTION
on:
push:
branches: [ 'master', 'main', 'release/**' ]
pull_request:
branches: [ '*' ]
workflow_dispatch: # Allows people to run it manually if they want but
# disables it from running automatically when broken
# To restore this to an auto test delete the above workflow_dispatch line and
# comments and uncomment the below lines for push and pull_request
# push:
# branches: [ 'master', 'main', 'release/**' ]
# pull_request:
# branches: [ '*' ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
@@ -228,6 +232,16 @@ jobs:
working-directory: hostap
run: git checkout ${{ matrix.config.hostap_ref }}
- name: Update certs
working-directory: hostap/tests/hwsim/auth_serv
run: |
./update.sh
./sha512-generate.sh
# Force regeneration of rsa3072-ca.key to get rsa3072-generate.sh to
# correctly update all the certs
rm rsa3072-ca.key
./rsa3072-generate.sh
- if: ${{ matrix.config.osp_ref }}
name: Checkout OSP
uses: actions/checkout@v4
@@ -245,20 +259,6 @@ jobs:
patch -p1 < $f
done
- name: Update certs
working-directory: hostap/tests/hwsim/auth_serv
run: |
mkdir -p rootCA/newcerts
./update.sh
./ec-generate.sh
./ec2-generate.sh
./sha512-generate.sh
# Force regeneration of rsa3072-ca.key to get rsa3072-generate.sh to
# correctly update all the certs
rm rsa3072-ca.key
./rsa3072-generate.sh
./ica-generate.sh
- name: Apply extra patches
working-directory: hostap
run: |
-1
View File
@@ -28751,7 +28751,6 @@ static int ParseCipherList(Suites* suites,
haveRSA, 1, 1, !haveRSA, 1, haveRSA, !haveRSA, 0, 0, 1,
1, 1, side
);
suites->setSuites = 1;
return 1; /* wolfSSL default */
}