Skip to content

Commit

Permalink
attempt another rename
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyCBakerPhD committed May 30, 2024
1 parent 98d6af2 commit 58de00d
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 26 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/daily_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,26 +11,27 @@ concurrency:

jobs:

testing_dev:
DevTests:
uses: ./.github/workflows/testing_dev.yml
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

testing_dev_with_live_services:
LiveServices:
uses: ./.github/workflows/testing_dev_with_live_services.yml
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
DANDI_STAGING_API_KEY: ${{ secrets.DANDI_STAGING_API_KEY }}

testing_flask_build_and_dist:
BuildTests:
uses: ./.github/workflows/testing_flask_build_and_dist.yml

example_data_cache:
ExampleDataCache:
uses: ./.github/workflows/example_data_cache.yml
secrets:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
S3_GIN_BUCKET: ${{ secrets.S3_GIN_BUCKET }}

testing_pipelines:
needs: example_data_cache
ExampleDataTests:
needs: Data
uses: ./.github/workflows/testing_pipelines.yml
10 changes: 5 additions & 5 deletions .github/workflows/deploy_tests_on_pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,27 +9,27 @@ concurrency:

jobs:

Dev:
DevTests:
uses: ./.github/workflows/testing_dev.yml
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

Live:
LiveServices:
uses: ./.github/workflows/testing_dev_with_live_services.yml
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
DANDI_STAGING_API_KEY: ${{ secrets.DANDI_STAGING_API_KEY }}

Build:
BuildTests:
uses: ./.github/workflows/testing_flask_build_and_dist.yml

Data:
ExampleDataCache:
uses: ./.github/workflows/example_data_cache.yml
secrets:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
S3_GIN_BUCKET: ${{ secrets.S3_GIN_BUCKET }}

Pipelines:
ExampleDataTests:
needs: Data
uses: ./.github/workflows/testing_pipelines.yml
6 changes: 3 additions & 3 deletions .github/workflows/example_data_cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ on:
jobs:

run:
# Will read on PR dashboard as 'Deploy / Data / {os} cache'
# Will read on PR dashboard as 'Deploy / ExampleDataCache / {os}'
# Action dashboard identified by 'Deploy'
# Requirement settings identified as '{os} cache'
name: ${{ matrix.os }} cache
# Requirement settings identified as 'ExampleDataCache / {os}'
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/testing_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ on:
jobs:

run:
# Will read on PR dashboard as 'Deploy / Dev / {os} tests'
# Will read on PR dashboard as 'Deploy / DevTests / {os}'
# Action dashboard identified by 'Deploy'
# Requirement settings identified as '{os} tests'
name: ${{ matrix.os }} tests # Will read on PR dashboard as 'Deploy / Dev / {os} tests'
# Requirement settings identified as 'DevTests / {os}'
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
defaults:
run:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/testing_dev_with_live_services.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ on:
jobs:

run:
# Will read on PR dashboard as 'Deploy / Live / {os} services'
# Will read on PR dashboard as 'Deploy / LiveServices / {os}'
# Action dashboard identified by 'Deploy'
# Requirement settings identified as '{os} services'
name: ${{ matrix.os }} services
# Requirement settings identified as 'LiveServices / {os}'
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
defaults:
run:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/testing_flask_build_and_dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ on:
jobs:

run:
# Will read on PR dashboard as 'Deploy / Build / {os} flask'
# Will read on PR dashboard as 'Deploy / BuildTests / {os}'
# Action dashboard identified by 'Deploy'
# Requirement settings identified as '{os} flask'
name: ${{ matrix.os }} flask
# Requirement settings identified as 'BuildTests / {os}'
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
defaults:
run:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/testing_pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ on:
jobs:

run:
# Will read on PR dashboard as 'Deploy / Pipelines / {os} data'
# Will read on PR dashboard as 'Deploy / ExampleDataTests / {os}'
# Action dashboard identified by 'Deploy'
# Requirement settings identified as '{os} data'
name: ${{ matrix.os }} data
# Requirement settings identified as 'ExampleDataTests / {os}'
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
defaults:
run:
Expand Down

0 comments on commit 58de00d

Please sign in to comment.