Bug 1739520 Comment 4 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

It appears the current working direction is `/home/aosmond/.mozbuild` instead of `/home/aosmond/dev/gecko`. Hacking it to use an absolute path allowed me to finish the bootstrap and begin building:

```
diff --git a/taskcluster/gecko_taskgraph/transforms/tests.py b/taskcluster/gecko_taskgraph/transforms/tests.py
index 1605bfb77ffd0..b7eaf504efafb 100644
--- a/taskcluster/gecko_taskgraph/transforms/tests.py
+++ b/taskcluster/gecko_taskgraph/transforms/tests.py
@@ -213,7 +213,7 @@ MACOSX_WORKER_TYPES = {
 }
 
 
-TEST_VARIANTS = load_yaml("taskcluster", "ci", "test", "variants.yml")
+TEST_VARIANTS = load_yaml("/home/aosmond/dev/gecko/taskcluster/ci/test/variants.yml")
 """List of available test variants defined."""
 
 DYNAMIC_CHUNK_DURATION = 20 * 60  # seconds

```
It appears the current working directory is `/home/aosmond/.mozbuild` instead of `/home/aosmond/dev/gecko`. Hacking it to use an absolute path allowed me to finish the bootstrap and begin building:

```
diff --git a/taskcluster/gecko_taskgraph/transforms/tests.py b/taskcluster/gecko_taskgraph/transforms/tests.py
index 1605bfb77ffd0..b7eaf504efafb 100644
--- a/taskcluster/gecko_taskgraph/transforms/tests.py
+++ b/taskcluster/gecko_taskgraph/transforms/tests.py
@@ -213,7 +213,7 @@ MACOSX_WORKER_TYPES = {
 }
 
 
-TEST_VARIANTS = load_yaml("taskcluster", "ci", "test", "variants.yml")
+TEST_VARIANTS = load_yaml("/home/aosmond/dev/gecko/taskcluster/ci/test/variants.yml")
 """List of available test variants defined."""
 
 DYNAMIC_CHUNK_DURATION = 20 * 60  # seconds

```

Back to Bug 1739520 Comment 4