Merge branch '18378-add-debian-11-platform'
[arvados-formula.git] / test / integration / shell / controls / repo_spec.rb
index f6f8e2c985156e95d731d6faf1722e130f8bebfa..a9dc3cbf86fed8424e339ca7755210cbc5f327cb 100644 (file)
@@ -1,3 +1,7 @@
+# Copyright (C) The Arvados Authors. All rights reserved.
+#
+# SPDX-License-Identifier: Apache-2.0
+
 # frozen_string_literal: true
 
 case os[:name]
@@ -6,16 +10,16 @@ when 'centos'
   repo_url = 'baseurl=http://rpm.arvados.org/CentOS/$releasever/dev/$basearch/'
 when 'debian', 'ubuntu'
   # Inspec does not provide a `codename` matcher, so we add ours
-  case os[:release]
+  case platform[:release].to_f.truncate
   # ubuntu
-  when '18.04'
+  when 18
     codename = 'bionic'
-  when '20.04'
+  when 20
     codename = 'focal'
   # debian
-  when '10'
+  when 10
     codename = 'buster'
-  when '11'
+  when 11
     codename = 'bullseye'
   end
   repo_file = '/etc/apt/sources.list.d/arvados.list'