Skip to content

Commit

Permalink
Fix static binary extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
julienj committed Mar 25, 2024
1 parent 17378ca commit 08ef9a1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ jobs:
- name: Build static binary
run: |
bin/spc download --for-extensions="dom,gmp,openssl,phar,sodium,xml,xmlwriter" --with-php=8.3
bin/spc build "dom,gmp,openssl,phar,sodium,xml,xmlwriter" ${{ matrix.build_options }}
bin/spc download --for-extensions="dom,gmp,openssl,phar,sodium,xml,xmlwriter,filter,tokenizer,iconv,mbstring" --with-php=8.3
bin/spc build "dom,gmp,openssl,phar,sodium,xml,xmlwriter,filter,tokenizer,iconv,mbstring" ${{ matrix.build_options }}
bin/spc micro:combine build/automate.phar --output build/${{ matrix.filename }}
- name: Ensure the static binary works
Expand Down
2 changes: 1 addition & 1 deletion src/Automate/Listener/LockListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
use Automate\Event\DeployEvents;
use Automate\Model\Server;
use Automate\Workflow\Session;
use RectorPrefix202403\Symfony\Component\Filesystem\Path;
use Symfony\Component\Filesystem\Path;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;

class LockListener implements EventSubscriberInterface
Expand Down

0 comments on commit 08ef9a1

Please sign in to comment.