Skip to content

Commit

Permalink
Add 8.4 to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
morgo committed May 19, 2024
1 parent 886ee21 commit 5176ba3
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 50 deletions.
21 changes: 0 additions & 21 deletions .github/workflows/mysql82.yml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: MySQL 8.1 innovation release
name: MySQL 8.4 GA
on:
push:
branches: [ main ]
Expand All @@ -15,7 +15,7 @@ jobs:
uses: actions/checkout@v4

- name: Deploy MySQL
run: scripts/dbdeployer_install_81.sh
run: scripts/dbdeployer_install_84.sh

- name: Test
run: MYSQL_DSN="msandbox:msandbox@tcp(127.0.0.1:8100)/test" go test -race -v ./...
run: MYSQL_DSN="msandbox:msandbox@tcp(127.0.0.1:8400)/test" go test -race -v ./...
13 changes: 0 additions & 13 deletions scripts/dbdeployer_install_81.sh

This file was deleted.

13 changes: 0 additions & 13 deletions scripts/dbdeployer_install_82.sh

This file was deleted.

13 changes: 13 additions & 0 deletions scripts/dbdeployer_install_84.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/bin/bash
set -xe

sudo apt install -y libncurses5

go install github.com/datacharmer/dbdeployer@latest

dbdeployer init
wget https://dev.mysql.com/get/Downloads/MySQL-8.4/mysql-8.4.0-linux-glibc2.28-x86_64.tar.xz
dbdeployer unpack mysql-8.4.0-linux-glibc2.28-x86_64.tar.xz
dbdeployer deploy single 8.4.0

cat ~/sandboxes/msb_8_4_0/sbdescription.json

0 comments on commit 5176ba3

Please sign in to comment.