Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Temporarily use linux-arm64 build (without musl) for roadrunner
Browse files Browse the repository at this point in the history
tienvx committed May 14, 2024
1 parent 2944deb commit 0df5525
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions example/protobuf-sync-message/provider/composer.json
Original file line number Diff line number Diff line change
@@ -16,12 +16,11 @@
"rr": {
"version": "2023.3.10",
"variables": {
"{$os}": "PHP_OS === 'Linux' && musl() === true ? 'unknown' : strtolower(PHP_OS_FAMILY)",
"{$musl}": "PHP_OS === 'Linux' && musl() === true ? '-musl' : ''",
"{$os}": "PHP_OS === 'Linux' && musl() === true && php_uname('m') === 'x86_64' ? 'unknown-musl' : strtolower(PHP_OS_FAMILY)",
"{$architecture}": "in_array(php_uname('m'), ['x86_64', 'AMD64']) ? 'amd64' : 'arm64'",
"{$extension}": "(PHP_OS_FAMILY === 'Windows' || (PHP_OS_FAMILY === 'Darwin' && php_uname('m') === 'x86_64')) ? 'zip' : 'tar.gz'"
},
"url": "https://github.com/roadrunner-server/roadrunner/releases/download/v{$version}/roadrunner-{$version}-{$os}{$musl}-{$architecture}.{$extension}",
"url": "https://github.com/roadrunner-server/roadrunner/releases/download/v{$version}/roadrunner-{$version}-{$os}-{$architecture}.{$extension}",
"path": "bin/roadrunner"
}
}

0 comments on commit 0df5525

Please sign in to comment.