Skip to content

Commit 48cc1e5

Browse files
authored
Merge pull request #160 from movabletype/split_config
Split config
2 parents d3ffd6a + 6f2c080 commit 48cc1e5

39 files changed

Lines changed: 932 additions & 1309 deletions

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ Dockerfile to test MT.
4040
|rockylinux|rockylinux/rockylinux:9|5.32.1|8.1.34|8.0.44|3.5.1|-|
4141
|bookworm|debian:bookworm-slim|5.36.0|8.2.29|MariaDB 10.11.14|3.0.17|2028-06|
4242
|sid|debian:sid|5.40.1|8.4.16|MariaDB 11.8.5|3.5.4|-|
43-
|amazonlinux|amazonlinux:2|5.16.3|7.4.33|MariaDB 5.5.68|1.0.2k|-|
4443
|amazonlinux2023|amazonlinux:2023|5.32.1|8.4.14|MariaDB 10.11.13|3.2.2|-|
4544
|postgresql|fedora:41|5.40.3|8.3.27|Postgres 16.11|3.2.6|-|
4645
|oracle (\*3)|oraclelinux:9-slim|5.32.1|8.3.29|MariaDB 10.5.29|3.5.1|-|

addons8/Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ RUN dnf install -y \
1212
curl -kLO ftp://ftp.proftpd.org/distrib/source/proftpd-1.3.8b.tar.gz &&\
1313
tar xf proftpd-1.3.8b.tar.gz && cd proftpd-1.3.8b &&\
1414
./configure --prefix=/usr/local --enable-dso --enable-openssl --with-pic --enable-nls --with-modules=mod_tls &&\
15-
make && make install && cd .. && rm -rf proftpd-*
15+
make && make install && cd .. && rm -rf proftpd-* &&\
16+
curl -LO https://garagehq.deuxfleurs.fr/_releases/v2.1.0/`uname -m`-unknown-linux-musl/garage &&\
17+
chmod +x garage && mv garage /usr/local/bin
1618

1719
COPY ./docker-entrypoint.sh /
1820
ENTRYPOINT ["/docker-entrypoint.sh"]

addons8/docker-entrypoint.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ mysql -e "grant all privileges on mt_test.* to mt@localhost;"
1717

1818
memcached -d -u root
1919

20-
dockerd &
21-
2220
if [ -f t/cpanfile ]; then
2321
cpanm --installdeps -n . --cpanfile=t/cpanfile
2422
fi

amazonlinux/Dockerfile

Lines changed: 0 additions & 75 deletions
This file was deleted.

amazonlinux/docker-entrypoint.sh

Lines changed: 0 additions & 23 deletions
This file was deleted.

bin/build_all.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
);
3232
my %aliases_rev;
3333

34-
my %multi_platform = map { $_ => 1 } qw( noble plucky questing );
34+
my %multi_platform = map { $_ => 1 } qw( noble plucky questing oracle );
3535

3636
while (my ($alias, $name) = each %aliases) {
3737
$aliases_rev{$name} ||= [];

bin/test_workflows.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
my %tags = map { $_ => 1 } @{ $local->{jobs}{'pull-and-push'}{strategy}{matrix}{tag} // [] };
99
$tags{centos6} = 1; # special case
1010

11-
my @branches = qw(develop support-8.8.x support-8.4.x support-8.0.x);
11+
my @branches = qw(develop support-8.8.x support-8.0.x);
1212
my @repos = qw(movabletype movabletype-addons movabletype-plugins);
1313

1414
my %used;

0 commit comments

Comments
 (0)