use unique artifact names

This commit is contained in:
Juliusz Sosinowicz
2023-03-28 17:17:18 +02:00
parent 1766a69152
commit f5b0c406c0
3 changed files with 9 additions and 9 deletions

View File

@ -8,9 +8,9 @@ jobs:
strategy: strategy:
matrix: matrix:
include: include:
- build_id: build1 - build_id: hostap-build1
wolf_extra_config: --disable-tls13 wolf_extra_config: --disable-tls13
- build_id: build2 - build_id: hostap-build2
wolf_extra_config: --enable-brainpool --enable-wpas-dpp wolf_extra_config: --enable-brainpool --enable-wpas-dpp
name: Build wolfSSL name: Build wolfSSL
# Just to keep it the same as the testing target # Just to keep it the same as the testing target
@ -63,13 +63,13 @@ jobs:
hostap_cherry_pick: 698c05da2bd3233b005d45873caa852bc29b32c5, hostap_cherry_pick: 698c05da2bd3233b005d45873caa852bc29b32c5,
remove_teap: true, remove_teap: true,
# TLS 1.3 does not work for this version # TLS 1.3 does not work for this version
build_id: build1, build_id: hostap-build1,
}, },
# Test the dpp patch # Test the dpp patch
{ {
hostap_ref: b607d2723e927a3446d89aed813f1aa6068186bb, hostap_ref: b607d2723e927a3446d89aed813f1aa6068186bb,
osp_ref: ad5b52a49b3cc2a5bfb47ccc1d6a5137132e9446, osp_ref: ad5b52a49b3cc2a5bfb47ccc1d6a5137132e9446,
build_id: build2 build_id: hostap-build2
}, },
] ]
# parallelize the tests to be able to run all tests within 10 minutes # parallelize the tests to be able to run all tests within 10 minutes
@ -84,7 +84,7 @@ jobs:
config: { config: {
hostap_ref: b607d2723e927a3446d89aed813f1aa6068186bb, hostap_ref: b607d2723e927a3446d89aed813f1aa6068186bb,
osp_ref: ad5b52a49b3cc2a5bfb47ccc1d6a5137132e9446, osp_ref: ad5b52a49b3cc2a5bfb47ccc1d6a5137132e9446,
build_id: build2 build_id: hostap-build2
} }
name: hwsim test name: hwsim test
# For openssl 1.1 # For openssl 1.1

View File

@ -19,7 +19,7 @@ jobs:
- name: Upload built lib - name: Upload built lib
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
with: with:
name: wolf-install name: wolf-install-openvpn
path: build-dir path: build-dir
retention-days: 1 retention-days: 1
@ -36,7 +36,7 @@ jobs:
- name: Download lib - name: Download lib
uses: actions/download-artifact@v3 uses: actions/download-artifact@v3
with: with:
name: wolf-install name: wolf-install-openvpn
path: build-dir path: build-dir
- name: Install dependencies - name: Install dependencies

View File

@ -19,7 +19,7 @@ jobs:
- name: Upload built lib - name: Upload built lib
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
with: with:
name: wolf-install name: wolf-install-stunnel
path: build-dir path: build-dir
retention-days: 1 retention-days: 1
@ -36,7 +36,7 @@ jobs:
- name: Download lib - name: Download lib
uses: actions/download-artifact@v3 uses: actions/download-artifact@v3
with: with:
name: wolf-install name: wolf-install-stunnel
path: build-dir path: build-dir
- name: Checkout OSP - name: Checkout OSP