Logging fix -- make root cause more clear if label job has misaligned dates #666
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Spark module on scala 2.13 | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'spark/**' | |
- '.github/workflows/test_scala_2_13_spark.yaml' | |
pull_request: | |
branches: | |
- main | |
paths: | |
- 'spark/**' | |
- '.github/workflows/test_scala_2_13_spark.yaml' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
spark_tests: | |
runs-on: ubuntu-8_cores-32_gb | |
container: | |
image: ghcr.io/${{ github.repository }}-ci:latest | |
credentials: | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
defaults: | |
run: | |
working-directory: ${{ github.workspace }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Bazel cache credentials | |
run: | | |
echo "${{ secrets.BAZEL_CACHE_CREDENTIALS }}" | base64 -d > bazel-cache-key.json | |
- name: Run Spark tests | |
run: | | |
bazel test \ | |
--config=scala_2.13 \ | |
--remote_cache=https://storage.googleapis.com/zipline-bazel-cache \ | |
--google_credentials=bazel-cache-key.json \ | |
--test_env=JAVA_OPTS="-Xmx8G -Xms2G" \ | |
//spark:tests | |
batch_tests: | |
runs-on: ubuntu-8_cores-32_gb | |
container: | |
image: ghcr.io/${{ github.repository }}-ci:latest | |
credentials: | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
defaults: | |
run: | |
working-directory: ${{ github.workspace }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Bazel cache credentials | |
run: | | |
echo "${{ secrets.BAZEL_CACHE_CREDENTIALS }}" | base64 -d > bazel-cache-key.json | |
- name: Run Batch tests | |
run: | | |
bazel test \ | |
--config=scala_2.13 \ | |
--remote_cache=https://storage.googleapis.com/zipline-bazel-cache \ | |
--google_credentials=bazel-cache-key.json \ | |
--test_env=JAVA_OPTS="-Xmx8G -Xms2G" \ | |
//spark:batch_test | |
fetcher_tests: | |
runs-on: ubuntu-8_cores-32_gb | |
container: | |
image: ghcr.io/${{ github.repository }}-ci:latest | |
credentials: | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
defaults: | |
run: | |
working-directory: ${{ github.workspace }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Bazel cache credentials | |
run: | | |
echo "${{ secrets.BAZEL_CACHE_CREDENTIALS }}" | base64 -d > bazel-cache-key.json | |
- name: Run Fetcher tests | |
run: | | |
bazel test \ | |
--config=scala_2.13 \ | |
--remote_cache=https://storage.googleapis.com/zipline-bazel-cache \ | |
--google_credentials=bazel-cache-key.json \ | |
--test_env=JAVA_OPTS="-Xmx16G -Xms8G" \ | |
//spark:fetcher_test | |
join_tests: | |
runs-on: ubuntu-8_cores-32_gb | |
container: | |
image: ghcr.io/${{ github.repository }}-ci:latest | |
credentials: | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
defaults: | |
run: | |
working-directory: ${{ github.workspace }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Bazel cache credentials | |
run: | | |
echo "${{ secrets.BAZEL_CACHE_CREDENTIALS }}" | base64 -d > bazel-cache-key.json | |
- name: Run Join tests | |
run: | | |
bazel test \ | |
--config=scala_2.13 \ | |
--remote_cache=https://storage.googleapis.com/zipline-bazel-cache \ | |
--google_credentials=bazel-cache-key.json \ | |
--test_env=JAVA_OPTS="-Xmx16G -Xms8G" \ | |
//spark:join_test | |
groupby_tests: | |
runs-on: ubuntu-8_cores-32_gb | |
container: | |
image: ghcr.io/${{ github.repository }}-ci:latest | |
credentials: | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
defaults: | |
run: | |
working-directory: ${{ github.workspace }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Bazel cache credentials | |
run: | | |
echo "${{ secrets.BAZEL_CACHE_CREDENTIALS }}" | base64 -d > bazel-cache-key.json | |
- name: Run GroupBy tests | |
run: | | |
bazel test \ | |
--config=scala_2.13 \ | |
--remote_cache=https://storage.googleapis.com/zipline-bazel-cache \ | |
--google_credentials=bazel-cache-key.json \ | |
--test_env=JAVA_OPTS="-Xmx16G -Xms8G" \ | |
//spark:groupby_test | |
analyzer_tests: | |
runs-on: ubuntu-8_cores-32_gb | |
container: | |
image: ghcr.io/${{ github.repository }}-ci:latest | |
credentials: | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
defaults: | |
run: | |
working-directory: ${{ github.workspace }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Bazel cache credentials | |
run: | | |
echo "${{ secrets.BAZEL_CACHE_CREDENTIALS }}" | base64 -d > bazel-cache-key.json | |
- name: Run Analyzer tests | |
run: | | |
bazel test \ | |
--config=scala_2.13 \ | |
--remote_cache=https://storage.googleapis.com/zipline-bazel-cache \ | |
--google_credentials=bazel-cache-key.json \ | |
--test_env=JAVA_OPTS="-Xmx16G -Xms8G" \ | |
//spark:analyzer_test | |
streaming_tests: | |
runs-on: ubuntu-8_cores-32_gb | |
container: | |
image: ghcr.io/${{ github.repository }}-ci:latest | |
credentials: | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
defaults: | |
run: | |
working-directory: ${{ github.workspace }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Bazel cache credentials | |
run: | | |
echo "${{ secrets.BAZEL_CACHE_CREDENTIALS }}" | base64 -d > bazel-cache-key.json | |
- name: Run Streaming tests | |
run: | | |
bazel test \ | |
--config=scala_2.13 \ | |
--remote_cache=https://storage.googleapis.com/zipline-bazel-cache \ | |
--google_credentials=bazel-cache-key.json \ | |
--test_env=JAVA_OPTS="-Xmx16G -Xms8G" \ | |
//spark:streaming_test |