Fix password (again again)

This commit is contained in:
kolaente 2018-06-20 14:55:36 +02:00
parent 38e8b9c4d3
commit 6e3e458715
No known key found for this signature in database
GPG Key ID: F40E70337AB24C9B
2 changed files with 2 additions and 2 deletions

View File

@ -360,7 +360,7 @@ services:
image: microsoft/mssql-server-linux:latest image: microsoft/mssql-server-linux:latest
environment: environment:
- ACCEPT_EULA=Y - ACCEPT_EULA=Y
- SA_PASSWORD='M$wantsaSecurePassword1' - SA_PASSWORD=MwantsaSecurePassword1
- MSSQL_PID=Standard - MSSQL_PID=Standard
when: when:
event: [ push, tag, pull_request ] event: [ push, tag, pull_request ]

View File

@ -41,7 +41,7 @@ TEST_PGSQL_PASSWORD ?= postgres
TEST_MSSQL_HOST ?= mssql:1433 TEST_MSSQL_HOST ?= mssql:1433
TEST_MSSQL_DBNAME ?= testgitea TEST_MSSQL_DBNAME ?= testgitea
TEST_MSSQL_USERNAME ?= sa TEST_MSSQL_USERNAME ?= sa
TEST_MSSQL_PASSWORD ?= M$wantsaSecurePassword1 TEST_MSSQL_PASSWORD ?= MwantsaSecurePassword1
ifeq ($(OS), Windows_NT) ifeq ($(OS), Windows_NT)
EXECUTABLE := gitea.exe EXECUTABLE := gitea.exe