This repository was archived by the owner on Sep 10, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +18
-1
lines changed Expand file tree Collapse file tree 1 file changed +18
-1
lines changed Original file line number Diff line number Diff line change 9595if [ "$1" == "multimodal" ]; then
9696
9797 # Expecting that this might fail this test as-is, because
98- # it's the first on-pr test depending on githib secrets for access with HF token access
98+ # it's the first on-pr test depending on github secrets for access with HF token access
9999
100100 echo "::group::Create script to run multimodal"
101101 python3 torchchat/utils/scripts/updown.py --file docs/multimodal.md > ./run-multimodal.sh
@@ -111,3 +111,20 @@ if [ "$1" == "multimodal" ]; then
111111 bash -x ./run-multimodal.sh
112112 echo "::endgroup::"
113113fi
114+
115+ if [ "$1" == "native" ]; then
116+
117+ echo "::group::Create script to run native-execution"
118+ python3 torchchat/utils/scripts/updown.py --file docs/native-execution.md > ./run-native.sh
119+ # for good measure, if something happened to updown processor,
120+ # and it did not error out, fail with an exit 1
121+ echo "exit 1" >> ./run-native.sh
122+ echo "::endgroup::"
123+
124+ echo "::group::Run native-execution"
125+ echo "*******************************************"
126+ cat ./run-native.sh
127+ echo "*******************************************"
128+ bash -x ./run-native.sh
129+ echo "::endgroup::"
130+ fi
You can’t perform that action at this time.
0 commit comments