Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Vipinofficial11 committed Mar 24, 2023
1 parent abe93d7 commit 41179be
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ on:

jobs:
build:
runs-on: k8s-runner-build
runs-on: self-hosted

if: ${{ github.event.workflow_run.conclusion != 'skipped' }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ on:

jobs:
build:
runs-on: k8s-runner-e2e
runs-on: self-hosted

if: ${{ github.event.workflow_run.conclusion != 'skipped' }}

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ name: Trigger build

on:
push:
branches: [ develop, release/** ]
branches: [ Sanity-Testing ]
pull_request:
branches: [ develop, release/** ]
branches: [ Sanity-Testing ]
types: [ opened, synchronize, reopened, labeled ]
workflow_dispatch:

jobs:
trigger:
runs-on: k8s-runner-e2e
runs-on: self-hosted

# We allow builds:
# 1) When triggered manually
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ public static void verifyIfRecordCreatedInSinkForMultipleObjectsAreCorrect(Strin
expectedOutput.add(line);
}
}

// Testing this branch on github Actions.
List<String> bigQueryDatasetTables = new ArrayList<>();
TableResult tablesSchema = getTableNamesFromDataSet(dataset);
tablesSchema.iterateAll().forEach(value -> bigQueryDatasetTables.add(value.get(0).getValue().toString()));
Expand Down

0 comments on commit 41179be

Please sign in to comment.