build(deps): bump golang.org/x/crypto from 0.28.0 to 0.29.0 (#275) #78
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: Integration and Unit Tests | |
on: | |
push: | |
branches: | |
- 'main' | |
- 'dev' | |
env: | |
REPORT_FILENAME: | |
jobs: | |
integration-and-unit-tests: | |
runs-on: ubuntu-latest | |
if: github.event_name == 'push' && (github.event.ref == 'refs/heads/main' || github.event.ref == 'refs/heads/dev') | |
env: | |
EXIT_STATUS: 0 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ needs.get-go-version.outputs.go-version }} | |
- name: Install go-junit-report | |
run: go install github.com/jstemmer/go-junit-report/v2@latest | |
- name: Set report filename | |
id: set-report-filename | |
run: echo "REPORT_FILENAME=$(date +'%Y%m%d%H%M')_packer_test_report.xml" >> $GITHUB_ENV | |
- name: Run integration and unit tests | |
run: | | |
echo "Testing with Go ${{ needs.get-go-version.outputs.go-version }}" | |
make test | go-junit-report -set-exit-code -iocopy -out "$REPORT_FILENAME" | |
env: | |
LINODE_TOKEN: ${{ secrets.LINODE_TOKEN }} | |
- name: Upload test report as artifact | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: test-report-file | |
path: "${{ env.REPORT_FILENAME }}" | |
process-upload-report: | |
runs-on: ubuntu-latest | |
needs: | |
- integration-and-unit-tests | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: 'recursive' | |
- name: Download test report | |
uses: actions/download-artifact@v4 | |
with: | |
name: test-report-file | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- name: Install Python dependencies | |
run: pip3 install requests wheel boto3 | |
- name: Set release version env | |
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV | |
- name: Add variables and upload test results | |
if: always() | |
run: | | |
filename=$(ls | grep -E '^[0-9]{12}_packer_test_report\.xml$') | |
python3 e2e_scripts/tod_scripts/xml_to_obj_storage/scripts/add_gha_info_to_xml.py \ | |
--branch_name "${GITHUB_REF#refs/*/}" \ | |
--gha_run_id "$GITHUB_RUN_ID" \ | |
--gha_run_number "$GITHUB_RUN_NUMBER" \ | |
--xmlfile "${filename}" | |
sync | |
python3 e2e_scripts/tod_scripts/xml_to_obj_storage/scripts/xml_to_obj.py "${filename}" | |
env: | |
LINODE_CLI_OBJ_ACCESS_KEY: ${{ secrets.LINODE_CLI_OBJ_ACCESS_KEY }} | |
LINODE_CLI_OBJ_SECRET_KEY: ${{ secrets.LINODE_CLI_OBJ_SECRET_KEY }} |