Skip to content

Commit

Permalink
[mqtt] Import mqtt-broker project (Azure#2623)
Browse files Browse the repository at this point in the history
Import mqtt-broker project from its own repo
- location: ./mqtt
- disable dotnet and edgelet checks for mqtt-broker
- import mqtt3 client project
- import mqtt3-fuzz project
- make it compile on windows
  • Loading branch information
dmolokanov authored Mar 4, 2020
1 parent 1b106ec commit eb4a8cb
Show file tree
Hide file tree
Showing 43 changed files with 11,746 additions and 4 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -322,3 +322,7 @@ stylecop.json
*.swp
*.swo
*.vi

# fuzz
in
out
8 changes: 4 additions & 4 deletions builds/checkin/dotnet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ jobs:
################################################################################
- job: check_run_pipeline
################################################################################
displayName: Check pipeline preconditions (changes ARE NOT in edgelet and docs)
displayName: Check pipeline preconditions (changes ARE NOT in either edgelet, docs, or mqtt folder)
pool:
vmImage: "ubuntu-16.04"
steps:
- bash: |
git log -m -1 --name-only --first-parent --pretty="" | egrep -i -v '^(edgelet|doc)'
git log -m -1 --name-only --first-parent --pretty="" | egrep -i -v '^(edgelet|doc|mqtt)'
if [[ $? == 0 ]]; then
echo "Detected changes outside of edgelet and docs folders"
echo "Detected changes outside of edgelet, docs or mqtt folders"
echo "##vso[task.setvariable variable=RUN_PIPELINE;isOutput=true]TRUE"
fi
displayName: Check changes in sources
Expand Down Expand Up @@ -124,4 +124,4 @@ jobs:
checkCoverage: true
coverageFailOption: fixed
coverageType: lines
coverageThreshold: $(coverage.goal)
coverageThreshold: $(coverage.goal)
Loading

0 comments on commit eb4a8cb

Please sign in to comment.