Skip to content

Commit

Permalink
Try output file argument
Browse files Browse the repository at this point in the history
  • Loading branch information
LivInTheLookingGlass committed Jul 15, 2024
1 parent 57f96b6 commit e6d0812
Show file tree
Hide file tree
Showing 8 changed files with 39 additions and 7 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/c.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on:
schedule:
- cron: "0 0 1 * *"

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
c-lint:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@
#
name: "CodeQL"

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

on:
push:
branches: [ "master" ]
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/csharp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on:
schedule:
- cron: "0 0 1 * *"

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
csharp:
strategy:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/eslint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ on:
schedule:
- cron: '27 15 * * 5'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
eslint:
name: Run eslint scanning
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/javascript.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on:
schedule:
- cron: "0 0 1 * *"

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
javascript:
strategy:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on:
schedule:
- cron: "0 0 1 * *"

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
# python-lint:
# runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/rust-clippy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ on:
schedule:
- cron: '32 21 * * 4'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
rust-clippy-analyze:
name: Run rust-clippy analyzing
Expand Down
18 changes: 11 additions & 7 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ on:
env:
CARGO_TERM_COLOR: always

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build_and_test:
name: Rust
Expand Down Expand Up @@ -69,14 +73,14 @@ jobs:

- name: rust-grcov
if: ${{ matrix.toolchain == 'nightly' }}
run: cargo install grcov && grcov rust --path-mapping rust/mapping.json
run: cargo install grcov && grcov rust --path-mapping rust/mapping.json -o lcov.txt

- name: Setup upterm session
uses: lhotari/action-upterm@v1
if: ${{ matrix.toolchain == 'nightly' }}
with:
wait-timeout-minutes: 5
limit-access-to-actor: true
# - name: Setup upterm session
# uses: lhotari/action-upterm@v1
# if: ${{ matrix.toolchain == 'nightly' }}
# with:
# wait-timeout-minutes: 5
# limit-access-to-actor: true

- name: Upload coverage reports to Codecov
if: ${{ matrix.toolchain == 'nightly' }}
Expand Down

0 comments on commit e6d0812

Please sign in to comment.