Skip to content

Commit

Permalink
fix: remove ppc support
Browse files Browse the repository at this point in the history
  • Loading branch information
TorstenDittmann authored May 19, 2022
1 parent e8aa94a commit 01acf87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Runtimes/Runtimes.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 01acf87

Please sign in to comment.