[arvados] updated: 2.7.0-4950-ge5ac7f35c6
git repository hosting
git at public.arvados.org
Fri Sep 29 19:39:01 UTC 2023
Summary of changes:
build/package-build-dockerfiles/rocky8/Dockerfile | 2 +-
build/run-library.sh | 2 +-
doc/api/methods/groups.html.textile.liquid | 4 ++--
3 files changed, 4 insertions(+), 4 deletions(-)
via e5ac7f35c6fcc3c0db6dbc60e84ce7147bb85cce (commit)
via fe8da34676be7c6fbb1042fcfcabee19bfa424d0 (commit)
via e3d4acd463436a0ed7e57a79c1b48ef010b53a76 (commit)
from df1ebc0e3184afd3fb66414651fc1aec713928bf (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit e5ac7f35c6fcc3c0db6dbc60e84ce7147bb85cce
Author: Brett Smith <brett.smith at curii.com>
Date: Fri Sep 29 15:35:21 2023 -0400
Note that groups/contents API can accept a user UUID
This is very helpful for generalizing project walk code and I don't
think it's documented anywhere.
No issue #.
Arvados-DCO-1.1-Signed-off-by: Brett Smith <brett.smith at curii.com>
diff --git a/doc/api/methods/groups.html.textile.liquid b/doc/api/methods/groups.html.textile.liquid
index 02e8bfbb3f..826c7fe43c 100644
--- a/doc/api/methods/groups.html.textile.liquid
+++ b/doc/api/methods/groups.html.textile.liquid
@@ -101,13 +101,13 @@ Required arguments are displayed in %{background:#ccffcc}green%.
h3(#contents). contents
-Retrieve a list of items owned by the group. Use "recursive" to list objects within subprojects as well.
+Retrieve a list of items owned by the group or user. Use "recursive" to list objects within subprojects as well.
Arguments:
table(table table-bordered table-condensed).
|_. Argument |_. Type |_. Description |_. Location |_. Example |
-{background:#ccffcc}.|uuid|string|The UUID of the group in question.|path||
+{background:#ccffcc}.|uuid|string|The UUID of the group or user to enumerate. If this is a user UUID, this method returns the contents of that user's home project.|path||
|limit|integer (default 100)|Maximum number of items to return.|query||
|order|array|Attributes to use as sort keys to determine the order resources are returned, each optionally followed by @asc@ or @desc@ to indicate ascending or descending order. Sort within a resource type by prefixing the attribute with the resource name and a period.|query|@["collections.modified_at desc"]@|
|filters|array|Conditions for filtering items.|query|@[["uuid", "is_a", "arvados#job"]]@|
commit fe8da34676be7c6fbb1042fcfcabee19bfa424d0
Author: Brett Smith <brett.smith at curii.com>
Date: Fri Sep 29 15:23:56 2023 -0400
21028: Build Ruby from source on rocky8
Without this, RVM downloads a binary Ruby with a bunch of configuration
options turned on. This can lead to problems building extensions when
Ruby thinks a certain feature is supported but our Docker image doesn't
have the headers to support it. Right now we're seeing that in the zlib
gem: it has extra code to turn on when Ruby supports Valgrind, but we
don't have the Valgrind headers necessary to build that code.
Closes #21028.
Arvados-DCO-1.1-Signed-off-by: Brett Smith <brett.smith at curii.com>
diff --git a/build/package-build-dockerfiles/rocky8/Dockerfile b/build/package-build-dockerfiles/rocky8/Dockerfile
index c410a8b591..138a10b15c 100644
--- a/build/package-build-dockerfiles/rocky8/Dockerfile
+++ b/build/package-build-dockerfiles/rocky8/Dockerfile
@@ -70,7 +70,7 @@ ADD generated/pkuczynski.asc /tmp/
RUN gpg --import --no-tty /tmp/mpapis.asc && \
gpg --import --no-tty /tmp/pkuczynski.asc && \
curl -L https://get.rvm.io | bash -s stable && \
- /usr/local/rvm/bin/rvm install 2.7 -j $(grep -c processor /proc/cpuinfo) && \
+ /usr/local/rvm/bin/rvm install --disable-binary 2.7 -j $(grep -c processor /proc/cpuinfo) && \
/usr/local/rvm/bin/rvm alias create default ruby-2.7 && \
echo "gem: --no-document" >> ~/.gemrc && \
/usr/local/rvm/bin/rvm-exec default gem install bundler --version 2.2.19 && \
commit e3d4acd463436a0ed7e57a79c1b48ef010b53a76
Author: Brett Smith <brett.smith at curii.com>
Date: Fri Sep 29 15:22:13 2023 -0400
20878: Bugfix missing variable sigil
Without this, the test compared against the constant string "TARGET" and
never tried to reuse built RPMs.
Refs #20878.
Arvados-DCO-1.1-Signed-off-by: Brett Smith <brett.smith at curii.com>
diff --git a/build/run-library.sh b/build/run-library.sh
index ed5bcc5ab7..e3c0e251bf 100755
--- a/build/run-library.sh
+++ b/build/run-library.sh
@@ -455,7 +455,7 @@ test_package_presence() {
fi
else
local rpm_root
- case "TARGET" in
+ case "$TARGET" in
centos7) rpm_root="CentOS/7/dev" ;;
rocky8) rpm_root="CentOS/8/dev" ;;
*)
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list