Skip to content

Commit

Permalink
wip6: rename jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
levb committed Apr 20, 2024
1 parent 2678006 commit de89dc6
Showing 1 changed file with 19 additions and 25 deletions.
44 changes: 19 additions & 25 deletions .github/workflows/build-all-debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,9 @@ jobs:
name: "Coverage: ubuntu:latest gcc nats:main"
uses: ./.github/workflows/build-test.yml
with:
compiler: gcc
coverage: ON
server_version: main
type: Debug
secrets:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

clang:
name: "All: ubuntu:latest clang nats:main"
Expand All @@ -35,36 +31,34 @@ jobs:
compiler: clang
server_version: main
type: Debug
secrets:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

sanitize-addr:
name: "address: ubuntu:latest gcc nats:main"
uses: ./.github/workflows/build-test.yml
with:
sanitize: address
server_version: main
type: Debug

sanitize-addr-lib-msg-delivery:
name: "address (lib_msg_delivery): ubuntu:latest gcc nats:main"
uses: ./.github/workflows/build-test.yml
with:
sanitize: address
server_version: main
lib_msg_delivery: ON

san-addr:
# name: "address: ubuntu:latest gcc nats:main"
name: "address${{ if matrix.lib_msg_delivery == 'ON' }} lib_msg_delivery${{ endif }}${{ if matrix.lib_write_deadline == 'ON' }} lib_write_deadline${{ endif }}: ubuntu:latest gcc nats:main"
strategy:
matrix:
lib_msg_delivery: [ON, OFF]
lib_write_deadline: [ON, OFF]
exclude:
- lib_msg_delivery: ON
lib_write_deadline: ON
name: "address (lib_write_deadline): ubuntu:latest gcc nats:main"
uses: ./.github/workflows/build-test.yml
with:
sanitize: address
server_version: main
lib_msg_delivery: ${{ matrix.lib_msg_delivery }}
lib_write_deadline: ${{ matrix.lib_write_deadline }}
secrets:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
lib_write_deadline: ON

san-thread:
uses: ./.github/workflows/build-test.yml
name: "Sanitize thread: ubuntu:latest gcc nats:main"
name: "thread: ubuntu:latest gcc nats:main"
with:
sanitize: thread
server_version: main
secrets:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

0 comments on commit de89dc6

Please sign in to comment.