Skip to content

Commit 5d7d080

Browse files
committed
added variable to pipeline
1 parent 68d59ff commit 5d7d080

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci_consumption_workflow.yml

+5
Original file line numberDiff line numberDiff line change
@@ -44,28 +44,33 @@ jobs:
4444
env:
4545
AzureWebJobsStorage: ${{ secrets.LinuxStorageConnectionString37 }}
4646
CUSTOM_IMAGE: ${{ github.event.inputs.custom_image }}
47+
_DUMMY_CONT_KEY: ${{ secrets._DUMMY_CONT_KEY }}
4748
run: python -m pytest -n auto --dist loadfile -vv --reruns 4 --instafail tests/consumption_tests
4849
- name: Running 3.8 Tests
4950
if: matrix.python-version == 3.8
5051
env:
5152
AzureWebJobsStorage: ${{ secrets.LinuxStorageConnectionString38 }}
5253
CUSTOM_IMAGE: ${{ github.event.inputs.custom_image }}
54+
_DUMMY_CONT_KEY: ${{ secrets._DUMMY_CONT_KEY }}
5355
run: python -m pytest -n auto --dist loadfile -vv --reruns 4 --instafail tests/consumption_tests
5456
- name: Running 3.9 Tests
5557
if: matrix.python-version == 3.9
5658
env:
5759
AzureWebJobsStorage: ${{ secrets.LinuxStorageConnectionString39 }}
5860
CUSTOM_IMAGE: ${{ github.event.inputs.custom_image }}
61+
_DUMMY_CONT_KEY: ${{ secrets._DUMMY_CONT_KEY }}
5962
run: python -m pytest -n auto --dist loadfile -vv --reruns 4 --instafail tests/consumption_tests
6063
- name: Running 3.10 Tests
6164
if: matrix.python-version == 3.10
6265
env:
6366
AzureWebJobsStorage: ${{ secrets.LinuxStorageConnectionString310 }}
6467
CUSTOM_IMAGE: ${{ github.event.inputs.custom_image }}
68+
_DUMMY_CONT_KEY: ${{ secrets._DUMMY_CONT_KEY }}
6569
run: python -m pytest -n auto --dist loadfile -vv --reruns 4 --instafail tests/consumption_tests
6670
- name: Running 3.11 Tests
6771
if: matrix.python-version == 3.11
6872
env:
6973
AzureWebJobsStorage: ${{ secrets.LinuxStorageConnectionString311 }}
7074
CUSTOM_IMAGE: ${{ github.event.inputs.custom_image }}
75+
_DUMMY_CONT_KEY: ${{ secrets._DUMMY_CONT_KEY }}
7176
run: python -m pytest -n auto --dist loadfile -vv --reruns 4 --instafail tests/consumption_tests

.github/workflows/ci_e2e_workflow.yml

-5
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,6 @@ jobs:
9191
AzureWebJobsEventGridTopicUri: ${{ secrets.LinuxEventGridTopicUriString37 }}
9292
AzureWebJobsEventGridConnectionKey: ${{ secrets.LinuxEventGridConnectionKeyString37 }}
9393
ARCHIVE_WEBHOST_LOGS: ${{ github.event.inputs.archive_webhost_logging }}
94-
_DUMMY_CONT_KEY: ${{ secrets._DUMMY_CONT_KEY }}
9594
run: |
9695
.github/Scripts/${{ matrix.test-type }}.sh
9796
- name: Running 3.8 ${{ matrix.test-type }}
@@ -105,7 +104,6 @@ jobs:
105104
AzureWebJobsEventGridTopicUri: ${{ secrets.LinuxEventGridTopicUriString38 }}
106105
AzureWebJobsEventGridConnectionKey: ${{ secrets.LinuxEventGridConnectionKeyString38 }}
107106
ARCHIVE_WEBHOST_LOGS: ${{ github.event.inputs.archive_webhost_logging }}
108-
_DUMMY_CONT_KEY: ${{ secrets._DUMMY_CONT_KEY }}
109107
run: |
110108
.github/Scripts/${{ matrix.test-type }}.sh
111109
- name: Running 3.9 ${{ matrix.test-type }}
@@ -119,7 +117,6 @@ jobs:
119117
AzureWebJobsEventGridTopicUri: ${{ secrets.LinuxEventGridTopicUriString39 }}
120118
AzureWebJobsEventGridConnectionKey: ${{ secrets.LinuxEventGridConnectionKeyString39 }}
121119
ARCHIVE_WEBHOST_LOGS: ${{ github.event.inputs.archive_webhost_logging }}
122-
_DUMMY_CONT_KEY: ${{ secrets._DUMMY_CONT_KEY }}
123120
run: |
124121
.github/Scripts/${{ matrix.test-type }}.sh
125122
- name: Running 3.10 ${{ matrix.test-type }}
@@ -133,7 +130,6 @@ jobs:
133130
AzureWebJobsEventGridTopicUri: ${{ secrets.LinuxEventGridTopicUriString310 }}
134131
AzureWebJobsEventGridConnectionKey: ${{ secrets.LinuxEventGridConnectionKeyString310 }}
135132
ARCHIVE_WEBHOST_LOGS: ${{ github.event.inputs.archive_webhost_logging }}
136-
_DUMMY_CONT_KEY: ${{ secrets._DUMMY_CONT_KEY }}
137133
run: |
138134
.github/Scripts/${{ matrix.test-type }}.sh
139135
- name: Running 3.11 ${{ matrix.test-type }}
@@ -147,7 +143,6 @@ jobs:
147143
AzureWebJobsEventGridTopicUri: ${{ secrets.LinuxEventGridTopicUriString311 }}
148144
AzureWebJobsEventGridConnectionKey: ${{ secrets.LinuxEventGridConnectionKeyString311 }}
149145
ARCHIVE_WEBHOST_LOGS: ${{ github.event.inputs.archive_webhost_logging }}
150-
_DUMMY_CONT_KEY: ${{ secrets._DUMMY_CONT_KEY }}
151146
run: |
152147
.github/Scripts/${{ matrix.test-type }}.sh
153148
- name: Codecov

0 commit comments

Comments
 (0)