Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1eae7fb88741
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: eab992b4ac21
Choose a head ref
  • 2 commits
  • 5 files changed
  • 2 contributors

Commits on Mar 22, 2020

  1. releaseTools: no-op expression cleanup

    No functional change, was just reading through these and cleaning/sanitizing
    them a bit while I'm here.
    bhipple committed Mar 22, 2020
    Copy the full SHA
    79d875a View commit details

Commits on Apr 4, 2020

  1. Merge pull request #83112 from bhipple/dev/reltools-cleanup

    releaseTools: no-op expression cleanup
    matthewbauer authored Apr 4, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    eab992b View commit details
31 changes: 13 additions & 18 deletions pkgs/build-support/release/binary-tarball.nix
Original file line number Diff line number Diff line change
@@ -51,29 +51,24 @@ stdenv.mkDerivation (
configureFlags="--prefix=$prefix $configureFlags"
dontAddPrefix=1
prefix=$TMPDIR/inst$prefix
''; # */

'';

doDist = true;

distPhase =
''
mkdir -p $out/tarballs
tar cvfj $out/tarballs/''${releaseName:-binary-dist}.tar.bz2 -C $TMPDIR/inst .
'';


finalPhase =
''
for i in $out/tarballs/*; do
echo "file binary-dist $i" >> $out/nix-support/hydra-build-products
done
distPhase = ''
mkdir -p $out/tarballs
tar cvfj $out/tarballs/''${releaseName:-binary-dist}.tar.bz2 -C $TMPDIR/inst .
'';

# Propagate the release name of the source tarball. This is
# to get nice package names in channels.
test -n "$releaseName" && (echo "$releaseName" >> $out/nix-support/hydra-release-name)
'';
finalPhase = ''
for i in $out/tarballs/*; do
echo "file binary-dist $i" >> $out/nix-support/hydra-build-products
done
# Propagate the release name of the source tarball. This is
# to get nice package names in channels.
test -n "$releaseName" && (echo "$releaseName" >> $out/nix-support/hydra-release-name)
'';

meta = (if args ? meta then args.meta else {}) // {
description = "Build of a generic binary distribution";
2 changes: 1 addition & 1 deletion pkgs/build-support/release/debian-build.nix
Original file line number Diff line number Diff line change
@@ -88,7 +88,7 @@ vmTools.runInLinuxImage (stdenv.mkDerivation (
done
eval "$postInstall"
''; # */
'';

meta = (if args ? meta then args.meta else {}) // {
description = "Deb package for ${diskImage.fullName}";
6 changes: 3 additions & 3 deletions pkgs/build-support/release/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{pkgs}:
{ pkgs }:

with pkgs;

@@ -77,7 +77,7 @@ rec {
its contituents. Channel jobs are a special type of jobs that are
listed in the channel tab of Hydra and that can be suscribed.
A tarball of the src attribute is distributed via the channel.
- constituents: a list of derivations on which the channel success depends.
- name: the channel name that will be used in the hydra interface.
- src: should point to the root folder of the nix-expressions used by the
@@ -88,7 +88,7 @@ rec {
name = "my-channel";
src = ./.;
};
*/
channel =
{ name, src, constituents ? [], meta ? {}, isNixOS ? true, ... }@args:
24 changes: 12 additions & 12 deletions pkgs/build-support/release/maven-build.nix
Original file line number Diff line number Diff line change
@@ -11,12 +11,12 @@
, ...
} @ args :

let
let
mvnFlags = "-Dmaven.repo.local=$M2_REPO ${if doTest then "" else "-Dmaven.test.skip.exec=true"} ${extraMvnFlags}";
in

stdenv.mkDerivation ( {
inherit name src;
inherit name src;
phases = "setupPhase unpackPhase patchPhase mvnCompile ${if doTestCompile then "mvnTestCompile mvnTestJar" else ""} ${if doTest then "mvnTest" else ""} ${if doJavadoc then "mvnJavadoc" else ""} ${if doCheckstyle then "mvnCheckstyle" else ""} mvnJar mvnAssembly mvnRelease finalPhase";

setupPhase = ''
@@ -32,15 +32,15 @@ stdenv.mkDerivation ( {

mvnCompile = ''
mvn compile ${mvnFlags}
'';
'';

mvnTestCompile = ''
mvn test-compile ${mvnFlags}
'';
'';

mvnTestJar = ''
mvn jar:test-jar ${mvnFlags}
'';
'';

mvnTest = ''
mvn test ${mvnFlags}
@@ -53,21 +53,21 @@ stdenv.mkDerivation ( {
mvn surefire-report:report-only
echo "report coverage $out/site/surefire-report.html" >> $out/nix-support/hydra-build-products
fi
'';
'';

mvnJavadoc = ''
mvn javadoc:javadoc ${mvnFlags}
echo "report javadoc $out/site/apidocs" >> $out/nix-support/hydra-build-products
'';
'';

mvnCheckstyle = ''
mvn checkstyle:checkstyle ${mvnFlags}
echo "report checkstyle $out/site/checkstyle.html" >> $out/nix-support/hydra-build-products
'';
'';

mvnJar = ''
mvn jar:jar ${mvnFlags}
'';
'';

mvnAssembly = ''
mvn assembly:assembly -Dmaven.test.skip=true ${mvnFlags}
@@ -80,19 +80,19 @@ stdenv.mkDerivation ( {
releaseName=$(basename $zip .zip)
releaseName="$releaseName-r${toString src.rev or "0"}"
cp $zip $out/release/$releaseName.zip
echo "$releaseName" > $out/nix-support/hydra-release-name
${if doRelease then ''
echo "file zip $out/release/$releaseName.zip" >> $out/nix-support/hydra-build-products
'' else ""}
'';
'';

finalPhase = ''
if [ -d target/site ] ; then
cp -R target/site $out/
echo "report site $out/site" >> $out/nix-support/hydra-build-products
fi
'';
} // args
} // args
)
2 changes: 1 addition & 1 deletion pkgs/build-support/release/rpm-build.nix
Original file line number Diff line number Diff line change
@@ -44,7 +44,7 @@ vmTools.buildRPM (
for rpmdir in $extraRPMs ; do
echo "file rpm-extra $(ls $rpmdir/rpms/*/*.rpm | grep -v 'src\.rpm' | sort | head -1)" >> $out/nix-support/hydra-build-products
done
''; # */
'';

meta = (if args ? meta then args.meta else {}) // {
description = "RPM package for ${diskImage.fullName}";