-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
79 changed files
with
2,719 additions
and
1,192 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
path_classifiers: | ||
library: | ||
- libhwif/ | ||
test: | ||
- test/ | ||
|
||
extraction: | ||
cpp: | ||
prepare: | ||
packages: | ||
- libssl-dev | ||
- doxygen | ||
- uuid-dev | ||
- pkg-config | ||
- qt5-default | ||
- qtbase5-dev | ||
- qtbase5-dev-tools | ||
- qtdeclarative5-dev | ||
- qtmultimedia5-dev | ||
- qtquickcontrols2-5-dev | ||
- qtdeclarative5-dev-tools | ||
|
||
after_prepare: # Customizable step used by all languages. | ||
- cmake --version | ||
|
||
configure: # Customizable step used only by C/C++ extraction. | ||
command: | ||
- cmake | ||
-DCMAKE_BUILD_TYPE=Release | ||
-DBUILD_TESTS=Off | ||
-DTEST_COVERAGE=Off | ||
-DBUILD_GTEST_FROM_SRC=Off | ||
-H$LGTM_SRC | ||
-B$LGTM_WORKSPACE | ||
|
||
before_index: # Customizable step used by all languages. | ||
- echo "before_index" | ||
|
||
index: # Customizable step used by all languages. | ||
build_command: | ||
- cmake --build $LGTM_WORKSPACE --parallel | ||
|
||
javascript: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
How to create a Jenkins Buildserver on Azure | ||
=================== | ||
#How to create a Jenkins Buildserver on Azure | ||
|
||
This repo contains snippets of information on how to interact with MS Azure. | ||
|
||
--- | ||
|
||
# Create a Virtual Machine from a cloud init file | ||
## Create a Virtual Machine from a cloud init file | ||
|
||
This command uses the smallest VM size Azure offers and initializes the VM with | ||
the file `jenkins-on-osdisk.yaml` meaning no sparate Data-Disk is created. This | ||
repo contains some cloud init files that create a minimal VM with Jenkins and | ||
Docker. | ||
|
||
```sh | ||
az vm create -g BuildServer --name JenkinsOnOsDisk \ | ||
--image Canonical:UbuntuServer:16.04-LTS:latest \ | ||
--size Standard_A1 --admin-username thomas \ | ||
--ssh-key-value id_rsa.pub \ | ||
--custom-data jenkins-on-osdisk.yaml | ||
``` | ||
|
||
# Open and forward ports from the Internet to the VM | ||
## Open and forward ports from the Internet to the VM | ||
|
||
Per default a VM is not reachable from the Internet, to allow this we have to | ||
open a TCP port. | ||
|
||
|
||
```sh | ||
az vm open-port -g BuildServer --name JenkinsOnOsDisk \ | ||
--port 8080 --priority 1001 | ||
|
||
|
||
|
||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
We gratefully acknowledge all those who reviewed or helped develop | ||
DigitalRooster. | ||
That includes everyone who provided commits, contribution to the | ||
issue tracker, or via pull requests. | ||
|
||
Alphabetically by last name, contributors include: | ||
|
||
Ruschival, Thomas | ||
|
||
and hopefully soon more people |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.