Commit 08d8b4c 1 parent 3300c97 commit 08d8b4c Copy full SHA for 08d8b4c
File tree 4 files changed +28
-15
lines changed
4 files changed +28
-15
lines changed Original file line number Diff line number Diff line change 11
11
runs-on : ${{ matrix.os }}
12
12
services :
13
13
sql.data :
14
- image : mcr.microsoft.com/mssql/server:2019-CU25-ubuntu-20.04
14
+ image : mcr.microsoft.com/mssql/server:2019-latest
15
15
env :
16
16
SA_PASSWORD : 1234567890@Eu
17
17
ACCEPT_EULA : Y
56
56
done
57
57
58
58
- name : Setup MSSQL
59
- run : sqlcmd -S localhost -U SA -P 1234567890@Eu -Q 'create database testing_db'
59
+ run : |
60
+ curl https://packages.microsoft.com/keys/microsoft.asc | sudo tee /etc/apt/trusted.gpg.d/microsoft.asc
61
+ curl https://packages.microsoft.com/config/ubuntu/22.04/prod.list | sudo tee /etc/apt/sources.list.d/mssql-release.list
62
+ sudo apt update
63
+ sudo apt install mssql-tools18
64
+ /opt/mssql-tools18/bin/sqlcmd -S localhost -U SA -P 1234567890@Eu -Q 'create database testing_db' -C
60
65
61
66
- name : Install Dependencies
62
67
run : composer install --prefer-source --no-interaction --no-dev
Original file line number Diff line number Diff line change 11
11
runs-on : ${{ matrix.os }}
12
12
services :
13
13
sql.data :
14
- image : mcr.microsoft.com/mssql/server:2019-CU25-ubuntu-20.04
14
+ image : mcr.microsoft.com/mssql/server:2019-latest
15
15
env :
16
16
SA_PASSWORD : 1234567890@Eu
17
17
ACCEPT_EULA : Y
56
56
done
57
57
58
58
- name : Setup MSSQL
59
- run : sqlcmd -S localhost -U SA -P 1234567890@Eu -Q 'create database testing_db'
59
+ run : |
60
+ curl https://packages.microsoft.com/keys/microsoft.asc | sudo tee /etc/apt/trusted.gpg.d/microsoft.asc
61
+ curl https://packages.microsoft.com/config/ubuntu/22.04/prod.list | sudo tee /etc/apt/sources.list.d/mssql-release.list
62
+ sudo apt update
63
+ sudo apt install mssql-tools18
64
+ /opt/mssql-tools18/bin/sqlcmd -S localhost -U SA -P 1234567890@Eu -Q 'create database testing_db' -C
60
65
61
66
- name : Install Dependencies
62
67
run : composer install --prefer-source --no-interaction --no-dev
Original file line number Diff line number Diff line change 11
11
runs-on : ${{ matrix.os }}
12
12
services :
13
13
sql.data :
14
- image : mcr.microsoft.com/mssql/server:2019-CU25-ubuntu-20.04
14
+ image : mcr.microsoft.com/mssql/server:2019-latest
15
15
env :
16
16
SA_PASSWORD : 1234567890@Eu
17
17
ACCEPT_EULA : Y
56
56
done
57
57
58
58
- name : Setup MSSQL
59
- run : sqlcmd -S localhost -U SA -P 1234567890@Eu -Q 'create database testing_db'
59
+ run : |
60
+ curl https://packages.microsoft.com/keys/microsoft.asc | sudo tee /etc/apt/trusted.gpg.d/microsoft.asc
61
+ curl https://packages.microsoft.com/config/ubuntu/22.04/prod.list | sudo tee /etc/apt/sources.list.d/mssql-release.list
62
+ sudo apt update
63
+ sudo apt install mssql-tools18
64
+ /opt/mssql-tools18/bin/sqlcmd -S localhost -U SA -P 1234567890@Eu -Q 'create database testing_db' -C
60
65
61
66
- name : Install Dependencies
62
67
run : composer install --prefer-source --no-interaction --no-dev
Original file line number Diff line number Diff line change 11
11
runs-on : ${{ matrix.os }}
12
12
services :
13
13
sql.data :
14
- image : mcr.microsoft.com/mssql/server:2019-CU27-ubuntu-20.04
14
+ image : mcr.microsoft.com/mssql/server:2019-latest
15
15
env :
16
16
SA_PASSWORD : 1234567890@Eu
17
17
ACCEPT_EULA : Y
27
27
name : PHP${{matrix.php}} - ${{matrix.os}}
28
28
29
29
steps :
30
- - name : List Containers
31
- run : docker ps -a
32
- - name : List
33
- run : |
34
- ls /opt/mssql/bin
35
- ls /opt/mssql-tools/bin
36
- ls /opt/mssql-tools18/bin
37
30
38
31
- name : Clone Repo
39
32
uses : actions/checkout@v4
64
57
done
65
58
66
59
- name : Setup MSSQL
67
- run : sqlcmd -S localhost -U SA -P 1234567890@Eu -Q 'create database testing_db'
60
+ run : |
61
+ curl https://packages.microsoft.com/keys/microsoft.asc | sudo tee /etc/apt/trusted.gpg.d/microsoft.asc
62
+ curl https://packages.microsoft.com/config/ubuntu/22.04/prod.list | sudo tee /etc/apt/sources.list.d/mssql-release.list
63
+ sudo apt update
64
+ sudo apt install mssql-tools18
65
+ /opt/mssql-tools18/bin/sqlcmd -S localhost -U SA -P 1234567890@Eu -Q 'create database testing_db' -C
68
66
69
67
- name : Install Dependencies
70
68
run : composer install --prefer-source --no-interaction --no-dev
You can’t perform that action at this time.
0 commit comments