forked from nats-io/nats.c
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
136 additions
and
136 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,69 +1,69 @@ | ||
name: "Release" | ||
on: | ||
push: | ||
branches: | ||
- main | ||
- release_* | ||
# name: "Release" | ||
# on: | ||
# push: | ||
# branches: | ||
# - main | ||
# - release_* | ||
|
||
|
||
permissions: | ||
contents: write # required by build-test to comment on coverage but not used here. | ||
# permissions: | ||
# contents: write # required by build-test to comment on coverage but not used here. | ||
|
||
defaults: | ||
run: | ||
shell: bash --noprofile --norc -x -eo pipefail {0} | ||
# defaults: | ||
# run: | ||
# shell: bash --noprofile --norc -x -eo pipefail {0} | ||
|
||
jobs: | ||
flakes: | ||
name: "check for flaky tests" | ||
uses: ./.github/workflows/build-test.yml | ||
with: | ||
server_version: main | ||
repeat: 5 | ||
# jobs: | ||
# flakes: | ||
# name: "check for flaky tests" | ||
# uses: ./.github/workflows/build-test.yml | ||
# with: | ||
# server_version: main | ||
# repeat: 5 | ||
|
||
server-versions: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
server_version: [latest, v2.9.11] | ||
uses: ./.github/workflows/build-test.yml | ||
name: "Other servers" | ||
with: | ||
server_version: ${{ matrix.server_version }} | ||
# server-versions: | ||
# strategy: | ||
# fail-fast: false | ||
# matrix: | ||
# server_version: [latest, v2.9.11] | ||
# uses: ./.github/workflows/build-test.yml | ||
# name: "Other servers" | ||
# with: | ||
# server_version: ${{ matrix.server_version }} | ||
|
||
TLS-OFF: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
compiler: [gcc, clang] | ||
uses: ./.github/workflows/build-test.yml | ||
name: "No TLS" | ||
with: | ||
tls: OFF | ||
# TLS-OFF: | ||
# strategy: | ||
# fail-fast: false | ||
# matrix: | ||
# compiler: [gcc, clang] | ||
# uses: ./.github/workflows/build-test.yml | ||
# name: "No TLS" | ||
# with: | ||
# tls: OFF | ||
|
||
older-cc: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
compiler: [gcc-7, gcc-8, clang-8] | ||
uses: ./.github/workflows/build-test.yml | ||
name: "Older compilers" | ||
with: | ||
ubuntu_version: 20.04 | ||
compiler: ${{ matrix.compiler }} | ||
# older-cc: | ||
# strategy: | ||
# fail-fast: false | ||
# matrix: | ||
# compiler: [gcc-7, gcc-8, clang-8] | ||
# uses: ./.github/workflows/build-test.yml | ||
# name: "Older compilers" | ||
# with: | ||
# ubuntu_version: 20.04 | ||
# compiler: ${{ matrix.compiler }} | ||
|
||
no-streaming: | ||
uses: ./.github/workflows/build-test.yml | ||
name: "No Streaming" | ||
with: | ||
streaming: OFF | ||
# no-streaming: | ||
# uses: ./.github/workflows/build-test.yml | ||
# name: "No Streaming" | ||
# with: | ||
# streaming: OFF | ||
|
||
coverage: | ||
name: "Coverage" | ||
uses: ./.github/workflows/build-test.yml | ||
with: | ||
coverage: ON | ||
server_version: main | ||
type: Debug | ||
secrets: | ||
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | ||
# coverage: | ||
# name: "Coverage" | ||
# uses: ./.github/workflows/build-test.yml | ||
# with: | ||
# coverage: ON | ||
# server_version: main | ||
# type: Debug | ||
# secrets: | ||
# CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
name: "Release" | ||
on: | ||
push: | ||
# name: "Release" | ||
# on: | ||
# push: | ||
|
||
permissions: | ||
contents: write # required by build-test to comment on coverage but not used here. | ||
# permissions: | ||
# contents: write # required by build-test to comment on coverage but not used here. | ||
|
||
defaults: | ||
run: | ||
shell: bash --noprofile --norc -x -eo pipefail {0} | ||
# defaults: | ||
# run: | ||
# shell: bash --noprofile --norc -x -eo pipefail {0} | ||
|
||
jobs: | ||
quick: | ||
name: "Ubuntu" | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
compiler: [gcc, clang] | ||
ubuntu_version: [latest, 20.04] | ||
uses: ./.github/workflows/build-test.yml | ||
with: | ||
server_version: main | ||
ubuntu_version: ${{ matrix.ubuntu_version }} | ||
compiler: ${{ matrix.compiler }} | ||
# jobs: | ||
# quick: | ||
# name: "Ubuntu" | ||
# strategy: | ||
# fail-fast: false | ||
# matrix: | ||
# compiler: [gcc, clang] | ||
# ubuntu_version: [latest, 20.04] | ||
# uses: ./.github/workflows/build-test.yml | ||
# with: | ||
# server_version: main | ||
# ubuntu_version: ${{ matrix.ubuntu_version }} | ||
# compiler: ${{ matrix.compiler }} |