Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
pymqi
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OpenVMS
Python
Modules
pymqi
Commits
9eec9adb3479
Commit
9eec9adb3479
authored
5 years ago
by
Seyf
Browse files
Options
Downloads
Patches
Plain Diff
GH #217 Add windows x86 installation tests
parent
31190c95cf6b
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
.github/workflows/install-tests.yml
+8
-1
8 additions, 1 deletion
.github/workflows/install-tests.yml
code/tests/test_setup.py
+1
-1
1 addition, 1 deletion
code/tests/test_setup.py
with
9 additions
and
2 deletions
.github/workflows/install-tests.yml
+
8
−
1
View file @
9eec9adb
...
@@ -11,8 +11,9 @@
...
@@ -11,8 +11,9 @@
matrix
:
matrix
:
environment
:
[
'
macos-latest'
,
'
windows-latest'
,
'
ubuntu-latest'
]
environment
:
[
'
macos-latest'
,
'
windows-latest'
,
'
ubuntu-latest'
]
python-version
:
[
2.7
,
3.5
,
3.6
,
3.7
,
3.8
]
python-version
:
[
2.7
,
3.5
,
3.6
,
3.7
,
3.8
]
python-architecture
:
[
'
x86'
,
'
x64'
]
mq-client-version
:
[
9.1.5.0
]
mq-client-version
:
[
9.1.5.0
]
exclude
:
exclude
:
# Windows runner does not have libraries required for build with python2.7
# Windows runner does not have libraries required for build with python2.7
-
environment
:
windows-latest
-
environment
:
windows-latest
python-version
:
2.7
python-version
:
2.7
...
@@ -14,8 +15,13 @@
...
@@ -14,8 +15,13 @@
mq-client-version
:
[
9.1.5.0
]
mq-client-version
:
[
9.1.5.0
]
exclude
:
exclude
:
# Windows runner does not have libraries required for build with python2.7
# Windows runner does not have libraries required for build with python2.7
-
environment
:
windows-latest
-
environment
:
windows-latest
python-version
:
2.7
python-version
:
2.7
# actions/setup-python does not have x86 versions for ubuntu and macos
-
environment
:
ubuntu-latest
python-architecture
:
'
x86'
-
environment
:
macos-latest
python-architecture
:
'
x86'
runs-on
:
${{ matrix.environment}}
runs-on
:
${{ matrix.environment}}
steps
:
steps
:
-
name
:
Checkout source
-
name
:
Checkout source
...
@@ -34,6 +40,6 @@
...
@@ -34,6 +40,6 @@
mq-client-version
:
${{ matrix.mq-client-version }}
mq-client-version
:
${{ matrix.mq-client-version }}
-
name
:
Setup python ${{ matrix.python-version }}
-
name
:
Setup python ${{ matrix.python-version }}
uses
:
actions/setup-python@v
1
uses
:
actions/setup-python@v
2
with
:
with
:
python-version
:
${{ matrix.python-version }}
python-version
:
${{ matrix.python-version }}
...
@@ -38,5 +44,6 @@
...
@@ -38,5 +44,6 @@
with
:
with
:
python-version
:
${{ matrix.python-version }}
python-version
:
${{ matrix.python-version }}
architecture
:
${{ matrix.python-architecture }}
-
name
:
Install pymqi
-
name
:
Install pymqi
env
:
env
:
...
...
This diff is collapsed.
Click to expand it.
code/tests/test_setup.py
+
1
−
1
View file @
9eec9adb
...
@@ -49,7 +49,7 @@
...
@@ -49,7 +49,7 @@
cls
.
qmgr
.
connectTCPClient
(
cls
.
queue_manager
,
pymqi
.
CD
(),
cls
.
channel
,
cls
.
qmgr
.
connectTCPClient
(
cls
.
queue_manager
,
pymqi
.
CD
(),
cls
.
channel
,
cls
.
conn_info
,
cls
.
user
,
cls
.
password
)
cls
.
conn_info
,
cls
.
user
,
cls
.
password
)
cls
.
pcf
=
pymqi
.
PCFExecute
(
cls
.
qmgr
,
response_wait_interval
=
5000
)
cls
.
pcf
=
pymqi
.
PCFExecute
(
cls
.
qmgr
,
response_wait_interval
=
1
5000
)
cls
.
version
=
cls
.
inquire_qmgr_version
().
decode
()
cls
.
version
=
cls
.
inquire_qmgr_version
().
decode
()
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment