Skip to content
This repository was archived by the owner on May 7, 2024. It is now read-only.

Commit 52f92bb

Browse files
authored
Fixing naming convention for local copy of sqltoolsservice, removed l… (#166)
* Fixing naming convention for local copy of sqltoolsservice, removed linux i686 support. * Fixing fix path for win_amd64.
1 parent 6cc6587 commit 52f92bb

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

build.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,8 +153,7 @@ def publish_official(platforms_names):
153153
'win32',
154154
'win_amd64',
155155
'macosx_10_11_intel',
156-
'manylinux1_x86_64',
157-
'manylinux1_i686']
156+
'manylinux1_x86_64']
158157

159158
targets = {
160159
'build': build,

mssqlscripter/mssqltoolsservice/external.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,8 @@
1919
# Supported platform key's must match those in mssqlscript's setup.py.
2020
SUPPORTED_PLATFORMS = {
2121
'manylinux1_x86_64': SQLTOOLSSERVICE_BASE + 'manylinux1/' + 'Microsoft.SqlTools.ServiceLayer-linux-x64-netcoreapp2.0.tar.gz',
22-
'manylinux1_i686': SQLTOOLSSERVICE_BASE + 'manylinux1/' + 'Microsoft.SqlTools.ServiceLayer-linux-x64-netcoreapp2.0.tar.gz',
2322
'macosx_10_11_intel': SQLTOOLSSERVICE_BASE + 'macosx_10_11_intel/' + 'Microsoft.SqlTools.ServiceLayer-osx-x64-netcoreapp2.0.tar.gz',
24-
'win_amd64': SQLTOOLSSERVICE_BASE + 'winamd64/' + 'Microsoft.SqlTools.ServiceLayer-win-x64-netcoreapp2.0.zip',
23+
'win_amd64': SQLTOOLSSERVICE_BASE + 'win_amd64/' + 'Microsoft.SqlTools.ServiceLayer-win-x64-netcoreapp2.0.zip',
2524
'win32': SQLTOOLSSERVICE_BASE + 'win32/' + 'Microsoft.SqlTools.ServiceLayer-win-x86-netcoreapp2.0.zip'
2625
}
2726

@@ -38,7 +37,7 @@ def copy_sqltoolsservice(platform):
3837
if not platform or platform not in SUPPORTED_PLATFORMS:
3938
print('{} is not supported.'.format(platform))
4039
print('Please provide a valid platform flag.' +
41-
'[win32, win_amd64, manylinux1_x86_64, manylinux1_i686, macosx_10_11_intel]')
40+
'[win32, win_amd64, manylinux1_x86_64, macosx_10_11_intel]')
4241
sys.exit(1)
4342

4443
copy_file_path = SUPPORTED_PLATFORMS[platform]

0 commit comments

Comments
 (0)