~singpolyma/dhall-ruby

ref: d83861ee4b0c538f419586d4869f570de890ff38 dhall-ruby/.builds.dhall/debian-stable.dhall -rw-r--r-- 672 bytes
d83861eeStephen Paul Weber First pass at import resolution 4 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
	image = "debian/stable",
	packages = [
		"bundler",
		"git-extras",
		"rubocop",
		"ruby"
	],
	repositories = {
		backports = "http://ftp.ca.debian.org/debian/ stretch-backports main"
	},
	sources = ["https://git.singpolyma.net/dhall-ruby"],
	tasks = [
		{ build =
			''
			cd dhall-ruby
			wget https://github.com/dhall-lang/dhall-haskell/releases/download/1.21.0/dhall-1.21.0-x86_64-linux.tar.bz2
			tar -xvf dhall-1.21.0-x86_64-linux.tar.bz2
			export PATH="$(pwd)/bin:$PATH"
			test/normalization/gen
			rubocop
			bundle install --path="../.gems"
			bundle exec ruby -Ilib test/test_binary.rb
			bundle exec ruby -Ilib test/test_normalization.rb
			''
		}
	]
}