port #5
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: locust | |
on: | |
push: | |
branches: [ '*' ] | |
paths: ['.github/workflows/locust.yml', 'locust/**'] | |
pull_request: | |
branches: [ 'main' ] | |
paths: ['.github/workflows/locust.yml', 'locust/**'] | |
workflow_call: | |
inputs: | |
build_main: | |
description: "Build using liboqs and oqsprovider main branches" | |
required: false | |
default: false | |
type: boolean | |
workflow_dispatch: | |
inputs: | |
build_main: | |
description: "Build using liboqs and oqsprovider main branches" | |
required: false | |
default: false | |
type: boolean | |
env: | |
build-args: | | |
LIBOQS_TAG=main | |
OQSPROVIDER_TAG=main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: | |
- linux/amd64 | |
- linux/arm64 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: docker/setup-qemu-action@v3 | |
- uses: docker/setup-buildx-action@v3 | |
- uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build the Docker image | |
uses: docker/build-push-action@v6 | |
with: | |
load: true | |
context: locust | |
platforms: ${{ matrix.platform }} | |
build-args: | | |
MAKE_DEFINES=-j4 | |
${{ (github.event.inputs.build_main == 'true') && env.build-args || null }} | |
tags: | | |
oqs-locust | |
oqs-locust:0.0.1 | |
- name: Launch Locust in Docker Compose | |
working-directory: ./locust | |
run: | | |
LOGGER_LEVEL=DEBUG HOST=https://localhost:4433 GROUP=kyber768 docker compose up -d --scale worker=1 | |
# Launch the Locust environment with a single worker for this test case. | |
- name: Start OpenSSL server | |
working-directory: ./locust | |
run: | | |
docker exec -d locust-worker-1 openssl s_server \ | |
-cert bin/CA.crt \ | |
-key bin/CA.key \ | |
-www \ | |
-tls1_3 \ | |
-groups kyber768 | |
# Start the OpenSSL quantum-safe server inside the Locust worker container. | |
- name: Run Locust load test | |
working-directory: ./locust | |
run: | | |
curl -X POST -H "Content-Type: application/json" \ | |
-d '{"user_count": 10, "spawn_rate": 2, "run_time": "1m", "host": "https://localhost:4433"}' \ | |
http://localhost:8189/swarm | |
# Trigger the Locust load test by sending a POST request to the Locust master API. | |
- name: Wait for test to finish | |
run: sleep 70 | |
# Allow the test to complete by waiting longer than the specified run-time. | |
- name: Download JSON report | |
working-directory: ./locust | |
run: | | |
curl 'http://localhost:8189/stats/requests/csv' -o locust_report.out | |
# Fetch the Locust test results in CSV format using the /stats/requests API. | |
- name: Upload JSON report | |
uses: actions/upload-artifact@v4 | |
with: | |
name: locust-report | |
path: locust/locust_report.out | |
# Save the JSON report as an artifact so it can be downloaded after the workflow completes. | |
- name: Tear down Docker Compose | |
working-directory: ./locust | |
run: docker compose down | |
# Stop and remove all Locust-related containers to clean up the environment. |