summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElena Stepanova <elenst@mariadb.com>2023-05-02 17:02:56 +0300
committerElena Stepanova <elenst@mariadb.com>2023-05-02 17:02:56 +0300
commit20b6ac813a8e53343efe788fc0d65d18cbf50b61 (patch)
tree576a3e107f42ae97b84d3b1c7d18b9535c6b9941
parent7e2e96899711316aa99ef025e0d845f7430f2b32 (diff)
downloadmariadb-git-10.6-elenst.tar.gz
MacOS tests10.6-elenst
-rw-r--r--.azure-pipelines.yml26
1 files changed, 26 insertions, 0 deletions
diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml
new file mode 100644
index 00000000000..c60d17d0b90
--- /dev/null
+++ b/.azure-pipelines.yml
@@ -0,0 +1,26 @@
+# Starter pipeline
+# Start with a minimal pipeline that you can customize to build and deploy your code.
+# Add steps that build, run tests, deploy, and more:
+# https://aka.ms/yaml
+
+trigger:
+- 10.6-elenst
+
+pool:
+ vmImage: 'macOS-12'
+
+steps:
+- script: echo Hello, world!
+ displayName: 'Run a one-line script'
+
+- script: |
+ set +e
+ pwd
+ ls -l
+ df -kT
+ cat /proc/cpuinfo
+ cmake .
+ make
+ cd mysql-test
+ perl mysql-test-run.pl --suite=main --force --max-test-fail=0
+ displayName: 'Build and MTR'