Skip to content

Commit

Permalink
consistent names for all jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
aka-bo committed Jul 31, 2024
1 parent e9dad74 commit ad5a195
Show file tree
Hide file tree
Showing 15 changed files with 26 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/cross-language-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ env:

jobs:
init-defaults:
name: Init Defaults
runs-on: ubuntu-latest
outputs:
go-version: ${{ steps.init.outputs.go-version }}
Expand All @@ -67,6 +68,7 @@ jobs:
echo "java-version=${java_version}" >> $GITHUB_OUTPUT
server-samples:
name: 'Server Samples: Build & Test'
runs-on: ubuntu-latest
needs: init-defaults
steps:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/csharp-appencryption-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ env:

jobs:
build:
name: Build
runs-on: ubuntu-latest
outputs:
artifact: ${{ steps.upload-artifact.outputs.artifact_id }}
Expand Down Expand Up @@ -72,6 +73,7 @@ jobs:
csharp/AppEncryption/AppEncryption.IntegrationTests/obj/**
test:
name: Run Unit Tests
runs-on: ubuntu-latest
needs: build
container:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/csharp-appencryption-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ env:

jobs:
integration-test:
name: 'Reference App: Build'
name: 'Run Integration Tests'
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/dotnet/sdk:6.0
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/csharp-logging-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ permissions:

jobs:
logging-main:
name: 'Build & Test'
runs-on: ubuntu-latest
outputs:
artifact: ${{ steps.upload-artifact.outputs.artifact_id }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/csharp-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
uses: ./.github/workflows/csharp-appencryption-integration.yml

reference-app:
name: 'Reference App: Build'
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/dotnet/sdk:6.0
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/csharp-securememory-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ concurrency:

jobs:
build:
name: Build
runs-on: ubuntu-latest
outputs:
artifact: ${{ steps.upload-artifact.outputs.artifact_id }}
Expand Down Expand Up @@ -58,6 +59,7 @@ jobs:
csharp/SecureMemory/SecureMemory.Tests/obj/**
test:
name: Run Unit Tests
runs-on: ubuntu-latest
needs: build
container:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/go-appencryption-bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ permissions:

jobs:
bench:
name: Run Benchmarks
runs-on: ubuntu-latest
steps:
- name: Checkout repository
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/go-appencryption-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ concurrency:

jobs:
init-defaults:
name: Init Defaults
runs-on: ubuntu-latest
outputs:
go-version: ${{ steps.init.outputs.go-version }}
Expand All @@ -39,6 +40,7 @@ jobs:
echo "go-version=${go_version}" >> $GITHUB_OUTPUT
build:
name: Build
runs-on: ubuntu-latest
needs: init-defaults
steps:
Expand All @@ -62,6 +64,7 @@ jobs:
./scripts/build.sh
test:
name: Run Unit Tests
runs-on: ubuntu-latest
needs: init-defaults
steps:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/go-appencryption-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ env:

jobs:
integration-test:
name: 'Run Integration Tests'
runs-on: ubuntu-latest
container:
image: golang:latest
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/go-securememory-bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ permissions:

jobs:
bench:
name: 'Run Benchmarks'
runs-on: ubuntu-latest
steps:
- name: Checkout repository
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/go-securememory-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ concurrency:

jobs:
init-defaults:
name: Init Defaults
runs-on: ubuntu-latest
outputs:
go-version: ${{ steps.init.outputs.go-version }}
Expand All @@ -39,6 +40,7 @@ jobs:
echo "go-version=${go_version}" >> $GITHUB_OUTPUT
build:
name: Build
runs-on: ubuntu-latest
needs: init-defaults
steps:
Expand All @@ -62,6 +64,7 @@ jobs:
./scripts/build.sh
test:
name: Run Unit Tests
runs-on: ubuntu-latest
needs: [build, init-defaults]
steps:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/java-appencryption-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ concurrency:

jobs:
init-defaults:
name: Init Defaults
runs-on: ubuntu-latest
outputs:
java-version: ${{ steps.init-java.outputs.java-version }}
Expand All @@ -39,6 +40,7 @@ jobs:
echo "java-version=${java_version}" >> $GITHUB_OUTPUT
build:
name: Build
runs-on: ubuntu-latest
needs: init-defaults
steps:
Expand All @@ -60,6 +62,7 @@ jobs:
./scripts/build.sh
test:
name: Run Unit Tests
runs-on: ubuntu-latest
needs: [build, init-defaults]
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/java-appencryption-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ env:

jobs:
integration-test:
name: 'Reference App: Build'
name: 'Run Integration Tests'
runs-on: ubuntu-latest
steps:
- name: Checkout repository
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/java-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
java-version: '17'

reference-app:
name: 'Reference App: Build'
runs-on: ubuntu-latest
steps:
- name: Checkout repository
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/java-securememory-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ concurrency:

jobs:
init-defaults:
name: Init Defaults
runs-on: ubuntu-latest
outputs:
java-version: ${{ steps.init-java.outputs.java-version }}
Expand All @@ -40,6 +41,7 @@ jobs:
echo "java-version=${java_version}" >> $GITHUB_OUTPUT
build:
name: Build
runs-on: ubuntu-latest
needs: init-defaults
steps:
Expand All @@ -61,6 +63,7 @@ jobs:
./scripts/build.sh
test:
name: Run Unit Tests
runs-on: ubuntu-latest
needs: [build, init-defaults]
steps:
Expand Down

0 comments on commit ad5a195

Please sign in to comment.