Compare commits
4 Commits
776d14bb3e
...
e5d7a38160
| Author | SHA1 | Date |
|---|---|---|
|
|
e5d7a38160 | |
|
|
d714b620c4 | |
|
|
10d2625cb6 | |
|
|
b9cfa85009 |
|
|
@ -514,3 +514,18 @@ deploy python/pypi:
|
||||||
- build python/linux/arm64
|
- build python/linux/arm64
|
||||||
- build python/macos
|
- build python/macos
|
||||||
- build python/windows
|
- build python/windows
|
||||||
|
|
||||||
|
push github:
|
||||||
|
stage: deploy
|
||||||
|
tags:
|
||||||
|
- linux-build
|
||||||
|
image: alpine:latest
|
||||||
|
rules:
|
||||||
|
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
||||||
|
dependencies:
|
||||||
|
- deploy python/pypi
|
||||||
|
needs:
|
||||||
|
- deploy python/pypi
|
||||||
|
script:
|
||||||
|
- apk add git
|
||||||
|
- git push https://$LIBICSNEO_GITHUB_USERNAME:$LIBICSNEO_GITHUB_TOKEN@github.com/intrepidcs/libicsneo.git HEAD:master
|
||||||
|
|
|
||||||
|
|
@ -36,6 +36,7 @@ void init_device(pybind11::module_& m) {
|
||||||
.def("supports_tc10", &Device::supportsTC10)
|
.def("supports_tc10", &Device::supportsTC10)
|
||||||
.def("request_tc10_wake", &Device::requestTC10Wake)
|
.def("request_tc10_wake", &Device::requestTC10Wake)
|
||||||
.def("request_tc10_sleep", &Device::requestTC10Sleep)
|
.def("request_tc10_sleep", &Device::requestTC10Sleep)
|
||||||
|
.def("get_tc10_status", &Device::getTC10Status)
|
||||||
.def("__repr__", &Device::describe);
|
.def("__repr__", &Device::describe);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,14 @@
|
||||||
|
=========
|
||||||
libicsneo
|
libicsneo
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
libicsneo is the `Intrepid Control Systems <https://intrepidcs.com/>`_ device
|
||||||
|
communication library. The source code for libicsneo can be found on GitHub:
|
||||||
|
`https://github.com/intrepidcs/libicsneo <https://github.com/intrepidcs/libicsneo>`_
|
||||||
|
|
||||||
.. toctree::
|
.. toctree::
|
||||||
:maxdepth: 1
|
:maxdepth: 1
|
||||||
:caption: API Documentation
|
:caption: Documentation
|
||||||
|
|
||||||
icsneocpp/index
|
icsneocpp/index
|
||||||
icsneopy/index
|
icsneopy/index
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue