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
5 changes: 0 additions & 5 deletions .github/workflows/build-assets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ jobs:
operating-system:
- ubuntu-24.04
- ubuntu-24.04-arm
- macos-15-intel
- macos-26
- windows-2022
permissions:
Expand All @@ -103,10 +102,6 @@ jobs:
curl -fsSL -o spc.tgz https://github.com/crazywhalecc/static-php-cli/releases/download/${{ env.SPC_VERSION }}/spc-linux-aarch64.tar.gz
;;

macos-15-intel)
curl -fsSL -o spc.tgz https://github.com/crazywhalecc/static-php-cli/releases/download/${{ env.SPC_VERSION }}/spc-macos-x86_64.tar.gz
;;

macos-26)
curl -fsSL -o spc.tgz https://github.com/crazywhalecc/static-php-cli/releases/download/${{ env.SPC_VERSION }}/spc-macos-aarch64.tar.gz
;;
Expand Down
2 changes: 0 additions & 2 deletions docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@ stable releases can be downloaded from these links:
| OS X | ARM 64 / aarch64 | https://github.com/php/pie/releases/latest/download/pie-macOS-ARM64 |
| Windows | x86_64 | https://github.com/php/pie/releases/latest/download/pie-Windows-X64.exe |
| Linux | ARM 64 / aarch64 | https://github.com/php/pie/releases/latest/download/pie-Linux-ARM64 |
| OS X | Intel / x86_64 | https://github.com/php/pie/releases/latest/download/pie-macOS-X64 |

The "nightly" versions of these can be found here:

Expand All @@ -125,7 +124,6 @@ The "nightly" versions of these can be found here:
| OS X | ARM 64 / aarch64 | https://php.github.io/pie/pie-macOS-ARM64 |
| Windows | x86_64 | https://php.github.io/pie/pie-Windows-X64.exe |
| Linux | ARM 64 / aarch64 | https://php.github.io/pie/pie-Linux-ARM64 |
| OS X | Intel / x86_64 | https://php.github.io/pie/pie-macOS-X64 |

We *highly* recommend you verify the file came from the PHP GitHub repository
before running it, for example:
Expand Down
2 changes: 1 addition & 1 deletion test/end-to-end/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ FROM homebrew_base AS test_pie_installs_build_tools_with_brew
RUN brew update && brew install php
COPY --from=build_pie_phar /app/pie.phar /usr/local/bin/pie
USER root
RUN apt-get update && apt-get install -y unzip
RUN rm -f /etc/apt/sources.list.d/github-cli.list && apt-get update && apt-get install -y unzip
RUN apt-get remove --allow-remove-essential -y apt
USER linuxbrew
RUN pie install --auto-install-build-tools -v asgrim/example-pie-extension:2.0.5
Expand Down