Update PM git server

This commit is contained in:
Rodrigo Arias 2020-12-07 13:47:17 +01:00
parent 9a0ea08d72
commit 756c5dff92
19 changed files with 23 additions and 23 deletions

10
README
View File

@ -77,16 +77,16 @@ ABSTRACT
Then, configure it for use in the ~/.ssh/config file, adding: Then, configure it for use in the ~/.ssh/config file, adding:
Host bscpm02.bsc.es Host bscpm03.bsc.es
IdentityFile ~/.ssh/id_rsa IdentityFile ~/.ssh/id_rsa
Finally verify the SSH connection to the server works and you get a Finally verify the SSH connection to the server works and you get a
greeting from the GitLab server with your username: greeting from the GitLab server with your username:
xeon07$ ssh git@bscpm02.bsc.es xeon07$ ssh git@bscpm03.bsc.es
PTY allocation request failed on channel 0 PTY allocation request failed on channel 0
Welcome to GitLab, @rarias! Welcome to GitLab, @rarias!
Connection to bscpm02.bsc.es closed. Connection to bscpm03.bsc.es closed.
Verify that you can access nanos6/nanos6 repository (otherwise you Verify that you can access nanos6/nanos6 repository (otherwise you
first need to ask to be granted read access), at: first need to ask to be granted read access), at:
@ -96,7 +96,7 @@ ABSTRACT
Finally, you should be able to download the nanos6/nanos6 git Finally, you should be able to download the nanos6/nanos6 git
repository without any password interaction by running: repository without any password interaction by running:
xeon07$ git clone git@bscpm02.bsc.es:nanos6/nanos6.git xeon07$ git clone git@bscpm03.bsc.es:nanos6/nanos6.git
You will also need to access MareNostrum 4 from the xeon07 node, in You will also need to access MareNostrum 4 from the xeon07 node, in
order to submit experiments. Add the following lines as well to the order to submit experiments. Add the following lines as well to the
@ -129,7 +129,7 @@ ABSTRACT
Now you are ready to build and install packages with nix. Clone the Now you are ready to build and install packages with nix. Clone the
bscpkgs repository: bscpkgs repository:
xeon07$ git clone git@bscpm02.bsc.es:rarias/bscpkgs.git xeon07$ git clone git@bscpm03.bsc.es:rarias/bscpkgs.git
Nix looks in the current folder for a file named "default.nix" for Nix looks in the current folder for a file named "default.nix" for
packages, so go to the repo directory: packages, so go to the repo directory:

View File

@ -73,7 +73,7 @@ stdenv.mkDerivation rec {
# and specify nanos6 at run time. # and specify nanos6 at run time.
src = builtins.fetchGit { src = builtins.fetchGit {
url = "ssh://git@bscpm02.bsc.es/llvm-ompss/llvm-mono.git"; url = "ssh://git@bscpm03.bsc.es/llvm-ompss/llvm-mono.git";
ref = "master"; ref = "master";
}; };
} }

View File

@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
#src = /home/Computational/rarias/mcxx; #src = /home/Computational/rarias/mcxx;
src = builtins.fetchGit { src = builtins.fetchGit {
url = "ssh://git@bscpm02.bsc.es/rarias/mcxx"; url = "ssh://git@bscpm03.bsc.es/rarias/mcxx";
rev = "44129a6ac05b8f78b06e9e2eff71438b5ca4d29f"; rev = "44129a6ac05b8f78b06e9e2eff71438b5ca4d29f";
}; };

View File

@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
branch = "master"; branch = "master";
src = builtins.fetchGit { src = builtins.fetchGit {
url = "ssh://git@bscpm02.bsc.es/nanos6/nanos6"; url = "ssh://git@bscpm03.bsc.es/nanos6/nanos6";
ref = branch; ref = branch;
}; };

View File

@ -7,7 +7,7 @@ stdenv.mkDerivation rec {
pname = "nixtools"; pname = "nixtools";
version = "${src.shortRev}"; version = "${src.shortRev}";
src = builtins.fetchGit { src = builtins.fetchGit {
url = "ssh://git@bscpm02.bsc.es/rarias/nixtools"; url = "ssh://git@bscpm03.bsc.es/rarias/nixtools";
ref = "master"; ref = "master";
}; };
buildInputs = [ glibc.static ]; buildInputs = [ glibc.static ];

View File

@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
dontDisableStatic = true; dontDisableStatic = true;
makeFlags = [ "V=1" ]; makeFlags = [ "V=1" ];
src = builtins.fetchGit { src = builtins.fetchGit {
url = "ssh://git@bscpm02.bsc.es/interoperability/tampi"; url = "ssh://git@bscpm03.bsc.es/interoperability/tampi";
ref = "master"; ref = "master";
}; };
} }

View File

