Skip to content

Commit

Permalink
Update tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
maliasadi committed Apr 15, 2024
1 parent f090c59 commit 875df73
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 28 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/tests_gpu_cuda.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
name: Testing::Linux::x86_64::LGPU
on:
workflow_call:
secrets:
codecov_token:
description: The codecov token to use when uploading coverage files
required: true
inputs:
lightning-version:
type: string
Expand Down Expand Up @@ -347,7 +343,7 @@ jobs:
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
token: ${{ secrets.codecov_token }}
token: ${{ secrets.CODECOV_TOKEN }}

upload-to-codecov-linux-cpp:
needs: [cpptestswithLGPU]
Expand All @@ -366,7 +362,7 @@ jobs:
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
token: ${{ secrets.codecov_token }}
token: ${{ secrets.CODECOV_TOKEN }}

- name: Cleanup
if: always()
Expand Down
8 changes: 2 additions & 6 deletions .github/workflows/tests_linux.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
name: Testing (Linux)
on:
workflow_call:
secrets:
codecov_token:
description: The codecov token to use when uploading coverage files
required: true
inputs:
lightning-version:
type: string
Expand Down Expand Up @@ -629,7 +625,7 @@ jobs:
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
token: ${{ secrets.codecov_token }}
token: ${{ secrets.CODECOV_TOKEN }}

upload-to-codecov-linux-cpp:
needs: [cpptests, cpptestswithOpenBLAS, cpptestswithKokkos]
Expand All @@ -648,7 +644,7 @@ jobs:
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
token: ${{ secrets.codecov_token }}
token: ${{ secrets.CODECOV_TOKEN }}

cpptestsWithMultipleBackends:
# Device-specific tests are performed for both. Device-agnostic tests default to LightningQubit.
Expand Down
8 changes: 2 additions & 6 deletions .github/workflows/tests_linux_x86_mpi_gpu.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
name: Tests::Linux::x86_64::LGPU::MPI
on:
workflow_call:
secrets:
codecov_token:
description: The codecov token to use when uploading coverage files
required: true
inputs:
lightning-version:
type: string
Expand Down Expand Up @@ -305,7 +301,7 @@ jobs:
with:
fail_ci_if_error: true
verbose: true
token: ${{ secrets.codecov_token }}
token: ${{ secrets.CODECOV_TOKEN }}

- name: Cleanup
if: always()
Expand All @@ -332,7 +328,7 @@ jobs:
with:
fail_ci_if_error: true
verbose: true
token: ${{ secrets.codecov_token }}
token: ${{ secrets.CODECOV_TOKEN }}

- name: Cleanup
if: always()
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/tests_windows.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
name: Testing (Windows)
on:
workflow_call:
secrets:
codecov_token:
description: The codecov token to use when uploading coverage files
required: true
inputs:
lightning-version:
type: string
Expand Down Expand Up @@ -269,4 +265,4 @@ jobs:
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
token: ${{ secrets.codecov_token }}
token: ${{ secrets.CODECOV_TOKEN }}
6 changes: 1 addition & 5 deletions .github/workflows/tests_without_binary.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
name: Testing without binary
on:
workflow_call:
secrets:
codecov_token:
description: The codecov token to use when uploading coverage files
required: true
inputs:
lightning-version:
type: string
Expand Down Expand Up @@ -117,4 +113,4 @@ jobs:
with:
files: ./main/coverage.xml
fail_ci_if_error: true
token: ${{ secrets.codecov_token }}
token: ${{ secrets.CODECOV_TOKEN }}

0 comments on commit 875df73

Please sign in to comment.