File tree Expand file tree Collapse file tree 4 files changed +13
-6
lines changed Expand file tree Collapse file tree 4 files changed +13
-6
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
steps :
3
3
- label : " :rocket: Launch test jobs"
4
- command : |
5
- # Linux x86_64
6
- OS=linux ARCH=x86_64 \
7
- buildkite-agent pipeline upload ./.buildkite/runtests.yml
4
+ command : bash ./.buildkite/upload-runtests-matrix.sh
8
5
agents :
9
6
queue : " julia"
10
7
os : " linux"
Original file line number Diff line number Diff line change
1
+ # OS ARCH ROOTFS_IMAGE_NAME ROOTFS_TAG ROOTFS_ARCH ROOTFS_HASH
2
+ linux x86_64 package_linux v6.00 x86_64 4dcde853eb5baaa0a8f087b633eaf955dc94b5dc
Original file line number Diff line number Diff line change 6
6
- JuliaCI/julia#v1:
7
7
version : ' 1.10'
8
8
- staticfloat/sandbox#v2:
9
- rootfs_url : https://github.com/JuliaCI/rootfs-images/releases/download/v6.00/package_linux.x86_64 .tar.gz
10
- rootfs_treehash : " 4dcde853eb5baaa0a8f087b633eaf955dc94b5dc "
9
+ rootfs_url : https://github.com/JuliaCI/rootfs-images/releases/download/${ROOTFS_TAG?}/${ROOTFS_IMAGE_NAME?}.${ROOTFS_ARCH?} .tar.gz
10
+ rootfs_treehash : " ${ROOTFS_HASH?} "
11
11
uid : 1000
12
12
gid : 1000
13
13
# Julia installation inside the sandbox
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
3
+ while read -r OS ARCH ROOTFS_IMAGE_NAME ROOTFS_TAG ROOTFS_ARCH ROOTFS_HASH; do
4
+ # Skip empty lines and comments
5
+ [[ -z " ${OS} " || " ${OS} " == \# * ]] && continue
6
+ export OS ARCH ROOTFS_IMAGE_NAME ROOTFS_TAG ROOTFS_ARCH ROOTFS_HASH
7
+ buildkite-agent pipeline upload ./.buildkite/runtests.yml
8
+ done < " .buildkite/runtests-matrix.txt"
You can’t perform that action at this time.
0 commit comments