Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion config_sample.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
WINDOWS_INSTANCE_PROJECT_NAME = "windows-cloud"
WINDOWS_INSTANCE_FAMILY_NAME = "windows-2019"
LINUX_INSTANCE_PROJECT_NAME = "ubuntu-os-cloud"
LINUX_INSTANCE_FAMILY_NAME = "ubuntu-minimal-2204-lts"
LINUX_INSTANCE_FAMILY_NAME = "ubuntu-minimal-2404-lts-amd64"
GCP_INSTANCE_MAX_RUNTIME = 120 # In minutes
GCS_BUCKET_NAME = 'spdev'
GCS_SIGNED_URL_EXPIRY_LIMIT = 720 # In minutes
6 changes: 3 additions & 3 deletions install/ci-vm/ci-linux/startup-script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ dpkg --install gcsfuse_0.39.2_amd64.deb
rm gcsfuse_0.39.2_amd64.deb

apt install gnupg ca-certificates
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
echo "deb https://download.mono-project.com/repo/ubuntu stable-focal main" | sudo tee /etc/apt/sources.list.d/mono-official-stable.list
gpg --homedir /tmp --no-default-keyring --keyring /usr/share/keyrings/mono-official-archive-keyring.gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
echo "deb [signed-by=/usr/share/keyrings/mono-official-archive-keyring.gpg] https://download.mono-project.com/repo/ubuntu stable-focal main" | sudo tee /etc/apt/sources.list.d/mono-official-stable.list
sudo apt update
apt install -y mono-complete libtesseract-dev libgpac-dev
apt install -y mono-complete libtesseract-dev libgpac-dev tesseract-ocr-eng

mkdir repository
cd repository
Expand Down
2 changes: 1 addition & 1 deletion install/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ userInput gcp_instance_machine_type "Machine type for GCP Instances:" "n1-standa
userInput windows_instance_project_name "Windows GCP instance project name:" "windows-cloud" "" 1
userInput windows_instance_family_name "Windows GCP instance family name:" "windows-2019" "" 1
userInput linux_instance_project_name "Linux GCP instance project name:" "ubuntu-os-cloud" "" 1
userInput linux_instance_family_name "Linux GCP instance family name: " "ubuntu-minimal-2204-lts" "" 1
userInput linux_instance_family_name "Linux GCP instance family name: " "ubuntu-minimal-2404-lts-amd64" "" 1
userInput gcp_instance_max_runtime "GCP Instance Max Runtime (In minutes):" "120" "" 1
userInput gcs_bucket_name "Google Cloud Storage bucket name:" "" "" 1
userInput gcs_bucket_location "Google Cloud Storage bucket location:" "us-central1" "" 1
Expand Down