Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshMcCullough committed Feb 5, 2025
1 parent acbb12e commit 6686f33
Show file tree
Hide file tree
Showing 16 changed files with 20 additions and 1,020 deletions.
27 changes: 20 additions & 7 deletions .github/workflows/make-releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
# NGINX versions to build/test against
nginx-version: ['1.20.2', '1.22.1', '1.24.0', '1.26.2', '1.27.3']
nginx-version: ['1.20.2'] #, '1.22.1', '1.24.0', '1.26.2', '1.27.3']

# The following versions of libjwt are compatible:
# * v1.0 - v1.12.0
Expand All @@ -19,7 +19,7 @@ jobs:
# * Debian and Ubuntu's repos have v1.10.2
# * EPEL has v1.12.1
# This compiles against each version prior to a breaking change and the latest release
libjwt-version: ['1.12.0', '1.14.0', '1.15.3']
libjwt-version: ['1.12.0'] #, '1.14.0', '1.15.3']
runs-on: ubuntu-latest
steps:

Expand Down Expand Up @@ -104,7 +104,8 @@ jobs:
uses: actions/upload-artifact@v4
with:
if-no-files-found: error
name: ${{steps.meta.outputs.filename}}
name: release
path: ${{steps.meta.outputs.filename}}

release:
name: Create/Update Release
Expand All @@ -119,15 +120,28 @@ jobs:
run: |
echo "date_now=$(date --rfc-3339=seconds)" >> "${GITHUB_OUTPUT}"
- name: Download Build Artifacts
- name: Download Artifacts
uses: actions/download-artifact@v4
with:
path: artifacts

- name: Upload Builds to Release
- name: Flatten Artifacts
run: |
set -eu
cd artifacts
for f in $(find . -type f); do
echo "Staging: ${f}"
mv "${f}" .
done
find . -type d -mindepth 1 -exec rm -rf "{}" +
- name: Create/Update Release
uses: ncipollo/release-action@v1
with:
name: 'Development Build: ${{ github.ref_name }}@${{ github.sha }}'
name: 'Pre-release: ${{ github.ref_name }}@${{ github.sha }}'
body: |
> [!WARNING]
> This is an automatically generated pre-release version of the module, which includes the latest master branch changes.
Expand All @@ -140,4 +154,3 @@ jobs:
removeArtifacts: true
artifactErrorsFailBuild: true
artifacts: artifacts/*
tag: dev-build
19 changes: 0 additions & 19 deletions test/docker-compose-test.yml

This file was deleted.

5 changes: 0 additions & 5 deletions test/ec_key_256.pem

This file was deleted.

6 changes: 0 additions & 6 deletions test/ec_key_384.pem

This file was deleted.

8 changes: 0 additions & 8 deletions test/ec_key_521.pem

This file was deleted.

Loading

0 comments on commit 6686f33

Please sign in to comment.