Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

disable bad test #330

Merged
merged 1 commit into from
Dec 8, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
76 changes: 38 additions & 38 deletions .github/workflows/release_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,41 +81,41 @@ jobs:
run: |
./release_tests/sqs_to_sqs/test.sh
multi_cloud_release_tests:
runs-on: ubuntu-latest
timeout-minutes: 30
permissions:
contents: write
id-token: write
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
GCP_PROJECT: ${{ secrets.GCP_PROJECT }}
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev]
- name: Setup GCP Auth
uses: "google-github-actions/auth@v1"
with:
# NOTE: We use a key file here because changing the quota project
# doesn't work with WIF.
credentials_json: ${{ secrets.GCP_SA_JSON_KEY }}

- name: "Set up Cloud SDK"
uses: "google-github-actions/setup-gcloud@v1"

- name: "Set up Pulumi"
run: |
curl -fsSL https://get.pulumi.com | sh
- name: Run S3FileStream -> BigQuery Release Test
run: |
./release_tests/s3_to_bigquery/test.sh
# multi_cloud_release_tests:
# runs-on: ubuntu-latest
# timeout-minutes: 30
# permissions:
# contents: write
# id-token: write
# env:
# AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
# AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
# GCP_PROJECT: ${{ secrets.GCP_PROJECT }}
# steps:
# - uses: actions/checkout@v3
# - name: Set up Python 3.10
# uses: actions/setup-python@v4
# with:
# python-version: "3.10"
# - name: Install dependencies
# run: |
# python -m pip install --upgrade pip
# pip install .[dev]

# - name: Setup GCP Auth
# uses: "google-github-actions/auth@v1"
# with:
# # NOTE: We use a key file here because changing the quota project
# # doesn't work with WIF.
# credentials_json: ${{ secrets.GCP_SA_JSON_KEY }}

# - name: "Set up Cloud SDK"
# uses: "google-github-actions/setup-gcloud@v1"

# - name: "Set up Pulumi"
# run: |
# curl -fsSL https://get.pulumi.com | sh

# - name: Run S3FileStream -> BigQuery Release Test
# run: |
# ./release_tests/s3_to_bigquery/test.sh
Loading