Commit f37b292
committed
ci(fresh-install): drop redundant GITHUB_PATH append in container leg
The findutils fix unmasked a second, tumbleweed-only failure at the
start of "Configure mcpp":
OCI runtime exec failed: exec: "sh": executable file not found in $PATH
exit code 127
opensuse/tumbleweed's image declares no PATH in its config. Appending a
single dir to $GITHUB_PATH makes the runner exec every later step's
`sh` with only that dir on PATH, so /usr/bin/sh becomes unfindable. The
setup/install steps passed only because they ran before the append.
Every container-matrix step already does
`export PATH="$HOME/.xlings/subos/current/bin:$PATH"` in its own
script, so the GITHUB_PATH append was redundant — and the sole cause of
the corruption. Drop it. (The bare linux-fresh leg keeps its
GITHUB_PATH: its later steps call mcpp directly without re-exporting.)1 parent 38afc87 commit f37b292
1 file changed
Lines changed: 7 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
173 | 173 | | |
174 | 174 | | |
175 | 175 | | |
176 | | - | |
| 176 | + | |
| 177 | + | |
| 178 | + | |
| 179 | + | |
| 180 | + | |
| 181 | + | |
| 182 | + | |
177 | 183 | | |
178 | 184 | | |
179 | 185 | | |
| |||
0 commit comments