Skip to content

Commit 2dcd7c4

Browse files
committed
HM-1: Update build.yml and CODEOWNERS
1 parent 65e42d0 commit 2dcd7c4

File tree

2 files changed

+6
-14
lines changed

2 files changed

+6
-14
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @Sylius/core-team
1+
* @Sylius/key-contributors @Sylius/development-team

.github/workflows/build.yml

Lines changed: 5 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ jobs:
2323
fail-fast: false
2424
matrix:
2525
php: [ "8.2", "8.3" ]
26-
symfony: [ "^7.1" ]
26+
symfony: [ "6.4", "^7.1" ]
2727
sylius: [ "^2.0" ]
2828
node: [ "20.x" ]
29-
mysql: [ "8.0" ]
30-
state_machine_adapter: ["winzou_state_machine", "symfony_workflow"]
29+
mysql: [ "8.4" ]
30+
state_machine_adapter: ["symfony_workflow"]
3131

3232
env:
3333
APP_ENV: test
@@ -63,14 +63,6 @@ jobs:
6363
mysql version: "${{ matrix.mysql }}"
6464
mysql root password: "root"
6565

66-
-
67-
name: Configure sysctl limits
68-
run: |
69-
sudo swapoff -a
70-
sudo sysctl -w vm.swappiness=1
71-
sudo sysctl -w fs.file-max=262144
72-
sudo sysctl -w vm.max_map_count=262144
73-
7466
-
7567
name: Output PHP version for Symfony CLI
7668
run: php -v | head -n 1 | awk '{ print $2 }' > .php-version
@@ -121,7 +113,7 @@ jobs:
121113
-
122114
name: Get Yarn cache directory
123115
id: yarn-cache
124-
run: echo "::set-output name=dir::$(yarn cache dir)"
116+
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
125117

126118
-
127119
name: Cache Yarn
@@ -140,7 +132,7 @@ jobs:
140132
name: Prepare test application database
141133
run: |
142134
(cd tests/Application && bin/console doctrine:database:create -vvv)
143-
(cd tests/Application && bin/console doctrine:schema:create -vvv)
135+
(cd tests/Application && bin/console doctrine:migrations:migrate -vvv)
144136
145137
-
146138
name: Prepare test application assets

0 commit comments

Comments
 (0)