svf-lib 1.0.2656 → 1.0.2657
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -70,13 +70,13 @@ jobs:
|
|
|
70
70
|
tar -tzf "$TARBALL" | tee published-files.txt
|
|
71
71
|
|
|
72
72
|
echo "Checking Linux x64 binary..."
|
|
73
|
-
grep
|
|
73
|
+
grep '^package/SVF-linux-x86_64/' published-files.txt
|
|
74
74
|
|
|
75
|
-
echo "Checking Linux ARM binary..."
|
|
76
|
-
grep
|
|
75
|
+
echo "Checking Linux ARM/aarch64 binary..."
|
|
76
|
+
grep '^package/SVF-linux-aarch64/' published-files.txt
|
|
77
77
|
|
|
78
78
|
echo "Checking macOS binary..."
|
|
79
|
-
grep
|
|
79
|
+
grep '^package/SVF-osx/' published-files.txt
|
|
80
80
|
|
|
81
81
|
trigger-svf-python:
|
|
82
82
|
if: github.event_name == 'push' # Only run on push events
|