We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c5afa0 commit a695e62Copy full SHA for a695e62
.github/workflows/build-push.yml
@@ -24,3 +24,4 @@ jobs:
24
uses: ./.github/workflows/lib-build-and-push.yml
25
with:
26
upload: ${{ (github.event_name == 'push' || github.event_name == 'workflow_dispatch' ) && endsWith(github.event.ref, 'scylla') }}
27
+ ignore_tests: true
.github/workflows/lib-build-and-push.yml
@@ -95,7 +95,8 @@ jobs:
95
if: inputs.ignore_tests
96
shell: bash
97
run: |
98
- echo "CIBW_TEST_COMMAND=\"\"" >> $GITHUB_ENV;
+ echo "CIBW_TEST_COMMAND=true" >> $GITHUB_ENV;
99
+ echo "CIBW_TEST_COMMAND_WINDOWS=\"(exit 0)\"" >> $GITHUB_ENV;
100
echo "CIBW_TEST_SKIP=*" >> $GITHUB_ENV;
101
echo "CIBW_SKIP=\"cp2* cp36* pp36* cp37* pp37* *i686 *musllinux*\"" >> $GITHUB_ENV;
102
echo "CIBW_BUILD=\"cp3* pp3*\"" >> $GITHUB_ENV;
0 commit comments