Skip to content

Commit

Permalink
Update test matrix and mysql version in test
Browse files Browse the repository at this point in the history
  • Loading branch information
yamatcha committed Jan 28, 2025
1 parent 22479c4 commit 9586ce5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
name: Small Tests
strategy:
matrix:
mysql-version: ["8.0.28", "8.0.36", "8.0.37", "8.4.0"]
mysql-version: ["8.0.28", "8.0.39", "8.0.40", "8.0.41", "8.4.4"]
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
MYSQL_VERSION = 8.4.0
MYSQL_VERSION = 8.4.4

# For Go
GOOS := $(shell go env GOOS)
Expand Down
2 changes: 1 addition & 1 deletion server/mysql_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ var tmpBaseDir = path.Join(os.TempDir(), "moco-agent-test-server")

var MySQLVersion = func() string {
if ver := os.Getenv("MYSQL_VERSION"); ver == "" {
os.Setenv("MYSQL_VERSION", "8.4.0")
os.Setenv("MYSQL_VERSION", "8.4.4")
}
return os.Getenv("MYSQL_VERSION")
}()
Expand Down

0 comments on commit 9586ce5

Please sign in to comment.