File tree 2 files changed +11
-3
lines changed 2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ jobs:
111
111
- image : cimg/php:8.3-browsers
112
112
environment :
113
113
DRUPAL_VERSION : 11@alpha
114
- DRUPAL_PROJECT_REPO : https://github.com/AlexSkrypnyk/drupal-project.git
114
+ DRUPAL_PROJECT_SHA : 11.x
115
115
<< : *job-test
116
116
117
117
deploy :
Original file line number Diff line number Diff line change @@ -37,14 +37,13 @@ jobs:
37
37
- name : test-php-8.3-next
38
38
php-version : 8.3
39
39
drupal-version : 11@alpha
40
- drupal-project-repo : https://github.com/AlexSkrypnyk/drupal-project.git
40
+ drupal-project-sha : 11.x
41
41
42
42
name : ${{ matrix.name }}
43
43
44
44
env :
45
45
DRUPAL_VERSION : ${{ matrix.drupal-version }}
46
46
DRUPAL_PROJECT_SHA : ${{ matrix.drupal-project-sha }}
47
- DRUPAL_PROJECT_REPO : ${{ matrix.drupal-project-repo }}
48
47
49
48
steps :
50
49
- name : Checkout code
56
55
path : /tmp/composer-cache
57
56
key : ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
58
57
58
+ - name : Upgrade sqlite3
59
+ run : |
60
+ wget https://www.sqlite.org/2024/sqlite-autoconf-3450300.tar.gz -O /tmp/sqlite.tar.gz
61
+ tar -xzf /tmp/sqlite.tar.gz -C /tmp
62
+ cd /tmp/sqlite-autoconf-3450300
63
+ ./configure CFLAGS="-DSQLITE_ENABLE_COLUMN_METADATA=1" --prefix=/usr/local
64
+ make && sudo make install
65
+ sudo ldconfig
66
+
59
67
- name : Setup PHP
60
68
uses : shivammathur/setup-php@v2
61
69
with :
You can’t perform that action at this time.
0 commit comments