ci(test): remove environment identifier (#2003)

Moved Azure OIDC to use only Pull Request subject, this gets rid of the
noise it creates in the PR’s
This commit is contained in:
Trevor Bossert 2023-11-03 16:10:22 -07:00 committed by GitHub
parent 9fd77a5232
commit 4db04b7a22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 42 deletions

View File

@ -313,7 +313,6 @@ jobs:
test_ingest_src:
environment: ci
strategy:
matrix:
python-version: ["3.8","3.9","3.10","3.11"]
@ -400,7 +399,6 @@ jobs:
test_ingest_dest:
environment: ci
strategy:
matrix:
python-version: ["3.8","3.9","3.10","3.11"]

View File

@ -12,31 +12,6 @@ permissions:
contents: read
jobs:
test_logins:
runs-on: ubuntu-latest
environment: ci
steps:
- uses: 'actions/checkout@v4'
- name: 'Google Cloud Auth'
uses: 'google-github-actions/auth@v1'
id: gauth
with:
workload_identity_provider: ${{ secrets.GCP_WORKLOAD_IDENTITY_PROVIDER }}
service_account: ${{ secrets.GCP_SERVICE_ACCOUNT }}
- name: 'Set up Cloud SDK'
uses: 'google-github-actions/setup-gcloud@v1'
- name: 'run gcloud command'
run: |-
gcloud projects list
- name: 'Az CLI login'
uses: azure/login@v1
with:
client-id: ${{ secrets.AZURE_CLIENT_ID }}
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
- name: 'azure test command'
run: |-
az account show
setup:
runs-on: ubuntu-latest-m
env:
@ -100,7 +75,6 @@ jobs:
make install-all-ingest
update-fixtures-and-pr:
environment: ci
runs-on: ubuntu-latest-m
env:
NLTK_DATA: ${{ github.workspace }}/nltk_data
@ -108,20 +82,6 @@ jobs:
steps:
# actions/checkout MUST come before auth
- uses: 'actions/checkout@v4'
- name: 'Google Cloud Auth'
uses: 'google-github-actions/auth@v1'
with:
workload_identity_provider: ${{ secrets.GCP_WORKLOAD_IDENTITY_PROVIDER }}
service_account: ${{ secrets.GCP_SERVICE_ACCOUNT }}
create_credentials_file: true
- name: 'Set up Cloud SDK'
uses: 'google-github-actions/setup-gcloud@v1'
- name: 'Az CLI login'
uses: azure/login@v1
with:
client-id: ${{ secrets.AZURE_CLIENT_ID }}
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with: