Skip to content

Commit

Permalink
ci: Add QUIC support
Browse files Browse the repository at this point in the history
  • Loading branch information
ieQu1 committed Apr 25, 2023
1 parent 151cb0d commit 8b838cb
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ on:
default: false

jobs:
# Build documentation once, since it requires a lot of 3rd party
# tooling, then reuse it as an artifact:
docs:
runs-on: ubuntu-latest

Expand All @@ -33,7 +35,8 @@ jobs:
apt-get update
apt-get install -y openjdk-11-jdk asciidoctor xsltproc docbook-xsl python3-pygments
- shell: bash
- name: Build
shell: bash
run: |
export BUILD_WITHOUT_QUIC=1
git config --global --add safe.directory $(pwd)
Expand All @@ -45,6 +48,7 @@ jobs:
name: docs
path: docs.tar.gz

# Do normal builds:
linux:
runs-on: ubuntu-latest
needs: docs
Expand All @@ -53,8 +57,6 @@ jobs:
matrix:
otp:
- "25.1.2-3"
quic_support:
- false
os:
- ubuntu22.04
- ubuntu20.04
Expand All @@ -81,9 +83,9 @@ jobs:
name: docs
path: .

- shell: bash
- name: Build
shell: bash
run: |
[ "false" == ${{ matrix.quic_support }} ] && export BUILD_WITHOUT_QUIC=1
git config --global --add safe.directory $(pwd)
tar xf docs.tar.gz
export CAN_BUILD_DOCS=false
Expand Down Expand Up @@ -126,8 +128,6 @@ jobs:

- name: build
shell: bash
env:
BUILD_WITHOUT_QUIC: 1
run: |
tar xf docs.tar.gz
export CAN_BUILD_DOCS=false
Expand Down

0 comments on commit 8b838cb

Please sign in to comment.