summaryrefslogtreecommitdiffstats
path: root/vendor/humantime-1.3.0/vagga.yaml
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
commit698f8c2f01ea549d77d7dc3338a12e04c11057b9 (patch)
tree173a775858bd501c378080a10dca74132f05bc50 /vendor/humantime-1.3.0/vagga.yaml
parentInitial commit. (diff)
downloadrustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.tar.xz
rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.zip
Adding upstream version 1.64.0+dfsg1.upstream/1.64.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/humantime-1.3.0/vagga.yaml')
-rw-r--r--vendor/humantime-1.3.0/vagga.yaml92
1 files changed, 92 insertions, 0 deletions
diff --git a/vendor/humantime-1.3.0/vagga.yaml b/vendor/humantime-1.3.0/vagga.yaml
new file mode 100644
index 000000000..b5d6b8b7c
--- /dev/null
+++ b/vendor/humantime-1.3.0/vagga.yaml
@@ -0,0 +1,92 @@
+commands:
+
+ cargo: !Command
+ description: Run any cargo command
+ container: ubuntu
+ run: [cargo]
+
+ make: !Command
+ description: Build the library
+ container: ubuntu
+ run: [cargo, build]
+
+ test64: !Command
+ description: Test the 64bit library
+ container: ubuntu
+ environ: { RUST_BACKTRACE: 1 }
+ run: [cargo, test]
+
+ test32: !Command
+ description: Test the 32bit library
+ container: ubuntu32
+ environ: { RUST_BACKTRACE: 1 }
+ run: [cargo, test]
+
+ test: !Command
+ description: Test the 64bit library
+ container: ubuntu
+ environ: { RUST_BACKTRACE: 1 }
+ prerequisites: [test64, test32]
+ run: [echo, okay]
+
+ bench: !Command
+ description: Run benchmarks
+ container: bench
+ environ: { RUST_BACKTRACE: 1 }
+ run: [cargo, bench]
+
+ _bulk: !Command
+ description: Run `bulk` command (for version bookkeeping)
+ container: ubuntu
+ run: [bulk]
+
+containers:
+
+ ubuntu:
+ setup:
+ - !Ubuntu xenial
+ - !UbuntuUniverse
+ - !Install [ca-certificates, build-essential, vim]
+
+ - !TarInstall
+ url: "https://static.rust-lang.org/dist/rust-1.24.0-x86_64-unknown-linux-gnu.tar.gz"
+ script: "./install.sh --prefix=/usr \
+ --components=rustc,rust-std-x86_64-unknown-linux-gnu,cargo"
+ - &bulk !Tar
+ url: "https://github.com/tailhook/bulk/releases/download/v0.4.10/bulk-v0.4.10.tar.gz"
+ sha256: 481513f8a0306a9857d045497fb5b50b50a51e9ff748909ecf7d2bda1de275ab
+ path: /
+
+ environ:
+ HOME: /work/target
+ USER: pc
+
+ ubuntu32:
+ setup:
+ - !UbuntuRelease
+ codename: xenial
+ arch: i386
+ - !UbuntuUniverse
+ - !Install [ca-certificates, build-essential, vim]
+
+ - !TarInstall
+ url: "https://static.rust-lang.org/dist/rust-1.24.0-i686-unknown-linux-gnu.tar.gz"
+ script: "./install.sh --prefix=/usr \
+ --components=rustc,rust-std-i686-unknown-linux-gnu,cargo"
+
+ environ:
+ HOME: /work/target
+ USER: pc
+
+ bench:
+ setup:
+ - !Ubuntu xenial
+ - !Install [ca-certificates, wget, build-essential]
+ - !TarInstall
+ url: https://static.rust-lang.org/dist/rust-nightly-x86_64-unknown-linux-gnu.tar.gz
+ script: |
+ ./install.sh --prefix=/usr \
+ --components=rustc,rust-std-x86_64-unknown-linux-gnu,cargo
+ environ:
+ HOME: /work/target
+ USER: pc