Commit cda072bb authored by Otto Kekäläinen's avatar Otto Kekäläinen

Deb: Sync build and runtime dependencies from downstream to upstream

- Go back to using $MAJOR_VER instead of hard-coded version strings where
  possible.

- Default to 'auto' in NUMJOBS instead of just 1. Will make mysql-test-run
  faster.

- Unify autopkgtest with latest version in Debian, use eatmydata to make
  mysql-test-run faster.

- Salsa-CI: Remove obsolete 'artifacts: true' as that is the default value.

- Salsa-CI: Clean away obsolete temporary fixes.

- Salsa-CI: Unify with salsa-ci.yml in Debian, including test upgrades
  from Bullseye to Debian unstable.
parent 9bb65206
...@@ -492,7 +492,7 @@ Recommends: libhtml-template-perl ...@@ -492,7 +492,7 @@ Recommends: libhtml-template-perl
Pre-Depends: adduser (>= 3.40), Pre-Depends: adduser (>= 3.40),
debconf, debconf,
mariadb-common (>= ${source:Version}) mariadb-common (>= ${source:Version})
Depends: galera-4 (>=26.4), Depends: galera-4 (>= 26.4),
gawk, gawk,
iproute2 [linux-any], iproute2 [linux-any],
libdbi-perl, libdbi-perl,
......
...@@ -161,7 +161,7 @@ EOF ...@@ -161,7 +161,7 @@ EOF
# Clean up old flags before setting new one # Clean up old flags before setting new one
rm -f $mysql_datadir/debian-*.flag rm -f $mysql_datadir/debian-*.flag
# Flag data dir to avoid downgrades # Flag data dir to avoid downgrades
touch $mysql_datadir/debian-10.5.flag touch "$mysql_datadir/debian-$MAJOR_VER.flag"
# initiate databases. Output is not allowed by debconf :-( # initiate databases. Output is not allowed by debconf :-(
# This will fail if we are upgrading an existing database; in this case # This will fail if we are upgrading an existing database; in this case
......
...@@ -10,7 +10,7 @@ msgstr "" ...@@ -10,7 +10,7 @@ msgstr ""
"POT-Creation-Date: 2019-07-23 19:16-0300\n" "POT-Creation-Date: 2019-07-23 19:16-0300\n"
"PO-Revision-Date: 2016-05-12 22:39+0100\n" "PO-Revision-Date: 2016-05-12 22:39+0100\n"
"Last-Translator: Chris Leick <c.leick@vollbio.de>\n" "Last-Translator: Chris Leick <c.leick@vollbio.de>\n"
"Language-Team: german <debian-l10n-german@lists.debian.org>\n" "Language-Team: German <debian-l10n-german@lists.debian.org>\n"
"Language: \n" "Language: \n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
......
# mariadb translation to spanish # MariaDB translation to Spanish
# Copyright (C) 2005-2016 Software in the Public Interest, SPI Inc. # Copyright (C) 2005-2016 Software in the Public Interest, SPI Inc.
# This file is distributed under the same license as the mariadb package. # This file is distributed under the same license as the mariadb package.
# #
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: mariadb-10.5 10.0.13 italian debconf templates\n" "Project-Id-Version: mariadb-10.5 10.0.13 Italian debconf templates\n"
"Report-Msgid-Bugs-To: mariadb-10.5@packages.debian.org\n" "Report-Msgid-Bugs-To: mariadb-10.5@packages.debian.org\n"
"POT-Creation-Date: 2019-07-23 19:16-0300\n" "POT-Creation-Date: 2019-07-23 19:16-0300\n"
"PO-Revision-Date: 2017-083-20 20:29+0100\n" "PO-Revision-Date: 2017-083-20 20:29+0100\n"
......
...@@ -34,8 +34,8 @@ ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS))) ...@@ -34,8 +34,8 @@ ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
NUMJOBS = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS))) NUMJOBS = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
MAKEFLAGS += -j$(NUMJOBS) MAKEFLAGS += -j$(NUMJOBS)
else else
# NUMJOBS cannot be empty as it is used as a parameter to mtr, default to 1. # NUMJOBS cannot be empty as it is used as a parameter to mtr, default to 'auto'.
NUMJOBS = 1 NUMJOBS = auto
endif endif
# RocksDB cannot build on 32-bit platforms # RocksDB cannot build on 32-bit platforms
......
...@@ -21,7 +21,7 @@ stages: ...@@ -21,7 +21,7 @@ stages:
- build - build
- test - test
- upgrade in Sid - upgrade in Sid
- upgrade from Buster/Stretch - upgrade from Bullseye/Buster/Stretch
- upgrade extras - upgrade extras
- test extras - test extras
- publish # Stage referenced by Salsa-CI template aptly stanza, so must exist even though not used - publish # Stage referenced by Salsa-CI template aptly stanza, so must exist even though not used
...@@ -46,6 +46,11 @@ build: ...@@ -46,6 +46,11 @@ build:
- ccache -s # Show ccache stats to validate it worked - ccache -s # Show ccache stats to validate it worked
- mv ${CCACHE_TMP_DIR} ${CCACHE_WORK_DIR} || true - mv ${CCACHE_TMP_DIR} ${CCACHE_WORK_DIR} || true
build bullseye-backports:
extends: .build-package
variables:
RELEASE: bullseye-backports
build buster-backports: build buster-backports:
extends: .build-package extends: .build-package
script: script:
...@@ -121,7 +126,6 @@ blhc: ...@@ -121,7 +126,6 @@ blhc:
stage: test extras stage: test extras
needs: needs:
- job: build native deb - job: build native deb
artifacts: true
# In addition to Salsa-CI, also run these fully MariaDB specific build jobs # In addition to Salsa-CI, also run these fully MariaDB specific build jobs
...@@ -148,9 +152,10 @@ blhc: ...@@ -148,9 +152,10 @@ blhc:
dpkg -l | grep -iE 'maria|mysql|galera' || true # List installed dpkg -l | grep -iE 'maria|mysql|galera' || true # List installed
service mysql status || service mariadb status # Early MariaDB 10.5 only had 'mariadb' service mysql status || service mariadb status # Early MariaDB 10.5 only had 'mariadb'
mysql --skip-column-names -e "select @@version, @@version_comment" # Show version mysql --skip-column-names -e "select @@version, @@version_comment" # Show version
echo 'SHOW DATABASES;' | mysql # List databases before upgrade mysql --table -e 'SHOW DATABASES;' # List databases before upgrade
mysql -e "SELECT Host, User, plugin,authentication_string FROM user;" mysql mysql --table -e "SELECT host,user,plugin,authentication_string FROM user;" mysql
mysql -e "SELECT * FROM plugin;" mysql mysql --table -e "SELECT * FROM plugin;" mysql
mysql --table -e "SHOW PLUGINS;" mysql
.test-enable-sid-repos: &test-enable-sid-repos | .test-enable-sid-repos: &test-enable-sid-repos |
# Replace any old repos with just Sid # Replace any old repos with just Sid
...@@ -172,10 +177,12 @@ blhc: ...@@ -172,10 +177,12 @@ blhc:
cp -ra /etc/mysql debug/etc-mysql cp -ra /etc/mysql debug/etc-mysql
cp -ra /var/log/mysql debug/var-log-mysql cp -ra /var/log/mysql debug/var-log-mysql
mariadb --skip-column-names -e "select @@version, @@version_comment" # Show version mariadb --skip-column-names -e "select @@version, @@version_comment" # Show version
echo 'SHOW DATABASES;' | mariadb # List databases mariadb --table -e 'SHOW DATABASES;' # List databases
mariadb -e "create database test; use test; create table t(a int primary key) engine=innodb; insert into t values (1); select * from t; drop table t; drop database test;" # Test that InnoDB works mariadb --table -e "SELECT host,user,plugin,authentication_string FROM user;" mysql
mariadb -e "SELECT Host, User, plugin,authentication_string FROM user;" mysql mariadb --table -e "SELECT * FROM plugin;" mysql
mariadb -e "SELECT * FROM plugin;" mysql mariadb --table -e "SHOW PLUGINS;" mysql
# Test that InnoDB works and that command 'mysql' is also still usable
mysql -e "CREATE DATABASE test; USE test; CREATE TABLE t(a INT PRIMARY KEY) ENGINE=INNODB; INSERT INTO t VALUEs (1); SELECT * FROM t; DROP TABLE t; DROP DATABASE test;"
.test-verify-libs: &test-verify-libs .test-verify-libs: &test-verify-libs
# Don't use a collapsed command as Gitlab-CI would hide each command from the output # Don't use a collapsed command as Gitlab-CI would hide each command from the output
...@@ -193,7 +200,6 @@ fresh install: ...@@ -193,7 +200,6 @@ fresh install:
stage: test stage: test
needs: needs:
- job: build - job: build
artifacts: true
image: debian:${RELEASE} image: debian:${RELEASE}
artifacts: artifacts:
when: always when: always
...@@ -215,7 +221,6 @@ mariadb-10.5 Sid upgrade: ...@@ -215,7 +221,6 @@ mariadb-10.5 Sid upgrade:
stage: upgrade in Sid stage: upgrade in Sid
needs: needs:
- job: build - job: build
artifacts: true
image: debian:${RELEASE} image: debian:${RELEASE}
artifacts: artifacts:
when: always when: always
...@@ -233,11 +238,36 @@ mariadb-10.5 Sid upgrade: ...@@ -233,11 +238,36 @@ mariadb-10.5 Sid upgrade:
variables: variables:
- $CI_COMMIT_TAG != null && $SALSA_CI_ENABLE_PIPELINE_ON_TAGS !~ /^(1|yes|true)$/ - $CI_COMMIT_TAG != null && $SALSA_CI_ENABLE_PIPELINE_ON_TAGS !~ /^(1|yes|true)$/
mariadb-10.5 Bullseye to mariadb-10.5 upgrade:
stage: upgrade from Bullseye/Buster/Stretch
needs:
- job: build
image: debian:bullseye
artifacts:
when: always
name: "$CI_BUILD_NAME"
paths:
- ${WORKING_DIR}/debug
script:
- *test-prepare-container
# Install everything MariaDB currently in Debian Bullseye
- apt-get install -y 'default-mysql*' 'mariadb-*' 'libmariadb*'
# Verify installation of MariaDB from Bullseye
- *test-verify-initial
- *test-enable-sid-repos
- *test-install
- service mariadb status
- *test-verify-final
variables:
GIT_STRATEGY: none
except:
variables:
- $CI_COMMIT_TAG != null && $SALSA_CI_ENABLE_PIPELINE_ON_TAGS !~ /^(1|yes|true)$/
mariadb-10.3 Buster to mariadb-10.5 upgrade: mariadb-10.3 Buster to mariadb-10.5 upgrade:
stage: upgrade from Buster/Stretch stage: upgrade from Bullseye/Buster/Stretch
needs: needs:
- job: build - job: build
artifacts: true
image: debian:buster image: debian:buster
artifacts: artifacts:
when: always when: always
...@@ -261,10 +291,9 @@ mariadb-10.3 Buster to mariadb-10.5 upgrade: ...@@ -261,10 +291,9 @@ mariadb-10.3 Buster to mariadb-10.5 upgrade:
- $CI_COMMIT_TAG != null && $SALSA_CI_ENABLE_PIPELINE_ON_TAGS !~ /^(1|yes|true)$/ - $CI_COMMIT_TAG != null && $SALSA_CI_ENABLE_PIPELINE_ON_TAGS !~ /^(1|yes|true)$/
mariadb-10.1 Stretch to mariadb-10.5 upgrade: mariadb-10.1 Stretch to mariadb-10.5 upgrade:
stage: upgrade from Buster/Stretch stage: upgrade from Bullseye/Buster/Stretch
needs: needs:
- job: build - job: build
artifacts: true
image: debian:stretch image: debian:stretch
artifacts: artifacts:
when: always when: always
...@@ -278,8 +307,7 @@ mariadb-10.1 Stretch to mariadb-10.5 upgrade: ...@@ -278,8 +307,7 @@ mariadb-10.1 Stretch to mariadb-10.5 upgrade:
- apt-get install -y 'default-mysql*' 'mariadb-*' 'libmariadbd*' 'libmariadbclient*' - apt-get install -y 'default-mysql*' 'mariadb-*' 'libmariadbd*' 'libmariadbclient*'
# Verify installation of MariaDB from Stretch # Verify installation of MariaDB from Stretch
- *test-verify-initial - *test-verify-initial
# Remove manpages 4.10 that conflicts with manpages-dev 5.10 on console_ioctl.4.gz - apt-get remove -y manpages # Workaround for Bug#99375
- apt-get remove -y manpages
- *test-enable-sid-repos - *test-enable-sid-repos
- *test-install - *test-install
- service mysql status - service mysql status
...@@ -294,7 +322,6 @@ test basic features: ...@@ -294,7 +322,6 @@ test basic features:
stage: test stage: test
needs: needs:
- job: build - job: build
artifacts: true
image: debian:${RELEASE} image: debian:${RELEASE}
artifacts: artifacts:
when: always when: always
...@@ -378,7 +405,6 @@ build mariadbclient consumer Python-MySQLdb: ...@@ -378,7 +405,6 @@ build mariadbclient consumer Python-MySQLdb:
stage: test stage: test
needs: needs:
- job: build - job: build
artifacts: true
image: debian:${RELEASE} image: debian:${RELEASE}
script: script:
- *test-prepare-container - *test-prepare-container
...@@ -400,7 +426,6 @@ libmysql* to libmariadb* upgrade: ...@@ -400,7 +426,6 @@ libmysql* to libmariadb* upgrade:
stage: upgrade in Sid stage: upgrade in Sid
needs: needs:
- job: build - job: build
artifacts: true
image: debian:${RELEASE} image: debian:${RELEASE}
artifacts: artifacts:
when: always when: always
...@@ -434,7 +459,6 @@ default-libmysqlclient-dev Sid upgrade: ...@@ -434,7 +459,6 @@ default-libmysqlclient-dev Sid upgrade:
stage: upgrade in Sid stage: upgrade in Sid
needs: needs:
- job: build - job: build
artifacts: true
image: debian:${RELEASE} image: debian:${RELEASE}
artifacts: artifacts:
when: always when: always
...@@ -452,10 +476,9 @@ default-libmysqlclient-dev Sid upgrade: ...@@ -452,10 +476,9 @@ default-libmysqlclient-dev Sid upgrade:
- $CI_COMMIT_TAG != null && $SALSA_CI_ENABLE_PIPELINE_ON_TAGS !~ /^(1|yes|true)$/ - $CI_COMMIT_TAG != null && $SALSA_CI_ENABLE_PIPELINE_ON_TAGS !~ /^(1|yes|true)$/
default-libmysqlclient-dev Buster upgrade: default-libmysqlclient-dev Buster upgrade:
stage: upgrade from Buster/Stretch stage: upgrade from Bullseye/Buster/Stretch
needs: needs:
- job: build - job: build
artifacts: true
image: debian:buster image: debian:buster
artifacts: artifacts:
when: always when: always
...@@ -474,10 +497,9 @@ default-libmysqlclient-dev Buster upgrade: ...@@ -474,10 +497,9 @@ default-libmysqlclient-dev Buster upgrade:
- $CI_COMMIT_TAG != null && $SALSA_CI_ENABLE_PIPELINE_ON_TAGS !~ /^(1|yes|true)$/ - $CI_COMMIT_TAG != null && $SALSA_CI_ENABLE_PIPELINE_ON_TAGS !~ /^(1|yes|true)$/
default-libmysqlclient-dev Stretch upgrade: default-libmysqlclient-dev Stretch upgrade:
stage: upgrade from Buster/Stretch stage: upgrade from Bullseye/Buster/Stretch
needs: needs:
- job: build - job: build
artifacts: true
image: debian:stretch image: debian:stretch
artifacts: artifacts:
when: always when: always
...@@ -488,8 +510,7 @@ default-libmysqlclient-dev Stretch upgrade: ...@@ -488,8 +510,7 @@ default-libmysqlclient-dev Stretch upgrade:
- *test-prepare-container - *test-prepare-container
- apt-get install -y pkg-config default-libmysqlclient-dev - apt-get install -y pkg-config default-libmysqlclient-dev
- pkg-config --list-all - pkg-config --list-all
# Remove manpages 4.10 that conflicts with manpages-dev 5.10 on console_ioctl.4.gz - apt-get remove -y manpages # Workaround for Bug#99375
- apt-get remove -y manpages
- *test-enable-sid-repos - *test-enable-sid-repos
- *test-install-all-libs - *test-install-all-libs
- *test-verify-libs - *test-verify-libs
...@@ -497,13 +518,36 @@ default-libmysqlclient-dev Stretch upgrade: ...@@ -497,13 +518,36 @@ default-libmysqlclient-dev Stretch upgrade:
variables: variables:
- $CI_COMMIT_TAG != null && $SALSA_CI_ENABLE_PIPELINE_ON_TAGS !~ /^(1|yes|true)$/ - $CI_COMMIT_TAG != null && $SALSA_CI_ENABLE_PIPELINE_ON_TAGS !~ /^(1|yes|true)$/
mariadb-connector-c Stretch upgrade:
stage: upgrade from Bullseye/Buster/Stretch
needs:
- job: build
image: debian:stretch
artifacts:
when: always
name: "$CI_BUILD_NAME"
paths:
- ${WORKING_DIR}/debug
script:
- *test-prepare-container
- apt-get install -y pkg-config libmariadb2 libmariadb-dev libmariadb-dev-compat
- pkg-config --list-all
- apt-get remove -y manpages # Workaround for Bug#99375
- *test-enable-sid-repos
- *test-install-all-libs
- *test-verify-libs
except:
variables:
- $CI_COMMIT_TAG != null && $SALSA_CI_ENABLE_PIPELINE_ON_TAGS !~ /^(1|yes|true)$/
allow_failure: true
# Upgrading libc from Stretch to Bookworm is not possible due to Bug#993755
# Upgrading from MySQL 8.0 with datadir in place is not possible. Users need to do a data dump. # Upgrading from MySQL 8.0 with datadir in place is not possible. Users need to do a data dump.
# The Debian maintainer scripts detect this situation and simply moves old datadir aside and start fresh. # The Debian maintainer scripts detect this situation and simply moves old datadir aside and start fresh.
mysql-8.0 Sid to mariadb-10.5 upgrade: mysql-8.0 Sid to mariadb-10.5 upgrade:
stage: upgrade in Sid stage: upgrade in Sid
needs: needs:
- job: build - job: build
artifacts: true
image: debian:sid image: debian:sid
artifacts: artifacts:
when: always when: always
...@@ -531,7 +575,6 @@ mysql-8.0 Focal to mariadb-10.5 upgrade: ...@@ -531,7 +575,6 @@ mysql-8.0 Focal to mariadb-10.5 upgrade:
stage: upgrade extras stage: upgrade extras
needs: needs:
- job: build buster-backports - job: build buster-backports
artifacts: true
image: debian:buster image: debian:buster
artifacts: artifacts:
when: always when: always
...@@ -565,7 +608,6 @@ mysql-5.7 Bionic to mariadb-10.5 upgrade: ...@@ -565,7 +608,6 @@ mysql-5.7 Bionic to mariadb-10.5 upgrade:
stage: upgrade extras stage: upgrade extras
needs: needs:
- job: build stretch-backports - job: build stretch-backports
artifacts: true
image: debian:stretch image: debian:stretch
artifacts: artifacts:
when: always when: always
...@@ -601,7 +643,6 @@ mariadb.org-10.5 to mariadb-10.5 upgrade: ...@@ -601,7 +643,6 @@ mariadb.org-10.5 to mariadb-10.5 upgrade:
stage: upgrade extras stage: upgrade extras
needs: needs:
- job: build - job: build
artifacts: true
image: debian:sid image: debian:sid
artifacts: artifacts:
when: always when: always
...@@ -614,7 +655,6 @@ mariadb.org-10.5 to mariadb-10.5 upgrade: ...@@ -614,7 +655,6 @@ mariadb.org-10.5 to mariadb-10.5 upgrade:
- curl -sS https://mariadb.org/mariadb_release_signing_key.asc -o /etc/apt/trusted.gpg.d/mariadb.asc - curl -sS https://mariadb.org/mariadb_release_signing_key.asc -o /etc/apt/trusted.gpg.d/mariadb.asc
- echo 'deb http://mirror.one.com/mariadb/repo/10.5/debian sid main' > /etc/apt/sources.list.d/mariadb.list - echo 'deb http://mirror.one.com/mariadb/repo/10.5/debian sid main' > /etc/apt/sources.list.d/mariadb.list
- apt-get update - apt-get update
- *test-install-readline-in-sid-for-backwards-compat
# The 10.5.9 release is missing mariadb-plugin-columnstore, define all other packages but it to avoid hitting the error: # The 10.5.9 release is missing mariadb-plugin-columnstore, define all other packages but it to avoid hitting the error:
# The following packages have unmet dependencies: # The following packages have unmet dependencies:
# mariadb-plugin-columnstore : Depends: mariadb-server-10.5 (= 1:10.5.8+maria~sid) but 1:10.5.9+maria~sid is to be installed # mariadb-plugin-columnstore : Depends: mariadb-server-10.5 (= 1:10.5.8+maria~sid) but 1:10.5.9+maria~sid is to be installed
...@@ -641,7 +681,6 @@ mariadb.org-10.4 to mariadb-10.5 upgrade: ...@@ -641,7 +681,6 @@ mariadb.org-10.4 to mariadb-10.5 upgrade:
stage: upgrade extras stage: upgrade extras
needs: needs:
- job: build - job: build
artifacts: true
image: debian:sid image: debian:sid
artifacts: artifacts:
when: always when: always
...@@ -675,7 +714,6 @@ mariadb.org-10.3 to mariadb-10.5 upgrade: ...@@ -675,7 +714,6 @@ mariadb.org-10.3 to mariadb-10.5 upgrade:
stage: upgrade extras stage: upgrade extras
needs: needs:
- job: build - job: build
artifacts: true
image: debian:sid image: debian:sid
artifacts: artifacts:
when: always when: always
...@@ -712,7 +750,6 @@ mariadb.org-10.2 to mariadb-10.5 upgrade: ...@@ -712,7 +750,6 @@ mariadb.org-10.2 to mariadb-10.5 upgrade:
stage: upgrade extras stage: upgrade extras
needs: needs:
- job: build - job: build
artifacts: true
image: debian:sid image: debian:sid
artifacts: artifacts:
when: always when: always
...@@ -749,7 +786,6 @@ mysql.com-5.7 to mariadb-10.5 upgrade: ...@@ -749,7 +786,6 @@ mysql.com-5.7 to mariadb-10.5 upgrade:
stage: upgrade extras stage: upgrade extras
needs: needs:
- job: build buster-backports - job: build buster-backports
artifacts: true
image: debian:buster image: debian:buster
artifacts: artifacts:
when: always when: always
...@@ -781,7 +817,6 @@ percona-xtradb-5.7 to mariadb-10.5 upgrade (MDEV-22679): ...@@ -781,7 +817,6 @@ percona-xtradb-5.7 to mariadb-10.5 upgrade (MDEV-22679):
stage: upgrade extras stage: upgrade extras
needs: needs:
- job: build buster-backports - job: build buster-backports
artifacts: true
image: debian:buster image: debian:buster
artifacts: artifacts:
when: always when: always
......
...@@ -7,5 +7,5 @@ Depends: mariadb-plugin-rocksdb | mariadb-server-10.5 ...@@ -7,5 +7,5 @@ Depends: mariadb-plugin-rocksdb | mariadb-server-10.5
Restrictions: allow-stderr needs-root isolation-container Restrictions: allow-stderr needs-root isolation-container
Tests: upstream Tests: upstream
Depends: mariadb-test Depends: mariadb-test, eatmydata
Restrictions: allow-stderr breaks-testbed Restrictions: allow-stderr breaks-testbed
...@@ -60,7 +60,9 @@ fi ...@@ -60,7 +60,9 @@ fi
cd /usr/share/mysql/mysql-test cd /usr/share/mysql/mysql-test
echo "starting mysql-test-tun.pl..." echo "starting mysql-test-tun.pl..."
perl -I. ./mysql-test-run.pl --suite=main --vardir="$WORKDIR/var" --tmpdir="$WORKDIR/tmp" \ eatmydata perl -I. ./mysql-test-run.pl --suite=main \
--vardir="$WORKDIR/var" --tmpdir="$WORKDIR/tmp" \
--parallel=auto --skip-rpl \ --parallel=auto --skip-rpl \
--force --skip-test-list=$SKIP_TEST_LST $@ 2>&1 --force --skip-test-list=$SKIP_TEST_LST \
--xml-report=$AUTOPKGTEST_ARTIFACTS/mysql-test-run-junit.xml $@ 2>&1
echo "run: OK" echo "run: OK"
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment