Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions scripts/etrobopkg
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# Copyright (c) 2020-2026 ETロボコン実行委員会, Released under the MIT license
# See LICENSE
#
manifest_ver="2026.04.04b"
manifest_ver="2026.05.10b"

# check etrobo-core envvar
if [ -z "$ETROBO_ROOT" ]; then
Expand Down Expand Up @@ -66,7 +66,7 @@ else
if [ "$ETROBO_ENV_TARGET" == "simulator" ]; then
export ETROBO_PUBLIC_VER="2026_8.0.1-public"
export ETROBO_BETA_VER="2023_6.0.2b"
export ETROBO_COMPETITION_VER="2025_7.2.0"
export ETROBO_COMPETITION_VER="2026_8.0.2"
fi

# nxtOSEK envvar
Expand Down Expand Up @@ -466,25 +466,25 @@ if [ "$1" != "env" ] && [ "$1" != "unset" ]; then

if [ "$target" = "win" ]; then
if [ "$arch" = "x86_64" ]; then
size=42401845 # win_x86_64
size=49479398 # win_x86_64
#else
# size=42401845 # win_aarch64
# size=45070794 # win_aarch64
fi
elif [ "$target" = "mac" ]; then
arch="universal"
size=49305063
size=57557174
elif [ "$target" = "linux" ]; then
if [ "$arch" = "x86_64" ]; then
size=38393714 # linux_x86_64
size=47579206 # linux_x86_64
#else
# size=38393714 # linux_aarch64
fi
fi

if [ "$ETROBO_OS" != "raspi" ]; then
pkgs+=("etrobosim")
urls+=("kintone://etrobocon.cybozu.com/49/etrobosim${ETROBO_COMPETITION_VER}_${target}.tar.gz")
#urls+=("kintone://etrobocon.cybozu.com/49/etrobosim${ETROBO_COMPETITION_VER}_${target}_${arch}.tar.gz")
urls+=("kintone://etrobocon.cybozu.com/51/etrobosim${ETROBO_COMPETITION_VER}_${target}.tar.gz")
#urls+=("kintone://etrobocon.cybozu.com/51/etrobosim${ETROBO_COMPETITION_VER}_${target}_${arch}.tar.gz")
vers+=("2025.07.19a")
sizes+=("$size")
fi
Expand Down