File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -290,6 +290,14 @@ jobs:
290290 id-token : write
291291 contents : read
292292 steps :
293+ - name : Install ARC Dependencies
294+ shell : bash
295+ run : |
296+ # xz-utils might be present on some containers. Install if not present.
297+ if ! command -v xz &> /dev/null; then
298+ sudo apt-get update
299+ sudo apt-get install -y xz-utils
300+ fi
293301 - uses : actions/checkout@v4
294302 - uses : ./.github/actions/setup-go-for-project
295303 - uses : ./.github/actions/avalanchego-setup-action
@@ -314,6 +322,14 @@ jobs:
314322 id-token : write
315323 contents : read
316324 steps :
325+ - name : Install ARC Dependencies
326+ shell : bash
327+ run : |
328+ # xz-utils might be present on some containers. Install if not present.
329+ if ! command -v xz &> /dev/null; then
330+ sudo apt-get update
331+ sudo apt-get install -y xz-utils
332+ fi
317333 - uses : actions/checkout@v4
318334 - uses : ./.github/actions/setup-go-for-project
319335 - uses : ./.github/actions/avalanchego-setup-action
You can’t perform that action at this time.
0 commit comments