You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@echo "Running all arm tests, this will take a while..."
97
+
98
+
@for test in $(ALL_ARM_TESTS); do \
99
+
echo "Running $$test"; \
100
+
$(MAKE) $$test; \
101
+
echo "Done $$test"; \
102
+
done
103
+
104
+
@echo ""
105
+
@echo "All arm tests done!"
106
+
107
+
all-arm-node:
108
+
@echo "Running all arm node tests, this will take a while..."
109
+
110
+
@for test in $(ALL_ARM_NODE_TESTS); do \
111
+
echo "Running $$test"; \
112
+
$(MAKE) $$test; \
113
+
echo "Done $$test"; \
114
+
done
115
+
116
+
@echo ""
117
+
@echo "All arm node tests done!"
118
+
119
+
all-arm-python:
120
+
@echo "Running all arm python tests, this will take a while..."
121
+
122
+
@for test in $(ALL_ARM_PYTHON_TESTS); do \
123
+
echo "Running $$test"; \
124
+
$(MAKE) $$test; \
125
+
echo "Done $$test"; \
126
+
done
127
+
128
+
@echo ""
129
+
@echo "All arm python tests done!"
130
+
95
131
test-node:
96
132
@echo "Building node with version $(NODE_VERSION) (overwrite using NODE_VERSION=XX)"
97
133
@@ -306,21 +342,9 @@ test-node-puppeteer-chrome:
306
342
docker rmi apify/node-puppeteer-chrome:local
307
343
308
344
test-node-puppeteer-chrome-arm:
309
-
@echo "Building puppeteer-chrome arm64 with version $(PUPPETEER_VERSION) (overwrite using PUPPETEER_VERSION=22.6.2) and node version $(NODE_VERSION) (overwrite using NODE_VERSION=XX)"
@echo "Not supported due to Chrome lacking support for arm64 on Linux"
346
+
@exit 1
322
347
323
-
test-node-puppeteer-chrome-arm:
324
348
@echo "Building puppeteer-chrome arm64 with version $(PUPPETEER_VERSION) (overwrite using PUPPETEER_VERSION=22.6.2) and node version $(NODE_VERSION) (overwrite using NODE_VERSION=XX)"
0 commit comments