Skip to content

Commit

Permalink
wip3
Browse files Browse the repository at this point in the history
  • Loading branch information
levb committed Apr 20, 2024
1 parent 88e341a commit 6ab4fef
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-all-debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
coverage: ON
server_version: main
type: Debug
name: "gcc: coverage"
name: "Coverage: ubuntu:latest gcc nats:main"
secrets:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
Expand All @@ -34,7 +34,7 @@ jobs:
compiler: clang
server_version: main
type: Debug
name: "clang"
name: "All: ubuntu:latest clang nats:main"
secrets:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
Expand All @@ -53,7 +53,7 @@ jobs:
server_version: main
lib_msg_delivery: ${{ matrix.lib_msg_delivery }}
lib_write_deadline: ${{ matrix.lib_write_deadline }}
name: "gcc: sanitize address: ${{ (matrix.lib_msg_delivery == 'ON' && matrix.lib_write_deadline == 'OFF' && 'msg-delivery') || (matrix.lib_msg_delivery == 'OFF' && matrix.lib_write_deadline == 'ON' && 'write-deadline') || 'default' }}"
name: "Sanitize address ${{ (matrix.lib_msg_delivery == 'ON' && matrix.lib_write_deadline == 'OFF' && 'msg-delivery') || (matrix.lib_msg_delivery == 'OFF' && matrix.lib_write_deadline == 'ON' && 'write-deadline') || 'default' }}: ubuntu:latest gcc nats:main"
secrets:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
Expand All @@ -63,7 +63,7 @@ jobs:
with:
sanitize: thread
server_version: main
name: "gcc: sanitize thread"
name: "Sanitize thread: ubuntu:latest gcc nats:main"
secrets:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
10 changes: 5 additions & 5 deletions .github/workflows/build-all-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
with:
ubuntu_version: ${{ matrix.ubuntu_version }}
compiler: ${{ matrix.compiler }}
name: "ubuntu-${{ matrix.ubuntu_version }} ${{ matrix.compiler }}: latest"
name: "All: ubuntu:${{ matrix.ubuntu_version }} ${{ matrix.compiler }} nats:latest"

more-server-versions:
needs: default
Expand All @@ -32,7 +32,7 @@ jobs:
uses: ./.github/workflows/build-test.yml
with:
server_version: ${{ matrix.server_version }}
name: "ubuntu-latest gcc: ${{ matrix.server_version }}"
name: "All: ubuntu:latest gcc nats:${{ matrix.server_version }}"

TLS-OFF:
strategy:
Expand All @@ -42,7 +42,7 @@ jobs:
uses: ./.github/workflows/build-test.yml
with:
tls: OFF
name: "ubuntu-latest ${{ matrix.compiler }}: no TLS, latest"
name: "NoTLS: ubuntu:latest ${{ matrix.compiler }} nats:latest"

older-cc:
strategy:
Expand All @@ -54,10 +54,10 @@ jobs:
ubuntu_version: 20.04
compiler: ${{ matrix.compiler }}
quick_test: ON
name: "ubuntu-20.04 (${{ matrix.compiler }}: quick check"
name: "Quick: ubuntu:20.04 ${{ matrix.compiler }}"

no-streaming:
uses: ./.github/workflows/build-test.yml
with:
streaming: OFF
name: "ubuntu-latest gcc: no streaming, latest"
name: "NoStreaming: ubuntu:latest gcc nats:latest"
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,14 @@ permissions:

jobs:
build-debug:
name: debug
uses: ./.github/workflows/build-all-debug.yml
secrets:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

build-release:
name: release
if: |
contains(github.event.pull_request.labels.*.name, 'build-release') ||
github.event.pull_request.head.ref == 'main' ||
Expand Down

0 comments on commit 6ab4fef

Please sign in to comment.