Skip to content

Commit

Permalink
restored all jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
levb committed Apr 23, 2024
1 parent e854260 commit 6f67ecc
Show file tree
Hide file tree
Showing 3 changed files with 65 additions and 73 deletions.
14 changes: 3 additions & 11 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,14 +171,6 @@ jobs:
if: inputs.coverage == 'ON'
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true # optional (default = false)
token: ${{ secrets.CODECOV_TOKEN }} # required
verbose: true # optional (default = false)


# env:
# CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
# run: |
# pip install codecov-cli
# /home/ubuntu/.local/bin/codecovcli --help
# # ./codecov -Q 'issue1011' -C ${{ github.sha }} -Z -g --ga '-lp' --gi 'examples/**' --gi 'src/win/**' --gi 'src/unix/**' --gi 'src/stan/protocol.pb-c.c'
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
# verbose: true
80 changes: 40 additions & 40 deletions .github/workflows/on-pr-debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@ defaults:
shell: bash --noprofile --norc -x -eo pipefail {0}

jobs:
# default:
# name: "DefaultD"
# strategy:
# fail-fast: false
# matrix:
# compiler: [gcc, clang]
# uses: ./.github/workflows/build-test.yml
# with:
# compiler: ${{ matrix.compiler }}
# server_version: main
# type: Debug
# repeat: 3
default:
name: "DefaultD"
strategy:
fail-fast: false
matrix:
compiler: [gcc, clang]
uses: ./.github/workflows/build-test.yml
with:
compiler: ${{ matrix.compiler }}
server_version: main
type: Debug
repeat: 3

coverage:
name: "Coverage"
Expand All @@ -33,34 +33,34 @@ jobs:
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

# sanitize-addr:
# name: "Sanitize address"
# uses: ./.github/workflows/build-test.yml
# with:
# sanitize: address
# server_version: main
# type: Debug
sanitize-addr:
name: "Sanitize address"
uses: ./.github/workflows/build-test.yml
with:
sanitize: address
server_version: main
type: Debug

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

# san-addr:
# name: "Sanitize address (lib_write_deadline)"
# uses: ./.github/workflows/build-test.yml
# with:
# sanitize: address
# server_version: main
# lib_write_deadline: ON
san-addr:
name: "Sanitize address (lib_write_deadline)"
uses: ./.github/workflows/build-test.yml
with:
sanitize: address
server_version: main
lib_write_deadline: ON

# san-thread:
# name: "Sanitize thread"
# uses: ./.github/workflows/build-test.yml
# with:
# sanitize: thread
# server_version: main
# repeat: 3
san-thread:
name: "Sanitize thread"
uses: ./.github/workflows/build-test.yml
with:
sanitize: thread
server_version: main
repeat: 3
44 changes: 22 additions & 22 deletions .github/workflows/on-push-release.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
# 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: "DefaultR"
# 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 }}
# repeat: 3
jobs:
quick:
name: "DefaultR"
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 }}
repeat: 3

0 comments on commit 6f67ecc

Please sign in to comment.