@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
name = "bigsort"; name = "bigsort";
src = builtins.fetchGit { src = builtins.fetchGit {
url = "ssh://git@bscpm02.bsc.es/dalvare1/bigsort.git"; url = "ssh://git@bscpm03.bsc.es/dalvare1/bigsort.git";
ref = "${gitBranch}"; ref = "${gitBranch}";
}; };

View File

@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
name = "genseq"; name = "genseq";
src = builtins.fetchGit { src = builtins.fetchGit {
url = "ssh://git@bscpm02.bsc.es/dalvare1/bigsort.git"; url = "ssh://git@bscpm03.bsc.es/dalvare1/bigsort.git";
ref = "garlic/mpi+send+omp+task"; ref = "garlic/mpi+send+omp+task";
}; };

View File

@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
name = "shuffle"; name = "shuffle";
src = builtins.fetchGit { src = builtins.fetchGit {
url = "ssh://git@bscpm02.bsc.es/dalvare1/bigsort.git"; url = "ssh://git@bscpm03.bsc.es/dalvare1/bigsort.git";
ref = "garlic/mpi+send+omp+task"; ref = "garlic/mpi+send+omp+task";
}; };

View File

@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
# src = /home/Computational/pmartin1/creams-simplified; # src = /home/Computational/pmartin1/creams-simplified;
src = builtins.fetchGit { src = builtins.fetchGit {
url = "ssh://git@bscpm02.bsc.es/pmartin1/creams-simplified.git"; url = "ssh://git@bscpm03.bsc.es/pmartin1/creams-simplified.git";
ref = "${gitBranch}"; ref = "${gitBranch}";
}; };

View File

@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
# src = /home/Computational/pmartin1/creams-simplified; # src = /home/Computational/pmartin1/creams-simplified;
src = builtins.fetchGit { src = builtins.fetchGit {
url = "ssh://git@bscpm02.bsc.es/pmartin1/creams-simplified.git"; url = "ssh://git@bscpm03.bsc.es/pmartin1/creams-simplified.git";
ref = "${gitBranch}"; ref = "${gitBranch}";
}; };

View File

@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
src = ~/heat; src = ~/heat;
#src = builtins.fetchGit { #src = builtins.fetchGit {
# url = "ssh://git@bscpm02.bsc.es/garlic/apps/heat.git"; # url = "ssh://git@bscpm03.bsc.es/garlic/apps/heat.git";
# ref = "garlic"; # ref = "garlic";
#}; #};

View File

@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
name = "hpccg"; name = "hpccg";
src = builtins.fetchGit { src = builtins.fetchGit {
url = "ssh://git@bscpm02.bsc.es/mmaronas/HPCCG.git"; url = "ssh://git@bscpm03.bsc.es/mmaronas/HPCCG.git";
ref = "mmaronas-development"; ref = "mmaronas-development";
}; };

View File

@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
name = "hpcg"; name = "hpcg";
src = builtins.fetchGit { src = builtins.fetchGit {
url = "ssh://git@bscpm02.bsc.es/rpenacob/garlic-hpcg.git"; url = "ssh://git@bscpm03.bsc.es/rpenacob/garlic-hpcg.git";
ref = "${gitBranch}"; ref = "${gitBranch}";
}; };

View File

@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
name = "ifsker"; name = "ifsker";
src = builtins.fetchGit { src = builtins.fetchGit {
url = "ssh://git@bscpm02.bsc.es/ksala/ifsker.git"; url = "ssh://git@bscpm03.bsc.es/ksala/ifsker.git";
ref = "master"; ref = "master";
}; };

View File

@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
name = "lulesh"; name = "lulesh";
src = builtins.fetchGit { src = builtins.fetchGit {
url = "ssh://git@bscpm02.bsc.es/mmaronas/lulesh.git"; url = "ssh://git@bscpm03.bsc.es/mmaronas/lulesh.git";
ref = "master"; ref = "master";
}; };

View File

@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
name = "miniamr"; name = "miniamr";
src = builtins.fetchGit { src = builtins.fetchGit {
url = "ssh://git@bscpm02.bsc.es/ksala/miniamr.git"; url = "ssh://git@bscpm03.bsc.es/ksala/miniamr.git";
ref = "master"; ref = "master";
}; };

View File

@ -6,7 +6,7 @@
, mcxx ? null , mcxx ? null
, cflags ? null , cflags ? null
, gitBranch , gitBranch
, gitURL ? "ssh://git@bscpm02.bsc.es/garlic/apps/nbody.git" , gitURL ? "ssh://git@bscpm03.bsc.es/garlic/apps/nbody.git"
, blocksize ? 2048 , blocksize ? 2048
}: }:

View File

@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
name = "saiph"; name = "saiph";
src = builtins.fetchGit { src = builtins.fetchGit {
url = "ssh://git@bscpm02.bsc.es/DSLs/saiph.git"; url = "ssh://git@bscpm03.bsc.es/DSLs/saiph.git";
ref = "${gitBranch}"; ref = "${gitBranch}";
}; };