-
Notifications
You must be signed in to change notification settings - Fork 2
Labels
bugSomething isn't workingSomething isn't working
Description
The action collects a list of available tarantool versions as the first step:
Line 161 in 8b72738
return http_get(`${repo}/main/binary-amd64/Packages`) |
The URI has hardcoded amd64
architecture. Usually the list of versions is the same for amd64
and arm64
. However, differences are possible.
For example, tarantool-2.11.7 packages for Ubunut Focal has slightly different full version:
tarantool_2.11.7.g4e04060150-1_amd64.deb
tarantool_2.11.7.g4e040601502-1_arm64.deb
It leads to the following failure:
Checking latest tarantool 2.11 version
HTTP GET https://download.tarantool.org/tarantool/release/series-2/ubuntu/dists/focal/main/binary-amd64/Packages
2.11.7.g4e04060150-1
<...>
Installing tarantool
/usr/bin/sudo apt-get install -y tarantool=2.11.7.g4e04060150-1* tarantool-dev=2.11.7.g4e04060150-1* tarantool-common=2.11.7.g4e04060150-1*
Reading package lists...
Building dependency tree...
Reading state information...
E: Version '2.11.7.g4e04060150-1*' for 'tarantool' was not found
E: Version '2.11.7.g4e04060150-1*' for 'tarantool-dev' was not found
Reported by @locker.
locker
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working