Spaces:
Build error
Build error
Commit ·
3285abc
1
Parent(s): df94e94
Update buildkite
Browse files
main.py
CHANGED
|
@@ -15,4 +15,10 @@ result = subprocess.run(command = command, shell = True, capture_output=True, te
|
|
| 15 |
print("Return Code:", result.returncode)
|
| 16 |
print("Output:\n", result.stdout)
|
| 17 |
print("Error:\n", result.stderr)
|
| 18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
print("Return Code:", result.returncode)
|
| 16 |
print("Output:\n", result.stdout)
|
| 17 |
print("Error:\n", result.stderr)
|
| 18 |
+
|
| 19 |
+
result = subprocess.run(["~/.buildkite-agent/bin/buildkite-agent", "start"])
|
| 20 |
+
# Print the result
|
| 21 |
+
print("Return Code:", result.returncode)
|
| 22 |
+
print("Output:\n", result.stdout)
|
| 23 |
+
print("Error:\n", result.stderr)
|
| 24 |
+
|