Skip to content

Commit 9d7c6e5

Browse files
committed
Merge branch 'true-async' into true-async-stable
2 parents 0f31425 + 6e872d1 commit 9d7c6e5

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.circleci/config-true-async.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
version: 2.1
22

33
jobs:
4-
arm:
5-
resource_class: arm.medium
4+
build-php:
65
docker:
76
- image: cimg/base:current-22.04
87
- image: mysql:8.3
@@ -24,13 +23,14 @@ jobs:
2423
PDO_MYSQL_TEST_PASS: ''
2524
PDO_MYSQL_TEST_USER: root
2625
PDO_PGSQL_TEST_DSN: 'pgsql:host=127.0.0.1 port=5432 dbname=test user=postgres password=postgres'
26+
2727
steps:
2828
- checkout
29+
2930
- run:
30-
name: Install system dependencies (including true async + libuv)
31+
name: Install build dependencies
3132
command: |
32-
export DEBIAN_FRONTEND=noninteractive
33-
sudo apt-get update -y
33+
sudo apt-get update
3434
sudo apt-get install -y \
3535
gcc \
3636
g++ \
@@ -150,8 +150,7 @@ jobs:
150150
--with-config-file-path=/etc \
151151
--with-config-file-scan-dir=/etc/php.d \
152152
--with-pdo-firebird \
153-
--enable-experimental-async-api \ # <-- PHP true async API support
154-
--enable-async \ # <-- PHP true async extension
153+
--enable-async \
155154
--disable-phpdbg
156155
- run:
157156
name: make
@@ -186,6 +185,7 @@ jobs:
186185
--repeat 2
187186
188187
workflows:
189-
push-workflow:
188+
version: 2
189+
build:
190190
jobs:
191-
- arm
191+
- build-php

0 commit comments

Comments
 (0)