Skip to content

Commit

Permalink
locust workflow
Browse files Browse the repository at this point in the history
note this workflow does not have tests yet

Signed-off-by: Alex Bozarth <[email protected]>
  • Loading branch information
ajbozarth committed Nov 25, 2024
1 parent 49312c9 commit 58868e0
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions .github/workflows/locust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: Build & Test - 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

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@v3
- 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

- name: Test locust
run: |
echo "locust tests TBA"

0 comments on commit 58868e0

Please sign in to comment.