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 de5b390 commit 5ece274Copy full SHA for 5ece274
.github/workflows/android-release-artifacts.yml
@@ -38,7 +38,6 @@ jobs:
38
if curl -I "https://ossci-android.s3.amazonaws.com/executorch/release/${VERSION}-${FLAVOR}/executorch.aar" | grep "200 OK"; then
39
echo "AAR already exists at https://ossci-android.s3.amazonaws.com/executorch/release/${VERSION}-${FLAVOR}/executorch.aar"
40
echo "Will skip build/upload"
41
- exit 1
42
fi
43
44
build-aar:
@@ -90,7 +89,7 @@ jobs:
90
89
91
92
FLAVOR="${{ inputs.flavor }}"
93
- if [ ! -z "$FLAVOR" ]; then
+ if [ -n "$FLAVOR" ] && [ "$FLAVOR" != "xnnpack" ]; then
94
GRADLE_ARGS+=" -Dflavor=${FLAVOR}"
95
96
0 commit comments