Size: 20
Comment: initial
|
Size: 7682
Comment: OpenGL on windows
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
Under Construction | = Under Construction = <<TableOfContents()>> = CMake = 1. Dependencies are from Anaconda. CMake runs conda to detect environment location and uses it to find packages. {{{#!wiki comment 1. Does not specify all source files, so the files will not be added to IDE project files and will not be available for editing. This makes it inconvenient to use Visual Studio as editor. Need ''add_custom_target ... [SOURCES src1 [src2...]]'' https://cmake.org/cmake/help/v3.15/command/add_custom_target.html }}} 1. Make targets can be listed with {{{make help}}}. Some convenience targets: {{{ $ make help The following are some of the valid targets for this Makefile: ... ..... ... ..... ... PythonFiles ... test-rt ... test-py-compile ... test-verbose-broken ... test-progs ... test-verbose ... ..... ... ..... }}} 1. ''libpython'' can be linked statically or dynamically when python is built. It is important for python extensions to be aware of the type of linking in order to avoid segfaults. (Need a little more details, refs?) 1. opengl ??? 1. cmake <source-dir> -DENABLE_WARNINGS=OFF {{{#!wiki comment 1. Modern cmake, targets as much as possible, interface libs(?), anaconda, find_packages in cmake,... }}} 1. OpenGL: cmake toolchain file, GL/ folder removed: Linux and Mac have one glext.h. On Windows it is copied into program files/sdk... and downloaded on appveyor as part of env setup. = Anaconda = Feedstocks, conda-smithy, https://anaconda.org/cryoem/ 1. ftgl 1. fftw-mpi 1. openmpi 1. pydusa and pydusa-feedstock 1. constructor and constructor-feedstock 1. eman-deps-feedstock, eman-deps-cli 1. eman-packaging-feedstock File structure, dependencies ? ABI compat 1. conda 1. conda-build 1. constructor = Continuous Integration = 1. !GitHub webhooks 1. Test source build and conda recipe build (conda-build). 1. Binary builds on local build machines. 1. Manually triggered build on master and non-master. 1. Cron builds. 1. Release binaries manually copied from cont. builds. 1. [[https://circleci.com/gh/cryoem/eman2|CircleCI]]: [[https://github.com/cryoem/eman2/blob/master/.circleci/config.yml|.circleci/config.yml]] 1. [[https://travis-ci.org/cryoem/eman2|TravisCI]]: [[https://github.com/cryoem/eman2/blob/master/.travis.yml|.travis.yml]] 1. [[https://ci.appveyor.com/|Appveyor]]: [[https://github.com/cryoem/eman2/blob/master/appveyor.yml|appveyor.yml]] 1. JenkinsCI: [[https://github.com/cryoem/eman2/blob/master/Jenkinsfile|Jenkinsfile]], binary builds = Jenkins Setup = 1. Triggers 1. GitHub webhooks 1. Cron 1. Binary build trigger 1. Jenkins master needs PATH prepended with $CONDA_PREFIX/bin 1. Jenkins Docker image, docker-coompose or docker stack deploy 1. docker-compose.yml at home dir in build machines 1. TZ: https://stackoverflow.com/a/46384925 1. plugins 1. config, jcasc, config.xml, users.xml, jobs/*.xml?, gpg encrypt 1. Agent nodes setup, agent nodes auto-start 1. Server and agent per machine vs single server and os agents 1. Master only 1. Master and agent per machine 1. Single master and OS agents == Linux == 1. systemctl docker run -d -u root -p 8080:8080 -p 50000:50000 --restart unless-stopped -v /home/eman2/jenkins_home:/var/jenkins_home -v /var/run/docker.sock:/var/run/docker.sock jenkins/jenkins:lts & docker run -d -u root --name jenkins-master -p 8080:8080 -p 50000:50000 --restart unless-stopped -v /home/eman2/jenkins_home:/var/jenkins_home -v /var/run/docker.sock:/var/run/docker.sock -e PLUGINS_FORCE_UPGRADE=true -e TRY_UPGRADE_IF_NO_MARKER=true --restart unless-stopped cryoem/jenkins:dev cron: 0 0 * * * bash /home/eman2/workspace/cronjobs/cleanup_harddisk.sh $ cat Desktop/docker.txt docker run -p 8080:8080 -p 50000:50000 jenkins/jenkins:lts docker run -p 8080:8080 -p 50000:50000 --restart unless-stopped jenkins/jenkins:lts docker run -p 8080:8080 -p 50000:50000 --restart unless-stopped -v /home/eman2/jenkins_home:/var/jenkins_home jenkins/jenkins:lts docker run -p 8080:8080 -p 50000:50000 --restart unless-stopped -v /var/jenkins_home:/home/eman2/jenkins_home jenkins/jenkins:lts # Working docker run -u root -p 8080:8080 -p 50000:50000 --restart unless-stopped -v /home/eman2/jenkins_home:/var/jenkins_home jenkins/jenkins:lts docker run -u root -p 8080:8080 -p 50000:50000 --restart unless-stopped -v /home/eman2/jenkins_home:/var/jenkins_home jenkins docker run -d -u root -p 8080:8080 -p 50000:50000 --restart unless-stopped -v /home/eman2/jenkins_home:/var/jenkins_home -v /var/run/docker.sock:/var/run/docker.sock jenkins/jenkins:lts sudo docker run -it -v /var/jenkins_home:/home/eman2/jenkins_home jenkins startup: right-click ??? == Mac == 1. plist docker run -d --name jenkins-master -p 8080:8080 -p 50000:50000 -v /Users/eman/workspace/jenkins_home:/var/jenkins_home --restart unless-stopped jenkins/jenkins:lts Auto startup: plist https://imega.club/2015/06/01/autostart-slave-jenkins-mac/ /Users/eman/Library/LaunchAgents slave clock sync https://blog.shameerc.com/2017/03/quick-tip-fixing-time-drift-issue-on-docker-for-mac docker run --rm --privileged alpine hwclock -s client 0 free swap space $ cat Desktop/docker.txt docker run -p 8080:8080 -v /Users/eman/workspace/jenkins_home:/var/jenkins_home jenkins docker run -it -p 8080:8080 -v /Users/eman/workspace/jenkins_home:/var/jenkins_home --restart unless-stopped jenkins # Working docker run -it -p 8080:8080 -v /Users/eman/workspace/jenkins_home:/var/jenkins_home --restart unless-stopped jenkins/jenkins:lts # Blue Ocean docker run \ . -u root \ --rm \ -d \ -p 8080:8080 \ -v jenkins-data:/var/jenkins_home \ -v /var/run/docker.sock:/var/run/docker.sock \ jenkinsci/blueocean # Latest docker run -d --name jenkins-master -p 8080:8080 -p 50000:50000 -v /Users/eman/workspace/jenkins_home:/var/jenkins_home --restart unless-stopped jenkins/jenkins:lts FROM jenkins/jenkins:lts COPY plugins.txt /usr/share/jenkins/ref/plugins.txt RUN /usr/local/bin/install-plugins.sh < /usr/share/jenkins/ref/plugins.txt plugins.txt: ace-editor:latest bouncycastle-api:latest branch-api:latest chef-identity:latest Settings: tokens slaves == Windows == Move jenkins_home http://tech.nitoyon.com/en/blog/2014/02/25/jenkins-home-win/ Run as service: Open Task Manager(Ctrl+Shift+Esc), New task, Browse to agent.jnlp and run as admin does this work? This is when starting via Web Launcher doesn't work. currently, task scheduler works need to have miniconda pn path, set it during miniconda installation, but do not(?) register python. While installing miniconda register python and add to PATH. Then, conda init in cmd (git init cmd.exe) and git windows (git init bash). And, maybe restart??? BUG: miniconda3 conda-build=3.17.8 adds vc14 even if python2 is requested in build reqs OPENGL: https://github.com/conda/conda-recipes/blob/master/qt5/notes.md = Distribution = == Binaries on cryoem.bcm.edu == == EMAN2 on anaconda.org == == EMAN2 Docker images == {{{#!wiki comment = Build System Components = digraph build_system_components { a [label = "Source code"] //=== CMake and Anaconda === b [label = "Binaries"] //=== Test and CI === d [label = "Test"] c [label = "Distribute"] c1 [label = "Package with Constructor"] c2 [label = "Conda recipe"] c3 [label = "Docker Image"] a -> b [ label = "CMake" ] b -> c b -> d -> c c -> c1 c -> c2 c -> c3 } {{attachment:build_system_components.png}} }}} |
Under Construction
Contents
CMake
- Dependencies are from Anaconda. CMake runs conda to detect environment location and uses it to find packages.
Make targets can be listed with make help. Some convenience targets:
$ make help The following are some of the valid targets for this Makefile: ... ..... ... ..... ... PythonFiles ... test-rt ... test-py-compile ... test-verbose-broken ... test-progs ... test-verbose ... ..... ... .....
libpython can be linked statically or dynamically when python is built. It is important for python extensions to be aware of the type of linking in order to avoid segfaults. (Need a little more details, refs?)
- opengl ???
cmake <source-dir> -DENABLE_WARNINGS=OFF
- OpenGL: cmake toolchain file, GL/ folder removed: Linux and Mac have one glext.h. On Windows it is copied into program files/sdk... and downloaded on appveyor as part of env setup.
Anaconda
Feedstocks, conda-smithy, https://anaconda.org/cryoem/
- ftgl
- fftw-mpi
- openmpi
- pydusa and pydusa-feedstock
- constructor and constructor-feedstock
- eman-deps-feedstock, eman-deps-cli
- eman-packaging-feedstock
File structure, dependencies ? ABI compat
- conda
- conda-build
- constructor
Continuous Integration
GitHub webhooks
- Test source build and conda recipe build (conda-build).
- Binary builds on local build machines.
- Manually triggered build on master and non-master.
- Cron builds.
- Release binaries manually copied from cont. builds.
JenkinsCI: Jenkinsfile, binary builds
Jenkins Setup
- Triggers
GitHub webhooks
- Cron
- Binary build trigger
- Jenkins master needs PATH prepended with $CONDA_PREFIX/bin
- Jenkins Docker image, docker-coompose or docker stack deploy
- docker-compose.yml at home dir in build machines
- plugins
- config, jcasc, config.xml, users.xml, jobs/*.xml?, gpg encrypt
- Agent nodes setup, agent nodes auto-start
- Server and agent per machine vs single server and os agents
- Master only
- Master and agent per machine
- Single master and OS agents
Linux
- systemctl
docker run -d -u root -p 8080:8080 -p 50000:50000 --restart unless-stopped -v /home/eman2/jenkins_home:/var/jenkins_home -v /var/run/docker.sock:/var/run/docker.sock jenkins/jenkins:lts &
docker run -d -u root --name jenkins-master -p 8080:8080 -p 50000:50000 --restart unless-stopped -v /home/eman2/jenkins_home:/var/jenkins_home -v /var/run/docker.sock:/var/run/docker.sock -e PLUGINS_FORCE_UPGRADE=true -e TRY_UPGRADE_IF_NO_MARKER=true --restart unless-stopped cryoem/jenkins:dev
cron:
0 0 * * * bash /home/eman2/workspace/cronjobs/cleanup_harddisk.sh
$ cat Desktop/docker.txt docker run -p 8080:8080 -p 50000:50000 jenkins/jenkins:lts docker run -p 8080:8080 -p 50000:50000 --restart unless-stopped jenkins/jenkins:lts docker run -p 8080:8080 -p 50000:50000 --restart unless-stopped -v /home/eman2/jenkins_home:/var/jenkins_home jenkins/jenkins:lts docker run -p 8080:8080 -p 50000:50000 --restart unless-stopped -v /var/jenkins_home:/home/eman2/jenkins_home jenkins/jenkins:lts
# Working docker run -u root -p 8080:8080 -p 50000:50000 --restart unless-stopped -v /home/eman2/jenkins_home:/var/jenkins_home jenkins/jenkins:lts docker run -u root -p 8080:8080 -p 50000:50000 --restart unless-stopped -v /home/eman2/jenkins_home:/var/jenkins_home jenkins
docker run -d -u root -p 8080:8080 -p 50000:50000 --restart unless-stopped -v /home/eman2/jenkins_home:/var/jenkins_home -v /var/run/docker.sock:/var/run/docker.sock jenkins/jenkins:lts
sudo docker run -it -v /var/jenkins_home:/home/eman2/jenkins_home jenkins
startup: right-click ???
Mac
- plist
docker run -d --name jenkins-master -p 8080:8080 -p 50000:50000 -v /Users/eman/workspace/jenkins_home:/var/jenkins_home --restart unless-stopped jenkins/jenkins:lts
Auto startup: plist https://imega.club/2015/06/01/autostart-slave-jenkins-mac/ /Users/eman/Library/LaunchAgents
slave clock sync https://blog.shameerc.com/2017/03/quick-tip-fixing-time-drift-issue-on-docker-for-mac docker run --rm --privileged alpine hwclock -s
client 0 free swap space
$ cat Desktop/docker.txt docker run -p 8080:8080 -v /Users/eman/workspace/jenkins_home:/var/jenkins_home jenkins docker run -it -p 8080:8080 -v /Users/eman/workspace/jenkins_home:/var/jenkins_home --restart unless-stopped jenkins
# Working docker run -it -p 8080:8080 -v /Users/eman/workspace/jenkins_home:/var/jenkins_home --restart unless-stopped jenkins/jenkins:lts
# Blue Ocean docker run \
- -u root \ --rm \ -d \ -p 8080:8080 \ -v jenkins-data:/var/jenkins_home \ -v /var/run/docker.sock:/var/run/docker.sock \ jenkinsci/blueocean
# Latest docker run -d --name jenkins-master -p 8080:8080 -p 50000:50000 -v /Users/eman/workspace/jenkins_home:/var/jenkins_home --restart unless-stopped jenkins/jenkins:lts
FROM jenkins/jenkins:lts COPY plugins.txt /usr/share/jenkins/ref/plugins.txt RUN /usr/local/bin/install-plugins.sh < /usr/share/jenkins/ref/plugins.txt
plugins.txt: ace-editor:latest bouncycastle-api:latest branch-api:latest chef-identity:latest
Settings: tokens slaves
Windows
Move jenkins_home http://tech.nitoyon.com/en/blog/2014/02/25/jenkins-home-win/
Run as service: Open Task Manager(Ctrl+Shift+Esc), New task, Browse to agent.jnlp and run as admin does this work? This is when starting via Web Launcher doesn't work.
currently, task scheduler works need to have miniconda pn path, set it during miniconda installation, but do not(?) register python.
While installing miniconda register python and add to PATH. Then, conda init in cmd (git init cmd.exe) and git windows (git init bash). And, maybe restart???
BUG: miniconda3 conda-build=3.17.8 adds vc14 even if python2 is requested in build reqs
OPENGL: https://github.com/conda/conda-recipes/blob/master/qt5/notes.md
Distribution
Binaries on cryoem.bcm.edu
EMAN2 on anaconda.org