nandi/frqpublic Fork 0
cb6465fccc6da348e4ea2d1530b2b36ad97e451a
Commits
Clone
git clone https://git.rickub.com/nandi/frq.git
git clone ssh://git@rickub.com/nandi/frq.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

Write the build in babashka, and pin the babashka 34832a8 · on cb6465fccc6da348e4ea2d1530b2b36ad97e451a · nandi · 18d ago
bb · 65 lines · 2.1 KBGDScript3 Blame HistoryRaw
 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/usr/bin/env dotslash

// babashka, which the scripts here are written in.
//
// A build script wants the things a shell is bad at  reading deps.edn,
// hashing a file set, holding a path in a variable without quoting it three
// times  and Clojure is already the language this repo is written in. Pinned
// like every other tool, so the script a person runs at a terminal is the one
// buck runs in an action.
//
// The static Linux builds, because a build machine's glibc is not ours to
// assume; macOS has no static option and does not need one.
{
  "name": "bb",
  "platforms": {
    "linux-x86_64": {
      "size": 26177709,
      "hash": "sha256",
      "digest": "eb3edd128276f0b6fbdefcb18dc7d42652a95ea409a81b34f08e36b8ac3cbc3c",
      "format": "tar.gz",
      "path": "bb",
      "providers": [
        {
          "url": "https://github.com/babashka/babashka/releases/download/v1.13.220/babashka-1.13.220-linux-amd64-static.tar.gz"
        }
      ]
    },
    "linux-aarch64": {
      "size": 28271754,
      "hash": "sha256",
      "digest": "0efd6ef36b93ea2f0ae6ebf9d1bcd1a66167c2f41c17e990659aa067654437e8",
      "format": "tar.gz",
      "path": "bb",
      "providers": [
        {
          "url": "https://github.com/babashka/babashka/releases/download/v1.13.220/babashka-1.13.220-linux-aarch64-static.tar.gz"
        }
      ]
    },
    "macos-x86_64": {
      "size": 26050398,
      "hash": "sha256",
      "digest": "ebbfdf159e8d5ee8b7015b15c6558b2039fe76478de893cf317c8c50805340de",
      "format": "tar.gz",
      "path": "bb",
      "providers": [
        {
          "url": "https://github.com/babashka/babashka/releases/download/v1.13.220/babashka-1.13.220-macos-amd64.tar.gz"
        }
      ]
    },
    "macos-aarch64": {
      "size": 26548984,
      "hash": "sha256",
      "digest": "f7d18c3ab11bb4ad0e32a45c1ae40ae25911d5fa06ba4ded07cb90b8af158077",
      "format": "tar.gz",
      "path": "bb",
      "providers": [
        {
          "url": "https://github.com/babashka/babashka/releases/download/v1.13.220/babashka-1.13.220-macos-aarch64.tar.gz"
        }
      ]
    }
  }
}