Skip to content

Commit

Permalink
rm: deprecated bors references and files
Browse files Browse the repository at this point in the history
  • Loading branch information
johnalotoski committed Nov 27, 2023
1 parent 9d3306b commit 3c49b16
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 25 deletions.
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@
<img width="200" src=".github/images/cardano-logo.png"/>
</p>

<p align="center">
<a href="https://buildkite.com/input-output-hk/offchain-metadata-tools"><img src="https://badge.buildkite.com/7df25c563faffd8c7b09db8d802a73bd2ebc14ace98a432761.svg" alt="Build status"></a>
</p>

## Overview

In the Cardano multi-asset era, this project helps you create and
Expand Down
12 changes: 0 additions & 12 deletions bors.toml

This file was deleted.

4 changes: 1 addition & 3 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@
, gitrev ? pkgs.iohkNix.commitIdFromGitRepoOrZero ./.git
# GitHub PR number (as a string), set when building a Hydra PR jobset.
, pr ? null
# Bors job type (as a string), set when building a Hydra bors jobset.
, borsBuild ? null
}:
with pkgs; with commonLib;
let
Expand All @@ -29,7 +27,7 @@ let
buildHaskellProject = args: import ./nix/haskell.nix ({
inherit config pkgs;
inherit (pkgs) buildPackages lib stdenv haskell-nix;
inherit src gitrev pr borsBuild;
inherit src gitrev pr;
} // args);
project = addExtras (buildHaskellProject {});
profiledProject = buildHaskellProject { profiling = true; };
Expand Down
2 changes: 0 additions & 2 deletions nix/haskell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@
, src
# GitHub PR number (when building a PR jobset on Hydra)
, pr ? null
# Bors job type (when building a bors jobset on Hydra)
, borsBuild ? null
# Version info, to be passed when not building from a git work tree
, gitrev ? null
, libsodium-vrf ? pkgs.libsodium-vrf
Expand Down
5 changes: 1 addition & 4 deletions release.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
, projectArgs ? {
config = { allowUnfree = false; inHydra = true; };
gitrev = metadata-server.rev;
inherit pr borsBuild sourcesOverride;
inherit pr sourcesOverride;
}

# The systems that the jobset will be built for.
Expand All @@ -38,9 +38,6 @@
# GitHub PR number (as a string), provided as a Hydra input
, pr ? null

# Can be "staging" or "trying" to indicate that this is a bors jobset
, borsBuild ? null

# Platform filter string for jobset.
, platform ? "all"
}:
Expand Down

0 comments on commit 3c49b16

Please sign in to comment.