|
18 | 18 | TUVA_BIGQUERY_TOKEN: ${{ secrets.TUVA_BIGQUERY_TOKEN }} |
19 | 19 | TUVA_BIGQUERY_PROJECT: ${{ secrets.TUVA_BIGQUERY_PROJECT }} |
20 | 20 | ####### Fabric |
| 21 | + DBT_FABRIC_CI_HOST: ${{ secrets.DBT_FABRIC_CI_HOST }} |
21 | 22 | DBT_FABRIC_SERVICE_PRINCIPAL_ID: ${{ secrets.DBT_FABRIC_SERVICE_PRINCIPAL_ID }} |
22 | 23 | DBT_FABRIC_SERVICE_PRINCIPAL_SECRET: ${{ secrets.DBT_FABRIC_SERVICE_PRINCIPAL_SECRET }} |
23 | 24 | DBT_FABRIC_TENANT_ID: ${{ secrets.DBT_FABRIC_TENANT_ID }} |
24 | 25 | DBT_FABRIC_CI_DATABASE: ${{ secrets.DBT_FABRIC_CI_DATABASE }} |
25 | 26 | DBT_FABRIC_CI_SCHEMA: ${{ secrets.DBT_FABRIC_CI_SCHEMA }} |
26 | 27 | ####### Redshift |
27 | 28 | DBT_REDSHIFT_CI_HOST: ${{ secrets.DBT_REDSHIFT_CI_HOST }} |
28 | | - DBT_REDSHIFT_CI_HOST_MIGRATION_TESTING: ${{ secrets.DBT_REDSHIFT_CI_HOST_MIGRATION_TESTING }} |
29 | 29 | DBT_REDSHIFT_CI_USER: ${{ secrets.DBT_REDSHIFT_CI_USER }} |
30 | 30 | DBT_REDSHIFT_CI_PASSWORD: ${{ secrets.DBT_REDSHIFT_CI_PASSWORD }} |
31 | | - DBT_REDSHIFT_2_CI_PASSWORD: ${{ secrets.DBT_REDSHIFT_2_CI_PASSWORD }} |
32 | 31 | DBT_REDSHIFT_CI_PORT: ${{ secrets.DBT_REDSHIFT_CI_PORT }} |
33 | | - ####### Snowflake |
| 32 | +####### Snowflake |
34 | 33 | DBT_TUVA_SNOWFLAKE_ACCOUNT: ${{ secrets.DBT_TUVA_SNOWFLAKE_ACCOUNT }} |
35 | 34 | DBT_TUVA_CI_DATABASE: ${{ secrets.DBT_TUVA_CI_DATABASE }} |
36 | 35 | DBT_SNOWFLAKE_CI_PASSWORD: ${{ secrets.DBT_SNOWFLAKE_CI_PASSWORD }} |
@@ -186,7 +185,7 @@ jobs: |
186 | 185 |
|
187 | 186 | - name: dbt-build |
188 | 187 | run: | |
189 | | - dbt build --full-refresh --profiles-dir ./profiles/bigquery --vars '{"input_database": "dev-ci-testing","input_schema": "input_layer","clinical_enabled": true,"claims_enabled": true,"fhir_preprocessing_enabled": true}' |
| 188 | + dbt build --full-refresh --profiles-dir ./profiles/bigquery --vars '{"use_synthetic_data": true,"clinical_enabled": true,"claims_enabled": true,"fhir_preprocessing_enabled": true}' |
190 | 189 | working-directory: ci_testing |
191 | 190 |
|
192 | 191 | - name: Get the result |
@@ -242,10 +241,11 @@ jobs: |
242 | 241 | - name: dbt-debug |
243 | 242 | run: dbt debug --profiles-dir ./profiles/bigquery |
244 | 243 | working-directory: ci_testing |
245 | | - #Changed to compile to save processing time |
| 244 | + |
| 245 | + # Changed to compile to save processing time |
246 | 246 | - name: dbt-compile |
247 | 247 | run: | |
248 | | - dbt compile --profiles-dir ./profiles/bigquery --vars '{"input_database": "dev-ci-testing","input_schema": "input_layer","claims_enabled": true}' |
| 248 | + dbt compile --profiles-dir ./profiles/bigquery --vars '{"use_synthetic_data": true,"claims_enabled": true}' |
249 | 249 | working-directory: ci_testing |
250 | 250 |
|
251 | 251 | - name: Get the result |
@@ -301,10 +301,11 @@ jobs: |
301 | 301 | - name: dbt-debug |
302 | 302 | run: dbt debug --profiles-dir ./profiles/bigquery |
303 | 303 | working-directory: ci_testing |
304 | | - #Changed to compile to save processing time |
| 304 | + |
| 305 | + # Changed to compile to save processing time |
305 | 306 | - name: dbt-compile |
306 | 307 | run: | |
307 | | - dbt compile --profiles-dir ./profiles/bigquery --vars '{"input_database": "dev-ci-testing","input_schema": "input_layer","claims_enabled": true,"provider_attribution_enabled":true}' |
| 308 | + dbt compile --profiles-dir ./profiles/bigquery --vars '{"use_synthetic_data": true,"claims_enabled": true,"provider_attribution_enabled":true}' |
308 | 309 | working-directory: ci_testing |
309 | 310 |
|
310 | 311 | - name: Get the result |
@@ -360,10 +361,11 @@ jobs: |
360 | 361 | - name: dbt-debug |
361 | 362 | run: dbt debug --profiles-dir ./profiles/bigquery |
362 | 363 | working-directory: ci_testing |
363 | | - #Changed to compile to save processing time |
| 364 | + |
| 365 | + # Changed to compile to save processing time |
364 | 366 | - name: dbt-compile |
365 | 367 | run: | |
366 | | - dbt compile --profiles-dir ./profiles/bigquery --vars '{"input_database": "dev-ci-testing","input_schema": "input_layer","clinical_enabled": true}' |
| 368 | + dbt compile --profiles-dir ./profiles/bigquery --vars '{"use_synthetic_data": true,"clinical_enabled": true}' |
367 | 369 | working-directory: ci_testing |
368 | 370 |
|
369 | 371 | - name: Get the result |
@@ -419,10 +421,11 @@ jobs: |
419 | 421 | - name: dbt-debug |
420 | 422 | run: dbt debug --profiles-dir ./profiles/bigquery |
421 | 423 | working-directory: ci_testing |
422 | | - #Changed to compile to save processing time |
| 424 | + |
| 425 | + # Changed to compile to save processing time |
423 | 426 | - name: dbt-compile |
424 | 427 | run: | |
425 | | - dbt compile --profiles-dir ./profiles/bigquery --vars '{"input_database": "dev-ci-testing","input_schema": "input_layer","provider_attribution": true}' |
| 428 | + dbt compile --profiles-dir ./profiles/bigquery --vars '{"use_synthetic_data": true,"provider_attribution": true}' |
426 | 429 | working-directory: ci_testing |
427 | 430 |
|
428 | 431 | - name: Get the result |
@@ -467,7 +470,7 @@ jobs: |
467 | 470 |
|
468 | 471 | - name: dbt-build |
469 | 472 | run: | |
470 | | - dbt build --full-refresh --profiles-dir ./profiles/fabric --vars '{"input_database":"dev_ci_testing","input_schema":"input_layer","clinical_enabled":true,"claims_enabled":true,"fhir_preprocessing_enabled":true}' |
| 473 | + dbt build --full-refresh --profiles-dir ./profiles/fabric --vars '{"use_synthetic_data": true,"clinical_enabled":true,"claims_enabled":true,"fhir_preprocessing_enabled":true}' |
471 | 474 | working-directory: ci_testing |
472 | 475 |
|
473 | 476 | - name: Get the result |
@@ -508,10 +511,11 @@ jobs: |
508 | 511 | - name: dbt-debug |
509 | 512 | run: dbt debug --profiles-dir ./profiles/fabric |
510 | 513 | working-directory: ci_testing |
511 | | - #Changed to compile to save processing time |
| 514 | + |
| 515 | + # Changed to compile to save processing time |
512 | 516 | - name: dbt-compile |
513 | 517 | run: | |
514 | | - dbt compile --profiles-dir ./profiles/fabric --vars '{"input_database":"dev_ci_testing","input_schema":"input_layer","claims_enabled":true}' |
| 518 | + dbt compile --profiles-dir ./profiles/fabric --vars '{"use_synthetic_data": true,"claims_enabled":true}' |
515 | 519 | working-directory: ci_testing |
516 | 520 |
|
517 | 521 | - name: Get the result |
@@ -552,10 +556,11 @@ jobs: |
552 | 556 | - name: dbt-debug |
553 | 557 | run: dbt debug --profiles-dir ./profiles/fabric |
554 | 558 | working-directory: ci_testing |
555 | | - #Changed to compile to save processing time |
| 559 | + |
| 560 | + # Changed to compile to save processing time |
556 | 561 | - name: dbt-compile |
557 | 562 | run: | |
558 | | - dbt compile --profiles-dir ./profiles/fabric --vars '{"input_database":"dev_ci_testing","input_schema":"input_layer","claims_enabled":true,"provider_attribution_enabled":true}' |
| 563 | + dbt compile --profiles-dir ./profiles/fabric --vars '{"use_synthetic_data": true,"claims_enabled":true,"provider_attribution_enabled":true}' |
559 | 564 | working-directory: ci_testing |
560 | 565 |
|
561 | 566 | - name: Get the result |
@@ -596,10 +601,11 @@ jobs: |
596 | 601 | - name: dbt-debug |
597 | 602 | run: dbt debug --profiles-dir ./profiles/fabric |
598 | 603 | working-directory: ci_testing |
599 | | - #Changed to compile to save processing time |
| 604 | + |
| 605 | + # Changed to compile to save processing time |
600 | 606 | - name: dbt-compile |
601 | 607 | run: | |
602 | | - dbt compile --profiles-dir ./profiles/fabric --vars '{"input_database":"dev_ci_testing","input_schema":"input_layer","clinical_enabled":true}' |
| 608 | + dbt compile --profiles-dir ./profiles/fabric --vars '{"use_synthetic_data": true,"clinical_enabled":true}' |
603 | 609 | working-directory: ci_testing |
604 | 610 |
|
605 | 611 | - name: Get the result |
@@ -640,10 +646,11 @@ jobs: |
640 | 646 | - name: dbt-debug |
641 | 647 | run: dbt debug --profiles-dir ./profiles/fabric |
642 | 648 | working-directory: ci_testing |
643 | | - #Changed to compile to save processing time |
| 649 | + |
| 650 | + # Changed to compile to save processing time |
644 | 651 | - name: dbt-compile |
645 | 652 | run: | |
646 | | - dbt compile --profiles-dir ./profiles/fabric --vars '{"input_database":"dev_ci_testing","input_schema":"input_layer","provider_attribution_enabled":true}' |
| 653 | + dbt compile --profiles-dir ./profiles/fabric --vars '{"use_synthetic_data": true,"provider_attribution_enabled":true}' |
647 | 654 | working-directory: ci_testing |
648 | 655 |
|
649 | 656 | - name: Get the result |
@@ -678,15 +685,16 @@ jobs: |
678 | 685 | - name: dbt-debug |
679 | 686 | run: dbt debug --profiles-dir ./profiles/redshift |
680 | 687 | working-directory: ci_testing |
681 | | - #Changed to seed then compile to speed up processing time |
| 688 | + |
| 689 | + # Changed to seed then compile to speed up processing time |
682 | 690 | - name: dbt-seed |
683 | 691 | run: | |
684 | | - dbt seed --full-refresh --profiles-dir ./profiles/redshift --vars '{"input_database":"dev_ci_testing","input_schema":"input_layer","clinical_enabled":true,"claims_enabled":true}' |
| 692 | + dbt seed --full-refresh --profiles-dir ./profiles/redshift --vars '{"use_synthetic_data": true,"clinical_enabled":true,"claims_enabled":true}' |
685 | 693 | working-directory: ci_testing |
686 | 694 |
|
687 | 695 | - name: dbt-compile |
688 | 696 | run: | |
689 | | - dbt compile --profiles-dir ./profiles/redshift --vars '{"input_database":"dev_ci_testing","input_schema":"input_layer","clinical_enabled":true,"claims_enabled":true,"fhir_preprocessing_enabled":true}' |
| 697 | + dbt compile --profiles-dir ./profiles/redshift --vars '{"use_synthetic_data": true,"clinical_enabled":true,"claims_enabled":true,"fhir_preprocessing_enabled":true}' |
690 | 698 | working-directory: ci_testing |
691 | 699 |
|
692 | 700 | - name: Get the result |
@@ -720,10 +728,11 @@ jobs: |
720 | 728 | - name: dbt-debug |
721 | 729 | run: dbt debug --profiles-dir ./profiles/redshift |
722 | 730 | working-directory: ci_testing |
723 | | - #Changed to compile to save processing time |
| 731 | + |
| 732 | + # Changed to compile to save processing time |
724 | 733 | - name: dbt-compile |
725 | 734 | run: | |
726 | | - dbt build --full-refresh --profiles-dir ./profiles/redshift --vars '{"input_database":"dev_ci_testing","input_schema":"input_layer","claims_enabled":true}' |
| 735 | + dbt build --full-refresh --profiles-dir ./profiles/redshift --vars '{"use_synthetic_data": true,"claims_enabled":true}' |
727 | 736 | working-directory: ci_testing |
728 | 737 |
|
729 | 738 | - name: Get the result |
@@ -757,10 +766,11 @@ jobs: |
757 | 766 | - name: dbt-debug |
758 | 767 | run: dbt debug --profiles-dir ./profiles/redshift |
759 | 768 | working-directory: ci_testing |
760 | | - #Changed to compile to save processing time |
| 769 | + |
| 770 | + # Changed to compile to save processing time |
761 | 771 | - name: dbt-compile |
762 | 772 | run: | |
763 | | - dbt compile --profiles-dir ./profiles/redshift --vars '{"input_database":"dev_ci_testing","input_schema":"input_layer","claims_enabled":true,"provider_attribution_enabled":true}' |
| 773 | + dbt compile --profiles-dir ./profiles/redshift --vars '{"use_synthetic_data": true,"claims_enabled":true,"provider_attribution_enabled":true}' |
764 | 774 | working-directory: ci_testing |
765 | 775 |
|
766 | 776 | - name: Get the result |
@@ -794,10 +804,11 @@ jobs: |
794 | 804 | - name: dbt-debug |
795 | 805 | run: dbt debug --profiles-dir ./profiles/redshift |
796 | 806 | working-directory: ci_testing |
797 | | - #Changed to compile to save processing time |
| 807 | + |
| 808 | + # Changed to compile to save processing time |
798 | 809 | - name: dbt-compile |
799 | 810 | run: | |
800 | | - dbt compile --profiles-dir ./profiles/redshift --vars '{"input_database":"dev_ci_testing","input_schema":"input_layer","clinical_enabled":true}' |
| 811 | + dbt compile --profiles-dir ./profiles/redshift --vars '{"use_synthetic_data": true,"clinical_enabled":true}' |
801 | 812 | working-directory: ci_testing |
802 | 813 |
|
803 | 814 | - name: Get the result |
@@ -831,10 +842,11 @@ jobs: |
831 | 842 | - name: dbt-debug |
832 | 843 | run: dbt debug --profiles-dir ./profiles/redshift |
833 | 844 | working-directory: ci_testing |
834 | | - #Changed to compile to save processing time |
| 845 | + |
| 846 | + # Changed to compile to save processing time |
835 | 847 | - name: dbt-compile |
836 | 848 | run: | |
837 | | - dbt compile --profiles-dir ./profiles/redshift --vars '{"input_database":"dev_ci_testing","input_schema":"input_layer","provider_attribution_enabled":true}' |
| 849 | + dbt compile --profiles-dir ./profiles/redshift --vars '{"use_synthetic_data": true,"provider_attribution_enabled":true}' |
838 | 850 | working-directory: ci_testing |
839 | 851 |
|
840 | 852 | - name: Get the result |
@@ -872,7 +884,7 @@ jobs: |
872 | 884 |
|
873 | 885 | - name: dbt-build |
874 | 886 | run: | |
875 | | - dbt build --full-refresh --profiles-dir ./profiles/snowflake --vars '{"input_database":"dev_ci_testing","input_schema":"input_layer","clinical_enabled":true,"claims_enabled":true,"fhir_preprocessing_enabled":true}' |
| 887 | + dbt build --full-refresh --profiles-dir ./profiles/snowflake --vars '{"use_synthetic_data": true,"clinical_enabled":true,"claims_enabled":true,"fhir_preprocessing_enabled":true}' |
876 | 888 | working-directory: ci_testing |
877 | 889 |
|
878 | 890 | - name: Get the result |
@@ -906,10 +918,11 @@ jobs: |
906 | 918 | - name: dbt-debug |
907 | 919 | run: dbt debug --profiles-dir ./profiles/snowflake |
908 | 920 | working-directory: ci_testing |
909 | | - #Changed to compile to save processing time |
| 921 | + |
| 922 | + # Changed to compile to save processing time |
910 | 923 | - name: dbt-compile |
911 | 924 | run: | |
912 | | - dbt compile --profiles-dir ./profiles/snowflake --vars '{"input_database":"dev_ci_testing","input_schema":"input_layer","claims_enabled":true}' |
| 925 | + dbt compile --profiles-dir ./profiles/snowflake --vars '{"use_synthetic_data": true,"claims_enabled":true}' |
913 | 926 | working-directory: ci_testing |
914 | 927 |
|
915 | 928 | - name: Get the result |
@@ -943,10 +956,11 @@ jobs: |
943 | 956 | - name: dbt-debug |
944 | 957 | run: dbt debug --profiles-dir ./profiles/snowflake |
945 | 958 | working-directory: ci_testing |
946 | | - #Changed to compile to save processing time |
| 959 | + |
| 960 | + # Changed to compile to save processing time |
947 | 961 | - name: dbt-compile |
948 | 962 | run: | |
949 | | - dbt compile --profiles-dir ./profiles/snowflake --vars '{"input_database":"dev_ci_testing","input_schema":"input_layer","claims_enabled":true,"provider_attribution_enabled":true}' |
| 963 | + dbt compile --profiles-dir ./profiles/snowflake --vars '{"use_synthetic_data": true,"claims_enabled":true,"provider_attribution_enabled":true}' |
950 | 964 | working-directory: ci_testing |
951 | 965 |
|
952 | 966 | - name: Get the result |
@@ -980,10 +994,11 @@ jobs: |
980 | 994 | - name: dbt-debug |
981 | 995 | run: dbt debug --profiles-dir ./profiles/snowflake |
982 | 996 | working-directory: ci_testing |
983 | | - #Changed to compile to save processing time |
| 997 | + |
| 998 | + # Changed to compile to save processing time |
984 | 999 | - name: dbt-compile |
985 | 1000 | run: | |
986 | | - dbt compile --profiles-dir ./profiles/snowflake --vars '{"input_database":"dev_ci_testing","input_schema":"input_layer","clinical_enabled":true}' |
| 1001 | + dbt compile --profiles-dir ./profiles/snowflake --vars '{"use_synthetic_data": true,"clinical_enabled":true}' |
987 | 1002 | working-directory: ci_testing |
988 | 1003 |
|
989 | 1004 | - name: Get the result |
@@ -1017,10 +1032,11 @@ jobs: |
1017 | 1032 | - name: dbt-debug |
1018 | 1033 | run: dbt debug --profiles-dir ./profiles/snowflake |
1019 | 1034 | working-directory: ci_testing |
1020 | | - #Changed to compile to save processing time |
| 1035 | + |
| 1036 | + # Changed to compile to save processing time |
1021 | 1037 | - name: dbt-compile |
1022 | 1038 | run: | |
1023 | | - dbt compile --profiles-dir ./profiles/snowflake --vars '{"input_database":"dev_ci_testing","input_schema":"input_layer","provider_attribution_enabled":true}' |
| 1039 | + dbt compile --profiles-dir ./profiles/snowflake --vars '{"use_synthetic_data": true,"provider_attribution_enabled":true}' |
1024 | 1040 | working-directory: ci_testing |
1025 | 1041 |
|
1026 | 1042 | - name: Get the result |
|
0 commit comments