From 01acf8741f539f64248d54a9f0f6c4d39195d16c Mon Sep 17 00:00:00 2001 From: Torsten Dittmann Date: Thu, 19 May 2022 13:48:16 +0200 Subject: [PATCH] fix: remove ppc support --- src/Runtimes/Runtimes.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Runtimes/Runtimes.php b/src/Runtimes/Runtimes.php index 591a820..274233b 100644 --- a/src/Runtimes/Runtimes.php +++ b/src/Runtimes/Runtimes.php @@ -77,7 +77,7 @@ public function __construct($version = '') $this->runtimes['kotlin'] = $kotlin; $cpp = new Runtime('cpp', 'C++'); - $cpp->addVersion('17.0', 'alpine:3.15', 'openruntimes/cpp:' . $this->version . '-17', [System::X86, System::ARM, System::PPC]); + $cpp->addVersion('17.0', 'alpine:3.15', 'openruntimes/cpp:' . $this->version . '-17', [System::X86, System::ARM]); $this->runtimes['cpp'] = $cpp; }