93 questions
0
votes
1
answer
62
views
Nightly build specific job does not get triggered
I have multi project pipelines and within my downstream pipeline (e2e) I have defined a chrome job which runs on every push, merge request and nightly scheduled pipeline. I created an almost identical ...
0
votes
1
answer
160
views
Is there a method of initiating a ThinBox<[T]>?
I have been dabbling in experimental features lately and have been using them for a library I'm building. I am trying to reduce the size of an enum by using ThinBox<[T]> to store contents in a ...
1
vote
2
answers
1k
views
Run Jenkins pipeline nightly continuously
I'm using Jenkins for OnCommit and Nightly Builds. My Build Trigger is for example at the weekend:
H/25 * * * 0,6
or from Monday to Friday:
H/25 0-5 * * *
The nightly build runs every 25 minutes.
...
0
votes
2
answers
6k
views
Nightly build of Neovim with JDTLS (java language server) not recognizing JAR files in ${CLASSPATH}
I have added the junit jar file in my ${CLASSPATH} environment variable, but when I use the lsp for neovim it doesn't recognize the functions and imports from the JAR file.
import static org.junit....
0
votes
1
answer
90
views
spacy nightly (3.0.0rc) load without vocab how to add word2vec vectorspace?
In spacy 2 I use this to add a vocab to an empty spacy model with vectorspace (spacy init)
:
nlp3=spacy.load('nl_core_news_sm') #standard model without vectors
spacy.load("...
8
votes
2
answers
12k
views
cargo +nightly error : no such subcommand
While executing : cargo +nightly install --git https://github.com/alexcrichton/wasm-gc --force in Ubuntu 18.04, is throwing
error: no such subcommand: +nightly
My system has following nightly ...
1
vote
0
answers
31
views
Total 147 test cases in my suite but after running in jenkins it shows report of 144 test, but I can see all the logs of 147 test case is showing
The count is 147 in the test suite, but after executing them in Jenkins server it shows total of 144 tests.
Where do these 3 tests disappear?
1
vote
1
answer
804
views
Is there a way to install pyarrow nightly builds with conda?
I'm trying to install pyarrow's nightly builds with conda using arrow-nightlies channel to experiment with the latests code in Github's master branch. Conda's version is 4.8.3. The target environment ...
0
votes
1
answer
1k
views
Run nightly jobs on multibranch pipeline with declarative Jenkinsfile without deprecated feature 'Suppress automatic SCM triggering'
Jenkins ver. 2.150.3
I have a multi-branch pipeline set up. I am using a declarative Jenkinsfile. I have a set of jobs which take a long time to run. I want these to run over night for any branches ...
1
vote
0
answers
412
views
Tensorflow Android nightly build
So I am trying to build an Android app using Tensorflow.
I'm using Android studio 3.1.3
I came across a post saying there was an issue because of which compiling org.tensorflow is not working.
It also ...
6
votes
1
answer
3k
views
Declarative Jenkins pipeline with Nightly deploy for master branch
I wanted to translate some jobs to the new Jenkins 2.0 declarative pipelines. At the moment they are 3 different jobs:
CI --> PollSCM every 5 min (only master), build and run tests.
NIghtly --> Run ...
0
votes
1
answer
1k
views
Tensorflow in android: Linear regression
I have completed training a simple linear regression model on jupyter notebook using tensorflow, and I am able to save and restore the saved variables like so:
Now I'm trying to use the model on an ...
1
vote
1
answer
3k
views
Installing Tensorflow Windows "Nightly Build" using PIP
I need to install a Tensorflow nightly build since the latest stable release has a critical issue that doesn't allow me to work that seems fixed in nightly.
I want to avoid to try to compile myself ...
2
votes
1
answer
103
views
Chaining functions on a trait
I'm trying to make chainable transformations on a trait, and I'm having some issues.
I have a bunch of transformation functions of the form:
fn transform<T: MyTrait>(in: T) -> impl MyTrait
...
0
votes
2
answers
460
views
Nightly build for android project using gradle
I have an android project which I'm developing in windows environment.
Also a remote git repository exist which I push my project to it daily.
My requirement is to have a mechanism to automate daily(...
1
vote
0
answers
96
views
How to get TabID from loadContext
Im using Firefox Nightly ver 51.0a1 (2016-08-16)
and try that code to get TabID from http request
Cu.import('resource://gre/modules/Services.jsm');
var httpObs = {
observe: function (aSubject, ...
0
votes
0
answers
41
views
Build a Rust project on Travis CI with a specific nightly version [duplicate]
I'm about to build a Rust project but I want to build it with Rust nightly 1.11.0.
At the moment I'm only able to do so:
language: rust
rust:
- nightly
- 1.11.0
which builds nightly (latest ...
3
votes
0
answers
1k
views
Git and nightly builds - how to do it efficiently?
I'm trying to create a node.js script which will run git commands to perform nightly builds. I have done some searching and found various bits here and there about shallow clones, reference caches, ...
5
votes
2
answers
1k
views
Bleeding Edge/Nightly Build dependency management in Python. Strategies and best practices?
The situation
You have 2 software products in development, a library which presents an API and a GUI tool that exposes the library for end users. Additionally, you expect a lot of technical staff at ...
4
votes
3
answers
12k
views
How to automate NuGet package creation using Jenkins?
For one of my projects I am using many dependencies in the form of NuGet packages. When I change any of them, I need to recreate the package and deploy it every time. We currently have Jenkins setup ...
2
votes
1
answer
373
views
TFS 2013 Nightly build failure is not making BUG work item on test failure (VSO)
We are using VSO for everything and builds are handled through our own build server.
Everything is working fine however for all nightly builds, when they fail on tests (the whole point of nightly ...
-2
votes
2
answers
139
views
Firefox Nightly Google Search Bar shrunk
I have the latest update for Nightly (34.0a1 (2014-08-14)). It addressed one of the two problems I have from the previous update, which was the disappearing input fields. The other problem was the ...
0
votes
1
answer
179
views
Nightly build generator for Java project [closed]
I have a Java application hosted in SourceForge (SVN)
Basically I'm looking for a tool that generate nightly builds based on this:
When a new commit was applied, the tool will auto generate a new ...
5
votes
3
answers
2k
views
LibGDX Gradle Language Level Keeps resetting
Before I ask, I have looked around and I do not see any other questions with similar problems as I, Currently I'm using the nightly build of LibGDX with Gradle and everytime I try to set the java ...
2
votes
1
answer
125
views
Nightly builds for Windows on Linux
Is there a system I could implement on Linux(Debian) to have nightly builds from a github repository targeted to windows(.exe files)?
I know programs like CCNET and TeamCity but they are for windows.
...