Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move CI to GitHub Actions #321

Merged
merged 35 commits into from
Dec 17, 2024
Merged
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
0d55b45
create build and test workflow for openssl3
ajbozarth Nov 20, 2024
0609139
add curl and httpd workflows
ajbozarth Nov 20, 2024
536b568
fix test step names
ajbozarth Nov 21, 2024
e22e0eb
make building against latest liboqs optional
ajbozarth Nov 21, 2024
489007f
Merge branch 'main' into ci
ajbozarth Nov 25, 2024
55e675d
Add nginx workflow and generic curl tests
ajbozarth Nov 25, 2024
4e50cce
Add openssh workflow
ajbozarth Nov 25, 2024
7c37f3c
Create a callable workflow to trigger all builds
ajbozarth Nov 25, 2024
c3429a9
add h2load workflow
ajbozarth Nov 25, 2024
5f41da1
add haproxy workflow
ajbozarth Nov 25, 2024
b1d5079
locust workflow
ajbozarth Nov 25, 2024
1d3f07d
wireshark workflow
ajbozarth Nov 25, 2024
cbe67c9
mosquitto
ajbozarth Nov 25, 2024
0dc2cf1
ngtcp2
ajbozarth Nov 25, 2024
4c6e7ed
openvpn
ajbozarth Nov 25, 2024
d4c1957
prep for adding push steps
ajbozarth Nov 25, 2024
80dd76d
Fix run all
ajbozarth Nov 25, 2024
235541e
fix warnings
ajbozarth Nov 26, 2024
f3dd085
add push to openssl3
ajbozarth Nov 26, 2024
afe727a
dont push on pr
ajbozarth Nov 26, 2024
3d1414b
fix if statements
ajbozarth Nov 26, 2024
de0857a
Update QUIC to work on PRs
ajbozarth Nov 26, 2024
6b07b25
turn off old ci
ajbozarth Nov 26, 2024
ac39c53
Merge branch 'main' into ci
ajbozarth Nov 26, 2024
a33da46
Update locust workflow with tests
ajbozarth Nov 26, 2024
06c7662
fix CI failure
ajbozarth Nov 27, 2024
2e90ae1
remove old CI
ajbozarth Dec 5, 2024
822e30f
Add push to rest of the workflows
ajbozarth Dec 5, 2024
cfa3cfc
Switch from qemu to runners
ajbozarth Dec 9, 2024
ecc80eb
Update all workflows to use runner
ajbozarth Dec 9, 2024
1e3ed32
Merge branch 'main' into ci
ajbozarth Dec 10, 2024
f12ff66
dont push when using liboqs and oqsprovider main
ajbozarth Dec 10, 2024
70b115f
Add docs
ajbozarth Dec 10, 2024
666ab72
Add weekly cron job with build_main true
ajbozarth Dec 10, 2024
0f05a5f
Update name for better badge readability
ajbozarth Dec 10, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
prep for adding push steps
Signed-off-by: Alex Bozarth <[email protected]>
ajbozarth committed Nov 25, 2024
commit d4c1957e7624607083dafa42a8ef0141a95fcad5
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build & Test - all
name: Run all

on:
workflow_call:
9 changes: 8 additions & 1 deletion .github/workflows/curl.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build & Test - curl
name: curl

on:
push:
@@ -14,6 +14,13 @@ on:
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: |
9 changes: 8 additions & 1 deletion .github/workflows/h2load.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build & Test - h2load
name: h2load

on:
push:
@@ -14,6 +14,13 @@ on:
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: |
9 changes: 8 additions & 1 deletion .github/workflows/haproxy.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build & Test - haproxy
name: haproxy

on:
push:
@@ -14,6 +14,13 @@ on:
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: |
9 changes: 8 additions & 1 deletion .github/workflows/httpd.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build & Test - httpd
name: httpd

on:
push:
@@ -14,6 +14,13 @@ on:
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: |
9 changes: 8 additions & 1 deletion .github/workflows/locust.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build - locust
name: locust

on:
push:
@@ -14,6 +14,13 @@ on:
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: |
9 changes: 8 additions & 1 deletion .github/workflows/mosquitto.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build & Test - mosquitto
name: mosquitto

on:
push:
@@ -14,6 +14,13 @@ on:
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: |
9 changes: 8 additions & 1 deletion .github/workflows/nginx.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build & Test - nginx
name: nginx

on:
push:
@@ -14,6 +14,13 @@ on:
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: |
9 changes: 8 additions & 1 deletion .github/workflows/ngtcp2.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build & Test - ngtcp2
name: ngtcp2

on:
push:
@@ -14,6 +14,13 @@ on:
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: |
9 changes: 8 additions & 1 deletion .github/workflows/openssh.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build & Test - openssh
name: openssh

on:
push:
@@ -14,6 +14,13 @@ on:
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: |
9 changes: 8 additions & 1 deletion .github/workflows/openssl3.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build & Test - openssl3
name: openssl3

on:
push:
@@ -14,6 +14,13 @@ on:
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: |
9 changes: 8 additions & 1 deletion .github/workflows/openvpn.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build & Test - openvpn
name: openvpn

on:
push:
@@ -14,6 +14,13 @@ on:
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: |
9 changes: 8 additions & 1 deletion .github/workflows/wireshark.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build - wireshark
name: wireshark

on:
push:
@@ -14,6 +14,13 @@ on:
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: |
Loading