X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/09cbdc3074b3f1e69c9c537875146f6da0a6ed8f..46fe1e60a1cd96a39163911edd821b3e316ca606:/lib/install/deps.go diff --git a/lib/install/deps.go b/lib/install/deps.go index 1b4bf7266d..7b32984348 100644 --- a/lib/install/deps.go +++ b/lib/install/deps.go @@ -30,18 +30,17 @@ import ( var Command cmd.Handler = &installCommand{} -const goversion = "1.18.8" +const goversion = "1.20.6" const ( - rubyversion = "2.7.6" + rubyversion = "3.2.2" bundlerversion = "2.2.19" - singularityversion = "3.9.9" + singularityversion = "3.10.4" pjsversion = "1.9.8" geckoversion = "0.24.0" gradleversion = "5.3.1" nodejsversion = "v12.22.12" devtestDatabasePassword = "insecure_arvados_test" - workbench2version = "e30e54d674c95ee15e296c71e471c1555bdc5a38" // 2.4.3 ) //go:embed arvados.service @@ -50,6 +49,7 @@ var arvadosServiceFile []byte type installCommand struct { ClusterType string SourcePath string + Commit string PackageVersion string EatMyData bool } @@ -72,6 +72,7 @@ func (inst *installCommand) RunCommand(prog string, args []string, stdin io.Read versionFlag := flags.Bool("version", false, "Write version information to stdout and exit 0") flags.StringVar(&inst.ClusterType, "type", "production", "cluster `type`: development, test, production, or package") flags.StringVar(&inst.SourcePath, "source", "/arvados", "source tree location (required for -type=package)") + flags.StringVar(&inst.Commit, "commit", "", "source commit `hash` to embed (blank means use 'git log' or all-zero placeholder)") flags.StringVar(&inst.PackageVersion, "package-version", "0.0.0", "version string to embed in executable files") flags.BoolVar(&inst.EatMyData, "eatmydata", false, "use eatmydata to speed up install") @@ -81,6 +82,14 @@ func (inst *installCommand) RunCommand(prog string, args []string, stdin io.Read return cmd.Version.RunCommand(prog, args, stdin, stdout, stderr) } + if inst.Commit == "" { + if commit, err := exec.Command("env", "-C", inst.SourcePath, "git", "log", "-n1", "--format=%H").CombinedOutput(); err == nil { + inst.Commit = strings.TrimSpace(string(commit)) + } else { + inst.Commit = "0000000000000000000000000000000000000000" + } + } + var dev, test, prod, pkg bool switch inst.ClusterType { case "development": @@ -155,6 +164,7 @@ func (inst *installCommand) RunCommand(prog string, args []string, stdin io.Read "default-jre-headless", "gettext", "libattr1-dev", + "libffi-dev", "libfuse-dev", "libgbm1", // cypress / workbench2 tests "libgnutls28-dev", @@ -165,6 +175,7 @@ func (inst *installCommand) RunCommand(prog string, args []string, stdin io.Read "libssl-dev", "libxml2-dev", "libxslt1-dev", + "libyaml-dev", "linkchecker", "lsof", "make", @@ -193,18 +204,22 @@ func (inst *installCommand) RunCommand(prog string, args []string, stdin io.Read if test { if osv.Debian && osv.Major <= 10 { pkgs = append(pkgs, "iceweasel") + } else if osv.Debian && osv.Major >= 11 { + pkgs = append(pkgs, "firefox-esr") } else { pkgs = append(pkgs, "firefox") } } if dev || test { - pkgs = append(pkgs, "squashfs-tools") // for singularity - pkgs = append(pkgs, "gnupg") // for docker install recipe + pkgs = append(pkgs, + "libglib2.0-dev", // singularity (conmon) + "libseccomp-dev", // singularity (seccomp) + "squashfs-tools", // singularity + "gnupg") // docker install recipe } switch { - case osv.Debian && osv.Major >= 11: - pkgs = append(pkgs, "g++", "libcurl4", "libcurl4-openssl-dev") - case osv.Debian && osv.Major >= 10: + case osv.Debian && osv.Major >= 10, + osv.Ubuntu && osv.Major >= 22: pkgs = append(pkgs, "g++", "libcurl4", "libcurl4-openssl-dev") case osv.Debian || osv.Ubuntu: pkgs = append(pkgs, "g++", "libcurl3", "libcurl3-openssl-dev") @@ -227,7 +242,7 @@ func (inst *installCommand) RunCommand(prog string, args []string, stdin io.Read } if dev || test { - if havedockerversion, err := exec.Command("docker", "--version").CombinedOutput(); err == nil { + if havedockerversion, err2 := exec.Command("docker", "--version").CombinedOutput(); err2 == nil { logger.Printf("%s installed, assuming that version is ok", bytes.TrimSuffix(havedockerversion, []byte("\n"))) } else if osv.Debian { var codename string @@ -236,6 +251,8 @@ func (inst *installCommand) RunCommand(prog string, args []string, stdin io.Read codename = "buster" case 11: codename = "bullseye" + case 12: + codename = "bookworm" default: err = fmt.Errorf("don't know how to install docker-ce for debian %d", osv.Major) return 1 @@ -255,6 +272,21 @@ DEBIAN_FRONTEND=noninteractive apt-get --yes --no-install-recommends install doc err = fmt.Errorf("don't know how to install docker for osversion %v", osv) return 1 } + + err = inst.runBash(` +key=fs.inotify.max_user_watches +min=524288 +if [[ "$(sysctl --values "${key}")" -lt "${min}" ]]; then + sysctl "${key}=${min}" + # writing sysctl worked, so we should make it permanent + echo "${key}=${min}" | tee -a /etc/sysctl.conf + sysctl -p +fi +`, stdout, stderr) + if err != nil { + err = fmt.Errorf("couldn't set fs.inotify.max_user_watches value. (Is this a docker container? Fix this on the docker host by adding fs.inotify.max_user_watches=524288 to /etc/sysctl.conf and running `sysctl -p`)") + return 1 + } } os.Mkdir("/var/lib/arvados", 0755) @@ -284,7 +316,9 @@ wget --progress=dot:giga -O- https://cache.ruby-lang.org/pub/ruby/`+rubymajorver cd "${tmp}/ruby-`+rubyversion+`" ./configure --disable-install-static-library --enable-shared --disable-install-doc --prefix /var/lib/arvados make -j8 +rm -f /var/lib/arvados/bin/erb make install +/var/lib/arvados/bin/gem update --no-document --system 3.4.21 /var/lib/arvados/bin/gem install bundler --no-document `, stdout, stderr) if err != nil { @@ -360,7 +394,7 @@ S=`+singularityversion+` tmp=/var/lib/arvados/tmp/singularity trap "rm -r ${tmp}" ERR EXIT cd /var/lib/arvados/tmp -git clone https://github.com/sylabs/singularity +git clone --recurse-submodules https://github.com/sylabs/singularity cd singularity git checkout v${S} ./mconfig --prefix=/var/lib/arvados @@ -527,38 +561,6 @@ ln -sfv /var/lib/arvados/node-`+nodejsversion+`-linux-x64/bin/{yarn,yarnpkg} /us return 1 } } - - if havewb2version, err := exec.Command("git", "--git-dir=/var/lib/arvados/arvados-workbench2/.git", "log", "-n1", "--format=%H").CombinedOutput(); err == nil && string(havewb2version) == workbench2version+"\n" { - logger.Print("workbench2 repo is already at " + workbench2version) - } else { - err = inst.runBash(` -V=`+workbench2version+` -cd /var/lib/arvados -if [[ ! -e arvados-workbench2 ]]; then - git clone https://git.arvados.org/arvados-workbench2.git - cd arvados-workbench2 - git checkout $V -else - cd arvados-workbench2 - if ! git checkout $V; then - git fetch - git checkout yarn.lock - git checkout $V - fi -fi -rm -rf build -`, stdout, stderr) - if err != nil { - return 1 - } - } - - if err = inst.runBash(` -cd /var/lib/arvados/arvados-workbench2 -yarn install -`, stdout, stderr); err != nil { - return 1 - } } if prod || pkg { @@ -568,7 +570,16 @@ yarn install "cmd/arvados-server", } { fmt.Fprintf(stderr, "building %s...\n", srcdir) - cmd := exec.Command("go", "install", "-ldflags", "-X git.arvados.org/arvados.git/lib/cmd.version="+inst.PackageVersion+" -X main.version="+inst.PackageVersion+" -s -w") + // -buildvcs=false here avoids a fatal "error + // obtaining VCS status" when git refuses to + // run (for example) as root in a docker + // container using a non-root-owned git tree + // mounted from the host -- as in + // "arvados-package build". + cmd := exec.Command("go", "install", "-buildvcs=false", + "-ldflags", "-s -w"+ + " -X git.arvados.org/arvados.git/lib/cmd.version="+inst.PackageVersion+ + " -X git.arvados.org/arvados.git/lib/cmd.commit="+inst.Commit) cmd.Env = append(cmd.Env, os.Environ()...) cmd.Env = append(cmd.Env, "GOBIN=/var/lib/arvados/bin") cmd.Dir = filepath.Join(inst.SourcePath, srcdir) @@ -603,94 +614,103 @@ v=/var/lib/arvados/lib/python tmp=/var/lib/arvados/tmp/python python3 -m venv "$v" . "$v/bin/activate" -pip3 install --no-cache-dir 'setuptools>=18.5' 'pip>=7' +pip3 install --no-cache-dir 'setuptools>=68' 'pip>=20' export ARVADOS_BUILDING_VERSION="`+inst.PackageVersion+`" for src in "`+inst.SourcePath+`/sdk/python" "`+inst.SourcePath+`/services/fuse"; do rsync -a --delete-after "$src/" "$tmp/" - cd "$tmp" - python3 setup.py install - cd .. + env -C "$tmp" python3 setup.py build + pip3 install "$tmp" rm -rf "$tmp" done `, stdout, stderr); err != nil { return 1 } - // Install Rails apps to /var/lib/arvados/{railsapi,workbench1}/ - for dstdir, srcdir := range map[string]string{ - "railsapi": "services/api", - "workbench1": "apps/workbench", + // Install RailsAPI to /var/lib/arvados/railsapi/ + fmt.Fprintln(stderr, "building railsapi...") + cmd = exec.Command("rsync", + "-a", "--no-owner", "--no-group", "--delete-after", "--delete-excluded", + "--exclude", "/coverage", + "--exclude", "/log", + "--exclude", "/node_modules", + "--exclude", "/tmp", + "--exclude", "/public/assets", + "--exclude", "/vendor", + "--exclude", "/config/environments", + "./", "/var/lib/arvados/railsapi/") + cmd.Dir = filepath.Join(inst.SourcePath, "services", "api") + cmd.Stdout = stdout + cmd.Stderr = stderr + err = cmd.Run() + if err != nil { + return 1 + } + for _, cmdline := range [][]string{ + {"mkdir", "-p", "log", "public/assets", "tmp", "vendor", ".bundle", "/var/www/.bundle", "/var/www/.gem", "/var/www/.npm", "/var/www/.passenger"}, + {"touch", "log/production.log"}, + {"chown", "-R", "--from=root", "www-data:www-data", "/var/www/.bundle", "/var/www/.gem", "/var/www/.npm", "/var/www/.passenger", "log", "tmp", "vendor", ".bundle", "Gemfile.lock", "config.ru", "config/environment.rb"}, + {"sudo", "-u", "www-data", "/var/lib/arvados/bin/gem", "install", "--user", "--conservative", "--no-document", "bundler:" + bundlerversion}, + {"sudo", "-u", "www-data", "/var/lib/arvados/bin/bundle", "config", "set", "--local", "deployment", "true"}, + {"sudo", "-u", "www-data", "/var/lib/arvados/bin/bundle", "config", "set", "--local", "path", "/var/www/.gem"}, + {"sudo", "-u", "www-data", "/var/lib/arvados/bin/bundle", "config", "set", "--local", "without", "development test diagnostics performance"}, + {"sudo", "-u", "www-data", "/var/lib/arvados/bin/bundle", "install", "--jobs", fmt.Sprintf("%d", runtime.NumCPU())}, + + {"chown", "www-data:www-data", ".", "public/assets"}, + // {"sudo", "-u", "www-data", "/var/lib/arvados/bin/bundle", "config", "set", "--local", "system", "true"}, + {"sudo", "-u", "www-data", "ARVADOS_CONFIG=none", "RAILS_GROUPS=assets", "RAILS_ENV=production", "PATH=/var/lib/arvados/bin:" + os.Getenv("PATH"), "/var/lib/arvados/bin/bundle", "exec", "rake", "npm:install"}, + {"sudo", "-u", "www-data", "ARVADOS_CONFIG=none", "RAILS_GROUPS=assets", "RAILS_ENV=production", "PATH=/var/lib/arvados/bin:" + os.Getenv("PATH"), "/var/lib/arvados/bin/bundle", "exec", "rake", "assets:precompile"}, + {"chown", "root:root", "."}, + {"chown", "-R", "root:root", "public/assets", "vendor"}, + + {"sudo", "-u", "www-data", "/var/lib/arvados/bin/bundle", "exec", "passenger-config", "build-native-support"}, + {"sudo", "-u", "www-data", "/var/lib/arvados/bin/bundle", "exec", "passenger-config", "install-standalone-runtime"}, } { - fmt.Fprintf(stderr, "building %s...\n", srcdir) - cmd := exec.Command("rsync", - "-a", "--no-owner", "--no-group", "--delete-after", "--delete-excluded", - "--exclude", "/coverage", - "--exclude", "/log", - "--exclude", "/node_modules", - "--exclude", "/tmp", - "--exclude", "/public/assets", - "--exclude", "/vendor", - "--exclude", "/config/environments", - "./", "/var/lib/arvados/"+dstdir+"/") - cmd.Dir = filepath.Join(inst.SourcePath, srcdir) - cmd.Stdout = stdout - cmd.Stderr = stderr - err = cmd.Run() - if err != nil { - return 1 + if cmdline[len(cmdline)-2] == "rake" { + continue } - for _, cmdline := range [][]string{ - {"mkdir", "-p", "log", "public/assets", "tmp", "vendor", ".bundle", "/var/www/.bundle", "/var/www/.gem", "/var/www/.npm", "/var/www/.passenger"}, - {"touch", "log/production.log"}, - {"chown", "-R", "--from=root", "www-data:www-data", "/var/www/.bundle", "/var/www/.gem", "/var/www/.npm", "/var/www/.passenger", "log", "tmp", "vendor", ".bundle", "Gemfile.lock", "config.ru", "config/environment.rb"}, - {"sudo", "-u", "www-data", "/var/lib/arvados/bin/gem", "install", "--user", "--conservative", "--no-document", "bundler:" + bundlerversion}, - {"sudo", "-u", "www-data", "/var/lib/arvados/bin/bundle", "config", "set", "--local", "deployment", "true"}, - {"sudo", "-u", "www-data", "/var/lib/arvados/bin/bundle", "config", "set", "--local", "path", "/var/www/.gem"}, - {"sudo", "-u", "www-data", "/var/lib/arvados/bin/bundle", "config", "set", "--local", "without", "development test diagnostics performance"}, - {"sudo", "-u", "www-data", "/var/lib/arvados/bin/bundle", "install", "--jobs", fmt.Sprintf("%d", runtime.NumCPU())}, - - {"chown", "www-data:www-data", ".", "public/assets"}, - // {"sudo", "-u", "www-data", "/var/lib/arvados/bin/bundle", "config", "set", "--local", "system", "true"}, - {"sudo", "-u", "www-data", "ARVADOS_CONFIG=none", "RAILS_GROUPS=assets", "RAILS_ENV=production", "PATH=/var/lib/arvados/bin:" + os.Getenv("PATH"), "/var/lib/arvados/bin/bundle", "exec", "rake", "npm:install"}, - {"sudo", "-u", "www-data", "ARVADOS_CONFIG=none", "RAILS_GROUPS=assets", "RAILS_ENV=production", "PATH=/var/lib/arvados/bin:" + os.Getenv("PATH"), "/var/lib/arvados/bin/bundle", "exec", "rake", "assets:precompile"}, - {"chown", "root:root", "."}, - {"chown", "-R", "root:root", "public/assets", "vendor"}, - - {"sudo", "-u", "www-data", "/var/lib/arvados/bin/bundle", "exec", "passenger-config", "build-native-support"}, - {"sudo", "-u", "www-data", "/var/lib/arvados/bin/bundle", "exec", "passenger-config", "install-standalone-runtime"}, - } { - if cmdline[len(cmdline)-2] == "rake" && dstdir != "workbench1" { - continue - } - cmd = exec.Command(cmdline[0], cmdline[1:]...) - cmd.Dir = "/var/lib/arvados/" + dstdir - cmd.Stdout = stdout - cmd.Stderr = stderr - fmt.Fprintf(stderr, "... %s\n", cmd.Args) - err = cmd.Run() - if err != nil { - return 1 - } - } - cmd = exec.Command("sudo", "-u", "www-data", "/var/lib/arvados/bin/bundle", "exec", "passenger-config", "validate-install") - cmd.Dir = "/var/lib/arvados/" + dstdir + cmd = exec.Command(cmdline[0], cmdline[1:]...) + cmd.Dir = "/var/lib/arvados/railsapi" cmd.Stdout = stdout cmd.Stderr = stderr + fmt.Fprintf(stderr, "... %s\n", cmd.Args) err = cmd.Run() - if err != nil && !strings.Contains(err.Error(), "exit status 2") { - // Exit code 2 indicates there were warnings (like - // "other passenger installations have been detected", - // which we can't expect to avoid) but no errors. - // Other non-zero exit codes (1, 9) indicate errors. + if err != nil { return 1 } } + cmd = exec.Command("sudo", "-u", "www-data", "/var/lib/arvados/bin/bundle", "exec", "passenger-config", "validate-install") + cmd.Dir = "/var/lib/arvados/railsapi" + cmd.Stdout = stdout + cmd.Stderr = stderr + err = cmd.Run() + if err != nil && !strings.Contains(err.Error(), "exit status 2") { + // Exit code 2 indicates there were warnings (like + // "other passenger installations have been detected", + // which we can't expect to avoid) but no errors. + // Other non-zero exit codes (1, 9) indicate errors. + return 1 + } - // Install workbench2 app to /var/lib/arvados/workbench2/ + // Install workbench2 app to + // /var/lib/arvados/workbench2/. + // + // We copy the source tree from the (possibly + // readonly) source tree into a temp dir because `yarn + // build` writes to {source-tree}/build/. When we + // upgrade to react-scripts >= 4.0.2 we may be able to + // build from the source dir and write directly to the + // final destination (using + // YARN_INSTALL_STATE_PATH=/dev/null + // BUILD_PATH=/var/lib/arvados/workbench2) instead of + // using two rsync steps here. if err = inst.runBash(` -cd /var/lib/arvados/arvados-workbench2 -VERSION="`+inst.PackageVersion+`" BUILD_NUMBER=1 GIT_COMMIT="`+workbench2version[:9]+`" yarn build -rsync -a --delete-after build/ /var/lib/arvados/workbench2/ +src="`+inst.SourcePath+`/services/workbench2" +tmp=/var/lib/arvados/tmp/workbench2 +trap "rm -r ${tmp}" ERR EXIT +dst=/var/lib/arvados/workbench2 +rsync -a --delete-after "$src/" "$tmp/" +env -C "$tmp" VERSION="`+inst.PackageVersion+`" BUILD_NUMBER=1 GIT_COMMIT="`+inst.Commit[:9]+`" yarn build +rsync -a --delete-after "$tmp/build/" "$dst/" `, stdout, stderr); err != nil { return 1 }