Skip to content

Commit c5289ae

Browse files
committed
debug: skip workspace setup to test pure server start
- Comment out Install Dependencies step - Comment out cfconfig installation - Test if workspace setup is interfering with server start
1 parent a635428 commit c5289ae

File tree

1 file changed

+13
-22
lines changed

1 file changed

+13
-22
lines changed

.github/workflows/tests.yml

Lines changed: 13 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -241,28 +241,19 @@ jobs:
241241
echo -e "\nCommandBox version:"
242242
box version
243243
244-
- name: Install Dependencies
245-
run: |
246-
# Install dependencies in workspace
247-
cd ./tools/workspace
248-
echo "Installing CommandBox dependencies..."
249-
box install --verbose
250-
251-
# Verify vendor directory exists after install
252-
if [ ! -d "vendor" ]; then
253-
echo "ERROR: vendor directory not created after box install!"
254-
ls -la
255-
exit 1
256-
fi
257-
258-
# List what's in vendor directory
259-
echo "Vendor directory contents:"
260-
ls -la vendor/
261-
262-
- name: Force install latest cfconfig
263-
run: |
264-
cd ./tools/workspace
265-
box install commandbox-cfconfig@be
244+
# Skip dependencies for now - test pure server start
245+
# - name: Install Dependencies
246+
# run: |
247+
# # Install dependencies in workspace
248+
# cd ./tools/workspace
249+
# echo "Installing CommandBox dependencies..."
250+
# box install --verbose
251+
252+
# Skip cfconfig for now - might be causing issues
253+
# - name: Force install latest cfconfig
254+
# run: |
255+
# cd ./tools/workspace
256+
# box install commandbox-cfconfig@be
266257

267258
- name: Start ${{ matrix.cfengine }} Server
268259
run: |

0 commit comments

Comments
 (0)