content
stringlengths
1
103k
path
stringlengths
8
216
filename
stringlengths
2
179
language
stringclasses
15 values
size_bytes
int64
2
189k
quality_score
float64
0.5
0.95
complexity
float64
0
1
documentation_ratio
float64
0
1
repository
stringclasses
5 values
stars
int64
0
1k
created_date
stringdate
2023-07-10 19:21:08
2025-07-09 19:11:45
license
stringclasses
4 values
is_test
bool
2 classes
file_hash
stringlengths
32
32
# This is a simple wrapper for eng/pipeline.yml to get around the limitation of\n# user-defined variables not being available in yaml template expressions.\n\n# Parameters ARE available in template expressions, and parameters can have default values,\n# so they can be used to control yaml flow.\n#\n\nvariables:\n # clean the local repo on the build agents\n - name: Build.Repository.Clean\n value: true\n - name: _PublishUsingPipelines\n value: true\n - name: _DotNetArtifactsCategory\n value: WINDOWSDESKTOP\n - name: _DotNetValidationArtifactsCategory\n value: WINDOWSDESKTOP\n - name: PostBuildSign\n value: true\n \n - ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}:\n - group: DotNet-Wpf-SDLValidation-Params\n\n\n# This is set in the pipeline directly \n# When set to false, CI tests will not be enabled in builds. \n#\n# _ContinuousIntegrationTestsEnabled: false\n\n# Setting batch to true, triggers one build at a time.\n# if there is a push while a build in progress, it will wait,\n# until the running build finishes, and produce a build with all the changes\n#\n# only trigger ci builds for the master and release branches\ntrigger:\n batch: true \n branches:\n include: \n - ctp\n - feature/*\n paths:\n exclude:\n - Documentation/*\n\npr:\n autoCancel: true\n branches:\n include:\n - ctp\n paths:\n exclude:\n - Documentation/*\n\n# Call the pipeline.yml template, which does the real work\nstages:\n- stage: build\n displayName: Build \n jobs:\n - template: /eng/wpfautomatedtests.yml\n parameters:\n enablePublishUsingPipelines: $(_PublishUsingPipelines)\n ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}:\n # agent pool can't be read from a user-defined variable (Azure DevOps limitation)\n pool:\n name: NetCore1ESPool-Internal\n demands: ImageOverride -equals windows.vs2022preview.amd64\n # runAsPublic is used in expressions, which can't read from user-defined variables\n runAsPublic: false\n
dataset_sample\yaml\csharp\azure-pipelines1.yml
azure-pipelines1.yml
YAML
2,096
0.8
0.088235
0.3
vue-tools
770
2024-04-22T08:28:34.983081
GPL-3.0
false
7becc5d65142217be5d24ccc36a4882e
# CI build for developer builds.\n\nvariables:\n- template: config/settings.yml\n- name: packagingEnabled\n value: false\n\njobs:\n- job: Unity2019Validation\n timeoutInMinutes: 120\n pool:\n name: On-Prem Unity\n demands:\n - ${{ variables.Unity2019Version }}\n - COG-UnityCache-WUS2-01\n - SDK_18362 -equals TRUE\n - VS2019 -equals TRUE\n steps:\n - template: templates/common-Unity2019.yml\n parameters:\n packagingEnabled: false\n UnityVersion: $(Unity2019Version)\n\n- job: Unity2018Validation\n timeoutInMinutes: 120\n pool:\n name: On-Prem Unity\n demands:\n - ${{ variables.Unity2018Version }}\n - COG-UnityCache-WUS2-01\n - SDK_18362 -equals TRUE\n steps:\n - template: templates/ci-common.yml\n parameters:\n packagingEnabled: false\n UnityVersion: $(Unity2018Version)\n
dataset_sample\yaml\csharp\ci-daily.yml
ci-daily.yml
YAML
812
0.8
0.027778
0.030303
node-utils
660
2025-01-24T12:03:36.637106
Apache-2.0
false
c07b4171714965088e40cd791398453b
# CI build producing developer packages.\n\nvariables:\n- template: config/settings.yml\n\njobs:\n- job: UnityValidation\n timeoutInMinutes: 90\n pool:\n name: On-Prem Unity\n demands:\n - ${{ variables.Unity2018Version }}\n - COG-UnityCache-WUS2-01\n - SDK_18362 -equals TRUE\n steps:\n - template: templates/ci-common.yml\n parameters:\n UnityVersion: $(Unity2018Version)\n
dataset_sample\yaml\csharp\ci-packaging-dontpublish.yml
ci-packaging-dontpublish.yml
YAML
384
0.8
0
0.0625
vue-tools
302
2025-06-10T12:02:04.650297
MIT
false
bef31a7d3f0814a6b91671ef9f5f99d0
# CI build producing developer packages.\n\nvariables:\n- template: config/settings.yml\n\njobs:\n- job: CodeValidation\n pool:\n vmImage: windows-latest\n steps:\n - template: templates/validation.yml\n\n- job: UnityValidation\n timeoutInMinutes: 90\n pool:\n name: Analog-Unity\n demands:\n - ImageVersionOverride -equals 20220218.0.1\n workspace:\n clean: resources\n steps:\n - template: templates/ci-common.yml\n parameters:\n publishPackagesToFeed: true\n UnityVersion: $(Unity2019VersionInternal)\n\n - pwsh: Write-Host "##vso[build.updatebuildnumber]$(MRTKVersion)-preview.$(Build.BuildNumber)"\n displayName: Set build number\n
dataset_sample\yaml\csharp\ci-packaging-internal.yml
ci-packaging-internal.yml
YAML
650
0.8
0
0.041667
react-lib
377
2024-06-28T07:49:11.136500
BSD-3-Clause
false
7330d90f49f53988eb235d092ed57d2e
# Weekly build for compliance tasks\npr: none\ntrigger: none\nschedules:\n- cron: 0 8 * * 1 # every Monday at 8:00 UTC\n displayName: Weekly build\n branches:\n include:\n - main\n\nvariables:\n- template: config/settings.yml\n- name: 'SOMWorkspaceID'\n value: '9aee72fc-a4e1-4f86-8343-8bcb69b03955'\n- name: 'ComplianceBranch'\n value: 'refs/heads/main'\n\njobs:\n- job: Compliance\n timeoutInMinutes: 90\n pool:\n name: Analog-Unity\n workspace:\n clean: resources\n steps:\n # the following tasks should only be run on main branch, otherwise we risk issue being reported multiple times on topic/release branches\n - task: PoliCheck@1\n condition: and(succeeded(), eq(variables['Build.SourceBranch'], variables['ComplianceBranch']))\n inputs:\n inputType: 'Basic'\n targetType: 'F'\n targetArgument: '$(Build.SourcesDirectory)'\n result: 'PoliCheck.xml'\n optionsUEPATH: '$(Build.SourcesDirectory)\pipelines\config\PolicheckUserExclusion.xml'\n SOMEnabled: true\n uploadToSOM: true\n workspaceId: $(SOMWorkspaceID)\n uploadErrorLevel: 'Error'\n\n - task: PoliCheck@1\n condition: and(succeeded(), ne(variables['Build.SourceBranch'], variables['ComplianceBranch']))\n inputs:\n inputType: 'Basic'\n targetType: 'F'\n targetArgument: '$(Build.SourcesDirectory)'\n result: 'PoliCheck.xml'\n optionsUEPATH: '$(Build.SourcesDirectory)\pipelines\config\PolicheckUserExclusion.xml'\n SOMEnabled: false\n uploadToSOM: false\n\n - task: CredScan@2\n inputs:\n toolMajorVersion: 'V2'\n # suppressionsFile: '$(Build.SourcesDirectory)\pipelines\config\CredScanSuppressions.json'\n\n - template: templates/compilemsbuild.yml\n parameters:\n UnityVersion: $(Unity2019VersionInternal)\n\n - task: BinSkim@3\n inputs:\n InputType: 'Basic'\n Function: 'analyze'\n AnalyzeTarget: 'Microsoft.MixedReality.Toolkit.*.dll'\n AnalyzeSymPath: '$(Build.SourcesDirectory)'\n AnalyzeRecurse: true\n toolVersion: '1.4.5'\n AnalyzeVerbose: true\n\n - task: PublishSecurityAnalysisLogs@2\n inputs:\n ArtifactName: 'CodeAnalysisLogs'\n ArtifactType: 'Container'\n\n - task: PostAnalysis@1\n inputs:\n BinSkim: true\n CredScan: true\n PoliCheck: true\n PoliCheckBreakOn: 'Severity4Above'\n ToolLogsNotFoundAction: 'Standard'\n
dataset_sample\yaml\csharp\ci-weekly-internal.yml
ci-weekly-internal.yml
YAML
2,336
0.8
0.012346
0.041096
react-lib
893
2024-12-11T18:31:05.339695
MIT
false
c4460eb454f48956b292f00bd93a4100
# Documentation: https://docs.codecov.io/docs/codecov-yaml\n\ncodecov:\n # Avoid "Missing base report"\n # https://github.com/codecov/support/issues/363\n # https://docs.codecov.io/docs/comparing-commits\n allow_coverage_offsets: true\n\n # Avoid Report Expired\n # https://docs.codecov.io/docs/codecov-yaml#section-expired-reports\n max_report_age: off\n\ncoverage:\n # Use integer precision\n # https://docs.codecov.com/docs/codecovyml-reference#coverageprecision\n precision: 0\n\n # Explicitly control coverage status checks\n # https://docs.codecov.com/docs/commit-status#disabling-a-status\n status:\n project: on\n patch: off\n
dataset_sample\yaml\csharp\codecov.yml
codecov.yml
YAML
645
0.8
0
0.555556
vue-tools
77
2023-09-21T08:50:21.930984
BSD-3-Clause
false
4a86c9ebfc678dd0f7493b00258baaf9
################################################################################\n# ML.NET's Code Coverage validation build\n################################################################################\n\npr:\n branches:\n include:\n - main\n - feature/*\n - release/*\n paths:\n include:\n - '*'\n exclude:\n - '**.md'\n - .github/*\n - docs/*\n - LICENSE\n - THIRD-PARTY-NOTICES.TXT\n\ntrigger:\n branches:\n include:\n - main\n - feature/*\n - release/*\n paths:\n include:\n - '*'\n exclude:\n - '**.md'\n - .github/*\n - docs/*\n - LICENSE\n - THIRD-PARTY-NOTICES.TXT\n\njobs:\n- template: /build/ci/job-template.yml\n parameters:\n name: Windows_x64\n buildScript: build.cmd\n customMatrixes:\n Build_Debug:\n _configuration: Debug\n _config_short: D\n _includeBenchmarkData: false\n _targetFramework: net8.0\n codeCoverage: true\n pool:\n name: NetCore-Public\n demands: ImageOverride -equals 1es-windows-2019-open\n
dataset_sample\yaml\csharp\codecoverage-ci.yml
codecoverage-ci.yml
YAML
1,011
0.8
0
0.0625
awesome-app
544
2025-06-16T04:39:38.641371
Apache-2.0
false
0cf7f276943111ef76f7088816281a3c
{% metadata_file .yamato/coverage_tests.metafile %}\n---\n{% for package in coverage_test_packages %}\n{% for editor in coverage_test_editors %}\n{% for platform in coverage_test_platforms %}\n{% capture coverageOptions %} --enable-code-coverage --code-coverage-options 'generateHtmlReport;assemblyFilters:+{{ package.assembly }}'{% endcapture %}\n\ntest_coverage_{{ package.name }}_{{ platform.name }}_{{ editor.version }}_{{ editor.testProject }}:\n name : Coverage {{ package.name }} test {{ editor.version }} on {{ platform.name }} in {{ editor.testProject }}\n agent:\n type: {{ platform.type }}\n image: {{ platform.image }}\n flavor: {{ platform.flavor}}\n commands:\n - npm install upm-ci-utils@1.27.0 -g --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm\n - upm-ci project test -u {{ editor.version }} --type project-tests --project-path {{ editor.testProject }} --package-filter {{ package.name }} {{ coverageOptions }} --extra-utr-arg "reruncount=2"\n - |\n conda activate python3.10\n python3 ml-agents/tests/yamato/check_coverage_percent.py upm-ci~/test-results/ {{ package.minCoveragePct }}\n artifacts:\n logs:\n paths:\n - "upm-ci~/test-results/**/*"\n dependencies:\n - .yamato/com.unity.ml-agents-pack.yml#pack\n triggers:\n cancel_old_ci: true\n {% if platform.name == "linux" %}\n expression: |\n (pull_request.target eq "main" OR\n pull_request.target eq "develop" OR\n pull_request.target match "release.+") AND\n NOT pull_request.draft AND\n (pull_request.changes.any match "com.unity.ml-agents/**" OR\n pull_request.changes.any match " {{ editor.testProject }}/**" OR\n {% if package.name == "com.unity.ml-agents.extensions" %}\n pull_request.changes.any match "com.unity.ml-agents.extensions/**" OR\n {% endif %}\n pull_request.changes.any match ".yamato/com.unity.ml-agents-coverage.yml")\n {% endif %}\n{% endfor %}\n{% endfor %}\n{% endfor %}\n
dataset_sample\yaml\csharp\com.unity.ml-agents-coverage.yml
com.unity.ml-agents-coverage.yml
YAML
2,120
0.8
0.116279
0
node-utils
844
2024-10-24T10:59:05.429233
BSD-3-Clause
false
a03e7d14cfa62a1567796932a2716339
pack:\n name: Pack\n agent:\n type: Unity::VM\n image: ml-agents/ml-agents-ubuntu-18.04:latest\n flavor: b1.small\n commands:\n - |\n eval "$($HOME/anaconda/bin/conda shell.bash hook)"\n conda activate python3.10\n python3 -m pip install unity-downloader-cli --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple --upgrade\n unity-downloader-cli -u 2023.2 -c editor --wait --fast\n ./.Editor/Unity -projectPath Project -batchMode -executeMethod Unity.MLAgents.SampleExporter.ExportCuratedSamples -logFile -\n npm install upm-ci-utils@stable -g --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm\n upm-ci project pack --project-path Project\n artifacts:\n packages:\n paths:\n - "upm-ci~/packages/**/*"\n triggers:\n cancel_old_ci: true\n
dataset_sample\yaml\csharp\com.unity.ml-agents-pack.yml
com.unity.ml-agents-pack.yml
YAML
853
0.8
0
0
python-kit
820
2024-05-22T03:36:00.705261
MIT
false
9095c39402d4b4a38066c37a262db16a
#disabling mac perf tests until utr issue is resolved.\n#test_editors:\n# - version: 2023.2\n#---\n#{% for editor in test_editors %}\n#Run_Mac_Perfomance_Tests{{ editor.version }}:\n# name: Run Mac Performance Tests {{ editor.version }}\n# agent:\n# type: Unity::VM::osx\n# image: package-ci/macos-13:v4\n# flavor: b1.large\n# variables:\n# UNITY_VERSION: {{ editor.version }}\n# commands:\n# - python3 -m pip install unity-downloader-cli --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple --upgrade\n# - unity-downloader-cli -u {{ editor.version }} -c editor --wait --fast\n# - curl -s https://artifactory.prd.it.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr --output utr\n# - chmod +x ./utr\n# - ./utr --suite=editor --platform=StandaloneOSX --editor-location=.Editor --testproject=PerformanceProject --artifacts_path=build/test-results --report-performance-data --performance-project-id=com.unity.ml-agents --zero-tests-are-ok=1\n# triggers:\n# cancel_old_ci: true\n# recurring:\n# - branch: develop\n# frequency: daily\n# artifacts:\n# logs:\n# paths:\n# - "build/test-results/**"\n# - "*.log"\n#{% endfor %}\n
dataset_sample\yaml\csharp\com.unity.ml-agents-performance.yml
com.unity.ml-agents-performance.yml
YAML
1,206
0.8
0.033333
1
awesome-app
511
2024-02-25T11:56:58.526372
BSD-3-Clause
false
50782ffeec7b5158bb7f347a3c5fdf79
test_editors:\n - version: 2023.2\ntest_platforms:\n - name: win\n type: Unity::VM\n image: package-ci/win11:v4\n flavor: b1.large\n---\n\n{% for editor in test_editors %}\n{% for platform in test_platforms %}\npromotion_test_{{ platform.name }}_{{ editor.version }}:\n name : Promotion Test {{ editor.version }} on {{ platform.name }}\n agent:\n type: {{ platform.type }}\n image: {{ platform.image }}\n flavor: {{ platform.flavor}}\n variables:\n UPMCI_PROMOTION: 1\n commands:\n - npm install upm-ci-utils@1.27.0 -g --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm\n - upm-ci package test --unity-version {{ editor.version }} --package-path com.unity.ml-agents\n artifacts:\n logs:\n paths:\n - "upm-ci~/test-results/**/*"\n dependencies:\n - .yamato/com.unity.ml-agents-pack.yml#pack\n{% endfor %}\n{% endfor %}\n\npromotion_test_trigger:\n name: Promotion Tests Trigger\n dependencies:\n{% for editor in test_editors %}\n{% for platform in test_platforms %}\n - .yamato/com.unity.ml-agents-promotion.yml#promotion_test_{{platform.name}}_{{editor.version}}\n{% endfor %}\n{% endfor %}\n\n\npromote:\n name: Promote to Production\n agent:\n type: Unity::VM\n image: package-ci/win11:v4\n flavor: b1.large\n variables:\n UPMCI_PROMOTION: 1\n commands:\n - npm install upm-ci-utils@1.27.0 -g --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm\n - upm-ci package promote --package-path com.unity.ml-agents\n# triggers:\n# tags:\n# only:\n# - /^(r|R)elease-\d+\.\d+\.\d+(-preview(\.\d+)?)?$/\n artifacts:\n artifacts:\n paths:\n - "upm-ci~/packages/*.tgz"\n dependencies:\n - .yamato/com.unity.ml-agents-pack.yml#pack\n{% for editor in test_editors %}\n{% for platform in test_platforms %}\n - .yamato/com.unity.ml-agents-promotion.yml#promotion_test_{{ platform.name }}_{{ editor.version }}\n{% endfor %}\n{% endfor %}\n
dataset_sample\yaml\csharp\com.unity.ml-agents-promotion.yml
com.unity.ml-agents-promotion.yml
YAML
1,948
0.8
0.089552
0.063492
python-kit
472
2025-03-23T12:25:10.108964
MIT
false
7c994affd808026b2a9f86a9ae9d1487
publish:\n name: Publish ML-Agents to Internal Registry\n agent:\n type: Unity::VM\n image: package-ci/win11:v4\n flavor: b1.large\n variables:\n UPMCI_ENABLE_PACKAGE_SIGNING: 1\n commands:\n - npm install upm-ci-utils@1.27.0 -g --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm\n - upm-ci package publish --package-path com.unity.ml-agents\n triggers:\n cancel_old_ci: true\n# tags:\n# only:\n# - /^(r|R)(c|C)-\d+\.\d+\.\d+(-preview(\.\d+)?)?$/\n artifacts:\n artifacts:\n paths:\n - "upm-ci~/packages/*.tgz"\n dependencies:\n - .yamato/com.unity.ml-agents-pack.yml#pack\n - .yamato/com.unity.ml-agents-test.yml#all_package_tests\n
dataset_sample\yaml\csharp\com.unity.ml-agents-publish.yml
com.unity.ml-agents-publish.yml
YAML
711
0.8
0
0.130435
awesome-app
885
2025-05-31T02:27:43.955268
GPL-3.0
false
dbab3a5f0ecb3cf0db145170794858ab
# Configuration for welcome - https://github.com/behaviorbot/welcome\n\n## Configuration for new-issue-welcome - https://github.com/behaviorbot/new-issue-welcome\n\n# Comment to be posted to on first time issues\n#newIssueWelcomeComment: >\n# Thanks for opening your first issue here! Be sure to follow the issue template!\n\n## Configuration for new-pr-welcome - https://github.com/behaviorbot/new-pr-welcome\n\n# Comment to be posted to on PRs from first time contributors in your repository\n#newPRWelcomeComment: >\n# Thanks for opening this pull request! Please check out our contributing guidelines.\n\n## Configuration for first-pr-merge - https://github.com/behaviorbot/first-pr-merge\n\n# Comment to be posted to on pull requests merged by a first time user\nfirstPRMergeComment: >\n Congrats on your first pull-request! We ❤ the people who are involved in this project, and we’d love to pay it forward by [sending you some swag](https://aka.platform.uno/new-contrib-swag). If you have any feedback (or ideas how to improve Uno as a open-source project) please [open a feedback issue](https://github.com/unoplatform/uno/issues/new?labels=kind%2Ffeedback%2C+triage%2Funtriaged&template=feedback.md).\n <br>\n ![giphy](https://user-images.githubusercontent.com/127353/66220548-37ae4d00-e69b-11e9-8a16-f08f87b3b27c.gif)\n <br>\n Merci beaucoup 👋\n
dataset_sample\yaml\csharp\config.yml
config.yml
YAML
1,344
0.8
0.26087
0.647059
awesome-app
25
2023-10-31T08:05:14.640324
GPL-3.0
false
a6db0fce4338148c53c5a373b034d313
"base_path": ".."\n"preserve_hierarchy": true\n"files": [\n {\n "source": "/ArchiSteamFarm/Localization/Strings.resx",\n "translation": "/ArchiSteamFarm/Localization/Strings.%locale%.resx",\n "translation_replace": {\n ".bs-BA.resx": ".bs-Latn.resx",\n ".lol-US.resx": ".qps-Ploc.resx",\n ".sr-CS.resx": ".sr-Latn.resx",\n ".zh-CN.resx": ".zh-Hans.resx",\n ".zh-HK.resx": ".zh-Hant-HK.resx",\n ".zh-TW.resx": ".zh-Hant.resx"\n }\n },\n {\n "source": "/ArchiSteamFarm.OfficialPlugins.ItemsMatcher/Localization/Strings.resx",\n "translation": "/ArchiSteamFarm.OfficialPlugins.ItemsMatcher/Localization/Strings.%locale%.resx",\n "translation_replace": {\n ".bs-BA.resx": ".bs-Latn.resx",\n ".lol-US.resx": ".qps-Ploc.resx",\n ".sr-CS.resx": ".sr-Latn.resx",\n ".zh-CN.resx": ".zh-Hans.resx",\n ".zh-HK.resx": ".zh-Hant-HK.resx",\n ".zh-TW.resx": ".zh-Hant.resx"\n }\n },\n {\n "source": "/ArchiSteamFarm.OfficialPlugins.MobileAuthenticator/Localization/Strings.resx",\n "translation": "/ArchiSteamFarm.OfficialPlugins.MobileAuthenticator/Localization/Strings.%locale%.resx",\n "translation_replace": {\n ".bs-BA.resx": ".bs-Latn.resx",\n ".lol-US.resx": ".qps-Ploc.resx",\n ".sr-CS.resx": ".sr-Latn.resx",\n ".zh-CN.resx": ".zh-Hans.resx",\n ".zh-HK.resx": ".zh-Hant-HK.resx",\n ".zh-TW.resx": ".zh-Hant.resx"\n }\n },\n {\n "source": "/ArchiSteamFarm.OfficialPlugins.SteamTokenDumper/Localization/Strings.resx",\n "translation": "/ArchiSteamFarm.OfficialPlugins.SteamTokenDumper/Localization/Strings.%locale%.resx",\n "translation_replace": {\n ".bs-BA.resx": ".bs-Latn.resx",\n ".lol-US.resx": ".qps-Ploc.resx",\n ".sr-CS.resx": ".sr-Latn.resx",\n ".zh-CN.resx": ".zh-Hans.resx",\n ".zh-HK.resx": ".zh-Hant-HK.resx",\n ".zh-TW.resx": ".zh-Hant.resx"\n }\n },\n {\n "source": "/wiki/*.md",\n "translation": "/wiki/locale/%locale%/%file_name%-%locale%.%file_extension%",\n "ignore": [ "/**/_*.md" ]\n },\n {\n "source": "/wiki/_Sidebar.md",\n "translation": "/wiki/locale/%locale%/_Sidebar.md"\n }\n]\n
dataset_sample\yaml\csharp\crowdin.yml
crowdin.yml
YAML
2,133
0.8
0
0
python-kit
29
2025-01-11T22:09:08.850060
MIT
false
fd46b87245f7efe92bbc720f3666519f
version: 2\nupdates:\n- package-ecosystem: nuget\n directory: "/"\n schedule:\n interval: weekly\n time: "01:00"\n open-pull-requests-limit: 10\n labels:\n - kind/dependency\n - do-not-merge/work-in-progress\n ignore:\n - dependency-name: Microsoft.VisualStudio.Telemetry\n versions:\n - "> 16.3.2"\n - dependency-name: Com.Airbnb.Android.Lottie\n versions:\n - "> 3.0.4, < 3.1"\n - dependency-name: Microsoft.Extensions.Logging.Console\n versions:\n - ">= 2.2.a, < 2.3"\n - dependency-name: CommonServiceLocator\n versions:\n - ">= 2.0.a, < 2.1"\n - dependency-name: NUnit.Runners\n versions:\n - ">= 3.10.a, < 3.11"\n - dependency-name: Microsoft.CodeAnalysis.VisualBasic\n versions:\n - ">= 3.1.a, < 3.2"\n - dependency-name: Microsoft.NETCore.UniversalWindowsPlatform\n versions:\n - "> 6.1.9"\n - dependency-name: microsoft.visualstudio.texttemplating.15.0\n versions:\n - "> 16.3.29316.127"\n - dependency-name: Xamarin.AndroidX.Fragment\n versions:\n - ">= 1.2.a, < 1.3"\n - dependency-name: Microsoft.Extensions.Logging.Debug\n versions:\n - ">= 2.2.a, < 2.3"\n - dependency-name: Microsoft.AppCenter\n versions:\n - ">= 2.0.a, < 2.1"\n - dependency-name: Microsoft.CodeAnalysis.CSharp.Workspaces\n versions:\n - ">= 3.1.a, < 3.2"\n - dependency-name: Refit\n versions:\n - ">= 4.7.a, < 4.8"\n - dependency-name: Microsoft.TypeScript.MSBuild\n versions:\n - ">= 3.5.a, < 3.6"\n - dependency-name: Moq\n versions:\n - ">= 4.11.a, < 4.12"\n - dependency-name: Mono.Cecil\n versions:\n - ">= 0.11.a, < 0.12"\n - dependency-name: docfx.console\n versions:\n - ">= 2.45.a, < 2.46"\n - dependency-name: cef.redist.x64\n versions:\n - "> 3.3396.1786"\n - dependency-name: CommonServiceLocator\n versions:\n - "> 1.3"\n - dependency-name: System.Reactive\n versions:\n - "> 4.1.0, < 4.2"\n - dependency-name: Microsoft.Extensions.Logging.Debug\n versions:\n - "> 1.1.1"\n - dependency-name: CefSharp.Wpf\n versions:\n - "> 67.0.0"\n - dependency-name: cef.redist.x86\n versions:\n - "> 3.3396.1786"\n - dependency-name: Microsoft.CodeAnalysis.VisualBasic\n versions:\n - ">= 3.0.a, < 3.1"\n - dependency-name: Microsoft.Build.Engine\n versions:\n - "> 15.4.8"\n - dependency-name: Microsoft.Build.Framework\n versions:\n - "> 15.8.166"\n - dependency-name: CefSharp.Common\n versions:\n - "> 67.0.0"\n - dependency-name: Microsoft.CodeAnalysis.CSharp.Workspaces\n versions:\n - ">= 3.2.a, < 3.3"\n - dependency-name: Microsoft.CodeAnalysis.Workspaces.MSBuild\n versions:\n - ">= 3.2.a, < 3.3"\n - dependency-name: Microsoft.CodeAnalysis\n versions:\n - ">= 3.2.a, < 3.3"\n - dependency-name: Microsoft.CodeAnalysis.Workspaces.Common\n versions:\n - ">= 3.2.a, < 3.3"\n - dependency-name: Microsoft.CodeAnalysis.CSharp\n versions:\n - ">= 3.2.a, < 3.3"\n - dependency-name: CefSharp.Common\n versions:\n - ">= 73.a, < 74"\n - dependency-name: Mono.Cecil\n versions:\n - "> 0.9.5.4, < 0.10"\n - dependency-name: BenchmarkDotNet\n versions:\n - ">= 0.12.a, < 0.13"\n - dependency-name: GtkSharp\n versions:\n - "> 3.24.24.4, < 3.25"\n - dependency-name: Microsoft.ApplicationInsights\n versions:\n - ">= 2.14.a, < 2.15"\n - dependency-name: Uno.Wasm.Bootstrap.DevServer\n versions:\n - "> 1.3.4, < 1.4"\n - dependency-name: Uno.Wasm.Bootstrap\n versions:\n - "> 1.3.4, < 1.4"\n - dependency-name: Xamarin.GooglePlayServices.Location\n versions:\n - ">= 117.1.a, < 117.2"\n - dependency-name: Microsoft.VisualStudio.ComponentModelHost\n versions:\n - "> 15.8.525"\n - dependency-name: Microsoft.UI.Xaml\n versions:\n - ">= 2.3.a, < 2.4"\n - dependency-name: System.Memory\n versions:\n - "> 4.5.2"\n - dependency-name: Microsoft.Extensions.Logging.Console\n versions:\n - ">= 3.0.a, < 3.1"\n - dependency-name: Microsoft.Build.Utilities.Core\n versions:\n - ">= 16.a, < 17"\n - dependency-name: Microsoft.Build.Framework\n versions:\n - "> 15.4.8"\n - dependency-name: Microsoft.CodeAnalysis.Common\n versions:\n - ">= 3.6.a, < 3.7"\n - dependency-name: Microsoft.CodeAnalysis.Workspaces.Common\n versions:\n - ">= 3.6.a, < 3.7"\n - dependency-name: Microsoft.VisualStudio.Shell.Interop.11.0\n versions:\n - "> 11.0.61031"\n - dependency-name: Microsoft.CodeAnalysis.CSharp\n versions:\n - ">= 3.6.a, < 3.7"\n - dependency-name: Microsoft.CodeAnalysis.VisualBasic\n versions:\n - "> 3.6.0"\n - dependency-name: Microsoft.VisualStudio.Shell.Interop.15.3.DesignTime\n versions:\n - "> 15.0.26929"\n - dependency-name: Microsoft.VisualStudio.Shell.15.0\n versions:\n - "> 15.9.28307"\n - dependency-name: Microsoft.CodeAnalysis\n versions:\n - "> 3.3.1"\n - dependency-name: Microsoft.VisualStudio.Imaging\n versions:\n - "> 15.9.28307"\n - dependency-name: Microsoft.TypeScript.MSBuild\n versions:\n - "> 3.9.2, < 3.10"\n - dependency-name: Microsoft.VisualStudio.Utilities\n versions:\n - "> 15.9.28307"\n - dependency-name: Microsoft.Identity.Client\n versions:\n - "> 4.15.0"\n - dependency-name: Microsoft.VisualStudio.SDK.EmbedInteropTypes\n versions:\n - "> 15.0.16"\n - dependency-name: Microsoft.Graph\n versions:\n - ">= 3.9.a, < 3.10"\n - dependency-name: Microsoft.CodeAnalysis.CSharp.Workspaces\n versions:\n - "> 3.3.1"\n - dependency-name: EnvDTE100\n versions:\n - ">= 16.7.a, < 16.8"\n - dependency-name: Microsoft.VisualStudio.Shell.Interop\n versions:\n - ">= 16.7.a, < 16.8"\n - dependency-name: Microsoft.VisualStudio.Shell.Interop.12.0\n versions:\n - ">= 16.7.a, < 16.8"\n - dependency-name: Microsoft.VisualStudio.TextManager.Interop.8.0\n versions:\n - ">= 16.7.a, < 16.8"\n - dependency-name: Microsoft.VisualStudio.Shell.Interop.14.0.DesignTime\n versions:\n - ">= 16.7.a, < 16.8"\n - dependency-name: Microsoft.VisualStudio.Shell.Interop.8.0\n versions:\n - ">= 16.7.a, < 16.8"\n - dependency-name: Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime\n versions:\n - ">= 16.7.a, < 16.8"\n - dependency-name: Microsoft.VisualStudio.OLE.Interop\n versions:\n - ">= 16.7.a, < 16.8"\n - dependency-name: Microsoft.CodeAnalysis.Workspaces.MSBuild\n versions:\n - ">= 3.3.a, < 3.4"\n - dependency-name: Microsoft.Build.Utilities.Core\n versions:\n - "> 15.4.8"\n - dependency-name: Microsoft.ApplicationInsights\n versions:\n - "> 2.12.0, < 2.13"\n - dependency-name: ManagedEsent\n versions:\n - ">= 2.0.a, < 2.1"\n - dependency-name: NuGet.VisualStudio\n versions:\n - ">= 4.6.a, < 4.7"\n - dependency-name: Microsoft.VisualStudio.ImageCatalog\n versions:\n - "> 15.9.28307"\n - dependency-name: Microsoft.VisualStudio.Threading.Analyzers\n versions:\n - "> 15.8.209"\n - dependency-name: NUnit3TestAdapter\n versions:\n - "> 3.16.0, < 3.17"\n - dependency-name: Microsoft.VisualStudio.Text.Data\n versions:\n - "> 15.6.27740"\n - dependency-name: Microsoft.VisualStudio.Shell.Framework\n versions:\n - "> 15.9.28307"\n - dependency-name: Microsoft.VisualStudio.Threading\n versions:\n - "> 15.8.209"\n - dependency-name: System.Management\n versions:\n - ">= 4.7.a, < 4.8"\n - dependency-name: microsoft.visualstudio.texttemplating.15.0\n versions:\n - ">= 16.4.a, < 16.5"\n - dependency-name: Microsoft.TypeScript.MSBuild\n versions:\n - ">= 3.7.a, < 3.8"\n - dependency-name: Microsoft.VisualStudio.CoreUtility\n versions:\n - "> 15.6.27740"\n - dependency-name: Microsoft.Extensions.Logging.Console\n versions:\n - ">= 3.1.a, < 3.2"\n - dependency-name: microsoft.visualstudio.texttemplating.15.0\n versions:\n - ">= 16.5.a, < 16.6"\n - dependency-name: Microsoft.CodeAnalysis.CSharp.Workspaces\n versions:\n - ">= 3.5.a, < 3.6"\n - dependency-name: Microsoft.AppCenter\n versions:\n - ">= 3.1.a, < 3.2"\n - dependency-name: Microsoft.Build\n versions:\n - "> 15.4.8"\n - dependency-name: StreamJsonRpc\n versions:\n - "> 2.2.34, < 2.3"\n - dependency-name: Microsoft.CodeAnalysis.CSharp.Workspaces\n versions:\n - ">= 3.4.a, < 3.5"\n - dependency-name: Microsoft.Build.Utilities.Core\n versions:\n - ">= 16.4.a, < 16.5"\n - dependency-name: Microsoft.Graph\n versions:\n - ">= 3.14.a, < 3.15"\n - dependency-name: Microsoft.VisualStudio.Shell.Interop.15.6.DesignTime\n versions:\n - ">= 16.7.a, < 16.8"\n - dependency-name: Moq\n versions:\n - "> 4.14.6, < 4.15"\n - dependency-name: Microsoft.Build.Tasks.Core\n versions:\n - "> 15.4.8"\n - dependency-name: Xamarin.Android.Support.v7.RecyclerView\n versions:\n - "> 28.0.0.1"\n - dependency-name: Xamarin.AndroidX.Lifecycle.LiveData\n versions:\n - "> 2.2.0.2"\n - dependency-name: Microsoft.ApplicationInsights\n versions:\n - ">= 2.13.a, < 2.14"\n - dependency-name: Microsoft.TypeScript.MSBuild\n versions:\n - ">= 3.8.a, < 3.9"\n - dependency-name: Microsoft.CodeAnalysis.Workspaces.Common\n versions:\n - "> 3.3.1"\n - dependency-name: Microsoft.CodeAnalysis.CSharp\n versions:\n - "> 3.3.1"\n - dependency-name: Microsoft.CodeAnalysis.Common\n versions:\n - "> 3.3.1"\n - dependency-name: Xamarin.AndroidX.Browser\n versions:\n - "> 1.0.0, < 1.1"\n - dependency-name: Xamarin.AndroidX.Browser\n versions:\n - ">= 1.2.a, < 1.3"\n - dependency-name: Microsoft.Graph\n versions:\n - "> 3.12.0, < 4"\n - dependency-name: Xamarin.AndroidX.Lifecycle.LiveData\n versions:\n - "> 2.2.0.2, < 2.3"\n - dependency-name: Microsoft.Graph\n versions:\n - ">= 3.15.a, < 3.16"\n - dependency-name: Xamarin.AndroidX.AppCompat.AppCompatResources\n versions:\n - "> 1.1.0.1, < 1.2"\n - dependency-name: Microsoft.Identity.Client\n versions:\n - ">= 4.16.a, < 4.17"\n - dependency-name: Uno.SourceGenerationTasks\n versions:\n - "> 2.0.6, < 2.1"\n - dependency-name: Com.Airbnb.iOS.Lottie\n versions:\n - "> 2.5.11, < 2.6"\n - dependency-name: Microsoft.ApplicationInsights\n versions:\n - ">= 2.15.a, < 2.16"\n - dependency-name: Microsoft.TeamFoundationServer.Client\n versions:\n - ">= 16.170.a, < 16.171"\n - dependency-name: Microsoft.VisualStudio.Services.InteractiveClient\n versions:\n - ">= 16.170.a, < 16.171"\n - dependency-name: SkiaSharp.NativeAssets.Linux\n versions:\n - "> 2.80.0, < 2.81"\n - dependency-name: SkiaSharp\n versions:\n - "> 2.80.0, < 2.81"\n - dependency-name: Jellyfin.SkiaSharp.NativeAssets.LinuxArm\n versions:\n - "> 1.68.0, < 1.69"\n - dependency-name: Microsoft.AppCenter\n versions:\n - ">= 3.4.a, < 3.5"\n - dependency-name: stdole\n versions:\n - "> 7.0.3303"\n - dependency-name: Microsoft.CodeAnalysis.VisualBasic.Workspaces\n versions:\n - "> 3.6.0"\n - dependency-name: Microsoft.VisualStudio.Shell.Interop.10.0\n versions:\n - "> 10.0.30320"\n - dependency-name: Microsoft.VisualStudio.TextManager.Interop\n versions:\n - "> 7.10.6071"\n - dependency-name: Microsoft.VisualStudio.Shell.Interop.9.0\n versions:\n - "> 9.0.30730"\n - dependency-name: Microsoft.CodeAnalysis.Workspaces.MSBuild\n versions:\n - "> 3.6.0"\n - dependency-name: Microsoft.Identity.Client\n versions:\n - ">= 4.17.a, < 4.18"\n - dependency-name: SkiaSharp.Views\n versions:\n - "> 1.68.0, < 1.69"\n - dependency-name: Microsoft.VisualStudio.OLE.Interop\n versions:\n - "> 7.10.6071, < 7.11"\n - dependency-name: Microsoft.Extensions.Logging.Console\n versions:\n - ">= 5.0.a, < 5.1"\n - dependency-name: Uno.Wasm.Bootstrap\n versions:\n - "> 2.0.0.pre.dev.180, < 2.1"\n - dependency-name: Microsoft.VisualStudio.Validation\n versions:\n - "> 16.8.33"\n - dependency-name: Microsoft.Win32.Registry\n versions:\n - ">= 5.0.a, < 5.1"\n - dependency-name: Xamarin.AndroidX.Fragment\n versions:\n - "> 1.3.0.1"\n - dependency-name: System.ComponentModel.Composition\n versions:\n - ">= 5.0.a, < 5.1"\n - dependency-name: Uno.Wasm.Bootstrap.DevServer\n versions:\n - "> 2.0.0.pre.dev.180, < 2.1"\n - dependency-name: System.Reflection.Emit\n versions:\n - ">= 4.7.a, < 4.8"\n - dependency-name: Newtonsoft.Json\n versions:\n - ">= 13.0.a, < 13.1"\n - dependency-name: Uno.Core\n versions:\n - ">= 2.1.a, < 2.2"\n - dependency-name: Xamarin.AndroidX.Browser\n versions:\n - ">= 1.3.a, < 1.4"\n - dependency-name: NUnit.Engine\n versions:\n - ">= 3.12.a, < 3.13"\n - dependency-name: Microsoft.VisualStudio.Shell.Interop.15.6.DesignTime\n versions:\n - ">= 16.9.a, < 16.10"\n - dependency-name: Moq\n versions:\n - "> 4.16.0, < 4.17"\n - dependency-name: StreamJsonRpc\n versions:\n - ">= 2.7.a, < 2.8"\n - dependency-name: MSTest.TestFramework\n versions:\n - ">= 2.2.a, < 2.3"\n - dependency-name: Microsoft.VisualStudio.Shell.Interop.12.0\n versions:\n - ">= 16.9.a, < 16.10"\n - dependency-name: Microsoft.VisualStudio.OLE.Interop\n versions:\n - ">= 16.9.a, < 16.10"\n - dependency-name: Xamarin.GooglePlayServices.Location\n versions:\n - "> 117.0.0"\n - dependency-name: Microsoft.VisualStudio.Shell.Interop.14.0.DesignTime\n versions:\n - ">= 16.9.a, < 16.10"\n - dependency-name: Xamarin.AndroidX.Legacy.Support.v4\n versions:\n - "> 1.0.0, < 1.1"\n - dependency-name: Microsoft.VisualStudio.Shell.Interop.8.0\n versions:\n - "> 8.0.50728"\n - dependency-name: Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime\n versions:\n - "> 14.3.26931"\n - dependency-name: EnvDTE100\n versions:\n - "> 10.0.3"\n - dependency-name: NuGet.VisualStudio\n versions:\n - "> 4.5.0"\n - dependency-name: Microsoft.VisualStudio.Shell.Interop\n versions:\n - "> 7.10.6073"\n - dependency-name: Microsoft.VisualStudio.TextManager.Interop.8.0\n versions:\n - "> 8.0.50728"\n - dependency-name: Microsoft.ProjectReunion.WinUI\n versions:\n - 0.5.5\n - dependency-name: Xamarin.UITest\n versions:\n - 3.0.16\n - dependency-name: Microsoft.Toolkit.Uwp.UI.Lottie\n versions:\n - 7.0.1\n - dependency-name: MSTest.TestAdapter\n versions:\n - 2.2.1\n - dependency-name: Microsoft.TypeScript.MSBuild\n versions:\n - 4.2.2\n - dependency-name: Xamarin.AndroidX.Fragment\n versions:\n - 1.3.0\n commit-message:\n prefix: chore\n include: scope\n
dataset_sample\yaml\csharp\dependabot.yml
dependabot.yml
YAML
14,253
0.7
0
0
node-utils
708
2025-03-07T11:10:52.170285
GPL-3.0
false
a63c02b23441a98e6e6a469d6e6ce49b
name: Docker gcr.io/google-appengine/aspnetcore\n\non:\n pull_request:\n types: [synchronize, opened]\n\nenv:\n DEBIAN_FRONTEND: noninteractive\n\njobs:\n build:\n\n runs-on: ubuntu-18.04\n \n steps:\n - uses: actions/checkout@v2\n with:\n fetch-depth: 1\n \n - name: docker build\n run: |\n cd docker/appengine-aspnetcore3.1-opencv4.5.1\n docker build -t shimat/appengine-aspnetcore3.1-opencv4.5.1 .\n
dataset_sample\yaml\csharp\docker-appengine.yml
docker-appengine.yml
YAML
454
0.7
0
0
node-utils
553
2023-08-13T12:31:39.703672
GPL-3.0
false
bcae23b0495440c0f891c3ddcb4da215
services:\n postgres:\n image: postgres:latest\n command: -c 'max_connections=2000'\n environment:\n POSTGRES_USER: elsa\n POSTGRES_PASSWORD: elsa\n POSTGRES_DB: elsa\n volumes:\n - postgres-data:/var/lib/postgresql/data\n ports:\n - "5432:5432"\n \n rabbitmq:\n image: "rabbitmq:3-management"\n ports:\n - "15672:15672"\n - "5672:5672"\n \n redis:\n image: redis:latest\n ports:\n - "127.0.0.1:6379:6379"\n\n elsa-server:\n pull_policy: always\n build:\n context: ../.\n dockerfile: ./docker/ElsaServer-Datadog.Dockerfile\n depends_on:\n - postgres\n - rabbitmq\n - redis\n - otel-collector\n environment:\n DD_AGENT_HOST: datadog-agent\n DD_ENV: development\n DD_TRACE_DEBUG: true\n DD_TRACE_OTEL_ENABLED: true\n DD_SERVICE: "Elsa Server"\n DD_VERSION: "3.3.0"\n # OpenTelemetry environment variables\n OTEL_EXPORTER_OTLP_ENDPOINT: "http://otel-collector:4317" # Point to OpenTelemetry Collector\n OTEL_EXPORTER_OTLP_PROTOCOL: "grpc" # Use gRPC for OTLP\n OTEL_TRACES_EXPORTER: "otlp"\n OTEL_METRICS_EXPORTER: "otlp"\n OTEL_LOGS_EXPORTER: "otpl"\n OTEL_RESOURCE_ATTRIBUTES: "service.name=elsa-server-local,service.version=3.2.1-blueberry,deployment.environment=development"\n OTEL_DOTNET_AUTO_TRACES_ADDITIONAL_SOURCES: "Elsa.Workflows"\n OTEL_DOTNET_AUTO_INSTRUMENTATION_ENABLED: "true"\n OTEL_LOG_LEVEL: "debug"\n OTEL_DOTNET_AUTO_RESOURCE_DETECTOR_ENABLED: "true"\n OTEL_DOTNET_AUTO_LOGS_CONSOLE_EXPORTER_ENABLED: "true"\n OTEL_DOTNET_AUTO_METRICS_CONSOLE_EXPORTER_ENABLED: "true"\n OTEL_DOTNET_AUTO_TRACES_CONSOLE_EXPORTER_ENABLED: "true"\n \n ASPNETCORE_ENVIRONMENT: Development\n PYTHONNET_PYDLL: /opt/homebrew/Cellar/python@3.11/3.11.6_1/Frameworks/Python.framework/Versions/3.11/bin/python3.11\n PYTHONNET_RUNTIME: coreclr\n CONNECTIONSTRINGS__POSTGRESQL: "Server=postgres;Username=elsa;Database=elsa;Port=5432;Password=elsa;SSLMode=Prefer"\n CONNECTIONSTRINGS__RABBITMQ: "amqp://guest:guest@rabbitmq:5672/"\n CONNECTIONSTRINGS__REDIS: "redis:6379"\n DISTRIBUTEDLOCKPROVIDER: "Postgres"\n ports:\n - "13000:8080"\n \n elsa-studio:\n pull_policy: always\n build:\n context: ../.\n dockerfile: ./docker/ElsaStudio.Dockerfile\n environment:\n ASPNETCORE_ENVIRONMENT: Development\n ELSASERVER__URL: "http://localhost:13000/elsa/api"\n ports:\n - "14000:8080"\n \n otel-collector:\n image: otel/opentelemetry-collector-contrib:latest\n volumes:\n - ./otel-collector-config.yaml:/etc/otel-collector-config.yaml\n command: [ "--config", "/etc/otel-collector-config.yaml", "--feature-gates", "-component.UseLocalHostAsDefaultHost" ]\n environment:\n DD_API_KEY: "secret api key"\n DD_SITE: "datadoghq.eu"\n ports:\n - "13133:13133"\n - "4317:4317"\n - "4318:4318"\n \n datadog-agent:\n image: datadog/agent:latest\n environment:\n DD_API_KEY: "<hidden>"\n DD_SITE: "datadoghq.eu"\n DD_HOSTNAME: "otel-collector"\n DD_LOGS_ENABLED: "true"\n DD_OTLP_CONFIG_LOGS_ENABLED: "true"\n DD_LOGS_CONFIG_CONTAINER_COLLECT_ALL: "true"\n DD_APM_ENABLED: "true"\n DD_APM_NON_LOCAL_TRAFFIC: "true"\n DD_OTLP_CONFIG_RECEIVER_PROTOCOLS_GRPC_ENDPOINT: 0.0.0.0:4317 # The Datadog Agent expects traces from OpenTelemetry Collector\n DD_OTLP_CONFIG_RECEIVER_PROTOCOLS_HTTP_ENDPOINT: 0.0.0.0:4318\n\n # Service autodiscovery\n DD_AC_INCLUDE: "name:postgres,name:rabbitmq,name:redis,name:elsa-server"\n DD_AC_EXCLUDE: "name:datadog-agent"\n\n ports:\n - "8126:8126"\n - "14317:4317"\n - "14318:4318"\n\nvolumes:\n postgres-data:
dataset_sample\yaml\csharp\docker-compose-datadog+otel-collector.yml
docker-compose-datadog+otel-collector.yml
YAML
3,737
0.8
0.008772
0.019048
node-utils
802
2024-08-24T09:16:55.744132
Apache-2.0
false
946776107614ce22f6a59b8bf42a4331
---\nversion: '2'\nservices:\n\n broker:\n image: confluentinc/cp-kafka:7.7.1\n hostname: broker\n container_name: broker\n ports:\n - "9092:9092"\n - "9101:9101"\n environment:\n KAFKA_NODE_ID: 1\n KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: 'CONTROLLER:PLAINTEXT,PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT'\n KAFKA_ADVERTISED_LISTENERS: 'PLAINTEXT://broker:29092,PLAINTEXT_HOST://localhost:9092'\n KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1\n KAFKA_GROUP_INITIAL_REBALANCE_DELAY_MS: 0\n KAFKA_TRANSACTION_STATE_LOG_MIN_ISR: 1\n KAFKA_TRANSACTION_STATE_LOG_REPLICATION_FACTOR: 1\n KAFKA_JMX_PORT: 9101\n KAFKA_JMX_HOSTNAME: localhost\n KAFKA_PROCESS_ROLES: 'broker,controller'\n KAFKA_CONTROLLER_QUORUM_VOTERS: '1@broker:29093'\n KAFKA_LISTENERS: 'PLAINTEXT://broker:29092,CONTROLLER://broker:29093,PLAINTEXT_HOST://0.0.0.0:9092'\n KAFKA_INTER_BROKER_LISTENER_NAME: 'PLAINTEXT'\n KAFKA_CONTROLLER_LISTENER_NAMES: 'CONTROLLER'\n KAFKA_LOG_DIRS: '/tmp/kraft-combined-logs'\n # Replace CLUSTER_ID with a unique base64 UUID using "bin/kafka-storage.sh random-uuid" \n # See https://docs.confluent.io/kafka/operations-tools/kafka-tools.html#kafka-storage-sh\n CLUSTER_ID: 'MkU3OEVBNTcwNTJENDM2Qk'\n\n schema-registry:\n image: confluentinc/cp-schema-registry:7.7.1\n hostname: schema-registry\n container_name: schema-registry\n depends_on:\n - broker\n ports:\n - "8081:8081"\n environment:\n SCHEMA_REGISTRY_HOST_NAME: schema-registry\n SCHEMA_REGISTRY_KAFKASTORE_BOOTSTRAP_SERVERS: 'broker:29092'\n SCHEMA_REGISTRY_LISTENERS: http://0.0.0.0:8081\n\n connect:\n image: cnfldemos/cp-server-connect-datagen:0.6.4-7.6.0\n hostname: connect\n container_name: connect\n depends_on:\n - broker\n - schema-registry\n ports:\n - "8083:8083"\n environment:\n CONNECT_BOOTSTRAP_SERVERS: 'broker:29092'\n CONNECT_REST_ADVERTISED_HOST_NAME: connect\n CONNECT_GROUP_ID: compose-connect-group\n CONNECT_CONFIG_STORAGE_TOPIC: docker-connect-configs\n CONNECT_CONFIG_STORAGE_REPLICATION_FACTOR: 1\n CONNECT_OFFSET_FLUSH_INTERVAL_MS: 10000\n CONNECT_OFFSET_STORAGE_TOPIC: docker-connect-offsets\n CONNECT_OFFSET_STORAGE_REPLICATION_FACTOR: 1\n CONNECT_STATUS_STORAGE_TOPIC: docker-connect-status\n CONNECT_STATUS_STORAGE_REPLICATION_FACTOR: 1\n CONNECT_KEY_CONVERTER: org.apache.kafka.connect.storage.StringConverter\n CONNECT_VALUE_CONVERTER: io.confluent.connect.avro.AvroConverter\n CONNECT_VALUE_CONVERTER_SCHEMA_REGISTRY_URL: http://schema-registry:8081\n # CLASSPATH required due to CC-2422\n CLASSPATH: /usr/share/java/monitoring-interceptors/monitoring-interceptors-7.7.1.jar\n CONNECT_PRODUCER_INTERCEPTOR_CLASSES: "io.confluent.monitoring.clients.interceptor.MonitoringProducerInterceptor"\n CONNECT_CONSUMER_INTERCEPTOR_CLASSES: "io.confluent.monitoring.clients.interceptor.MonitoringConsumerInterceptor"\n CONNECT_PLUGIN_PATH: "/usr/share/java,/usr/share/confluent-hub-components"\n CONNECT_LOG4J_LOGGERS: org.apache.zookeeper=ERROR,org.I0Itec.zkclient=ERROR,org.reflections=ERROR\n\n control-center:\n image: confluentinc/cp-enterprise-control-center:7.7.1\n hostname: control-center\n container_name: control-center\n depends_on:\n - broker\n - schema-registry\n - connect\n - ksqldb-server\n ports:\n - "9021:9021"\n environment:\n CONTROL_CENTER_BOOTSTRAP_SERVERS: 'broker:29092'\n CONTROL_CENTER_CONNECT_CONNECT-DEFAULT_CLUSTER: 'connect:8083'\n CONTROL_CENTER_CONNECT_HEALTHCHECK_ENDPOINT: '/connectors'\n CONTROL_CENTER_KSQL_KSQLDB1_URL: "http://ksqldb-server:8088"\n CONTROL_CENTER_KSQL_KSQLDB1_ADVERTISED_URL: "http://localhost:8088"\n CONTROL_CENTER_SCHEMA_REGISTRY_URL: "http://schema-registry:8081"\n CONTROL_CENTER_REPLICATION_FACTOR: 1\n CONTROL_CENTER_INTERNAL_TOPICS_PARTITIONS: 1\n CONTROL_CENTER_MONITORING_INTERCEPTOR_TOPIC_PARTITIONS: 1\n CONFLUENT_METRICS_TOPIC_REPLICATION: 1\n PORT: 9021\n\n ksqldb-server:\n image: confluentinc/cp-ksqldb-server:7.7.1\n hostname: ksqldb-server\n container_name: ksqldb-server\n depends_on:\n - broker\n - connect\n ports:\n - "8088:8088"\n environment:\n KSQL_CONFIG_DIR: "/etc/ksql"\n KSQL_BOOTSTRAP_SERVERS: "broker:29092"\n KSQL_HOST_NAME: ksqldb-server\n KSQL_LISTENERS: "http://0.0.0.0:8088"\n KSQL_CACHE_MAX_BYTES_BUFFERING: 0\n KSQL_KSQL_SCHEMA_REGISTRY_URL: "http://schema-registry:8081"\n KSQL_PRODUCER_INTERCEPTOR_CLASSES: "io.confluent.monitoring.clients.interceptor.MonitoringProducerInterceptor"\n KSQL_CONSUMER_INTERCEPTOR_CLASSES: "io.confluent.monitoring.clients.interceptor.MonitoringConsumerInterceptor"\n KSQL_KSQL_CONNECT_URL: "http://connect:8083"\n KSQL_KSQL_LOGGING_PROCESSING_TOPIC_REPLICATION_FACTOR: 1\n KSQL_KSQL_LOGGING_PROCESSING_TOPIC_AUTO_CREATE: 'true'\n KSQL_KSQL_LOGGING_PROCESSING_STREAM_AUTO_CREATE: 'true'\n\n ksqldb-cli:\n image: confluentinc/cp-ksqldb-cli:7.7.1\n container_name: ksqldb-cli\n depends_on:\n - broker\n - connect\n - ksqldb-server\n entrypoint: /bin/sh\n tty: true\n\n ksql-datagen:\n image: confluentinc/ksqldb-examples:7.7.1\n hostname: ksql-datagen\n container_name: ksql-datagen\n depends_on:\n - ksqldb-server\n - broker\n - schema-registry\n - connect\n command: "bash -c 'echo Waiting for Kafka to be ready... && \\n cub kafka-ready -b broker:29092 1 40 && \\n echo Waiting for Confluent Schema Registry to be ready... && \\n cub sr-ready schema-registry 8081 40 && \\n echo Waiting a few seconds for topic creation to finish... && \\n sleep 11 && \\n tail -f /dev/null'"\n environment:\n KSQL_CONFIG_DIR: "/etc/ksql"\n STREAMS_BOOTSTRAP_SERVERS: broker:29092\n STREAMS_SCHEMA_REGISTRY_HOST: schema-registry\n STREAMS_SCHEMA_REGISTRY_PORT: 8081\n\n rest-proxy:\n image: confluentinc/cp-kafka-rest:7.7.1\n depends_on:\n - broker\n - schema-registry\n ports:\n - 8082:8082\n hostname: rest-proxy\n container_name: rest-proxy\n environment:\n KAFKA_REST_HOST_NAME: rest-proxy\n KAFKA_REST_BOOTSTRAP_SERVERS: 'broker:29092'\n KAFKA_REST_LISTENERS: "http://0.0.0.0:8082"\n KAFKA_REST_SCHEMA_REGISTRY_URL: 'http://schema-registry:8081'\n
dataset_sample\yaml\csharp\docker-compose-kafka.yml
docker-compose-kafka.yml
YAML
6,528
0.95
0.017964
0.018868
awesome-app
401
2023-12-24T09:06:11.302735
BSD-3-Clause
false
098449105f72100b4344966db78fe162
version: "3"\n\n# Run `docker-compose up dev` for bootstrapping your development environment\n# Doing so will expose NBXplorer, Bitcoind RPC and postgres port to the host so that tests can Run,\n# The Visual Studio launch setting `Docker-regtest` is configured to use this environment.\nservices:\n\n tests:\n build:\n context: ..\n dockerfile: BTCPayServer.Tests/Dockerfile\n args:\n CONFIGURATION_NAME: Release\n environment:\n TESTS_BTCRPCCONNECTION: server=http://bitcoind:43782;ceiwHEbqWI83:DwubwWsoo3\n TESTS_LTCRPCCONNECTION: server=http://litecoind:43782;ceiwHEbqWI83:DwubwWsoo3\n TESTS_BTCNBXPLORERURL: http://nbxplorer:32838/\n TESTS_LTCNBXPLORERURL: http://nbxplorer:32838/\n TESTS_POSTGRES: User ID=postgres;Include Error Detail=true;Host=postgres;Port=5432;Database=btcpayserver\n TESTS_EXPLORER_POSTGRES: User ID=postgres;Include Error Detail=true;Host=postgres;Port=5432;Database=nbxplorer\n TESTS_HOSTNAME: tests\n TESTS_RUN_EXTERNAL_INTEGRATION: ${TESTS_RUN_EXTERNAL_INTEGRATION:-"false"}\n TESTS_AzureBlobStorageConnectionString: ${TESTS_AzureBlobStorageConnectionString:-none}\n TEST_MERCHANTLIGHTNINGD: "type=clightning;server=unix://etc/merchant_lightningd_datadir/lightning-rpc"\n TEST_CUSTOMERLIGHTNINGD: "type=clightning;server=unix://etc/customer_lightningd_datadir/lightning-rpc"\n TEST_MERCHANTLND: "http://merchant_lnd:8080/"\n TESTS_INCONTAINER: "true"\n TESTS_SSHCONNECTION: "root@sshd:22"\n TESTS_SSHPASSWORD: ""\n TESTS_SSHKEYFILE: ""\n TESTS_SOCKSENDPOINT: "tor:9050"\n expose:\n - "80"\n depends_on:\n - dev\n - selenium\n extra_hosts:\n - "tests:127.0.0.1"\n networks:\n default:\n custom:\n ipv4_address: 172.23.0.18\n volumes:\n - "sshd_datadir:/root/.ssh"\n - "customer_lightningd_datadir:/etc/customer_lightningd_datadir"\n - "merchant_lightningd_datadir:/etc/merchant_lightningd_datadir"\n\n # The dev container is not actually used, it is just handy to run `docker-compose up dev` to start all services\n dev:\n image: alpine:3.7\n command: [ "/bin/sh", "-c", "trap : TERM INT; while :; do echo Ready to code and debug like a rockstar!!!; sleep 2073600; done & wait" ]\n depends_on:\n - nbxplorer\n - postgres\n - customer_lightningd\n - merchant_lightningd\n - customer_lnd\n - merchant_lnd\n - sshd\n - tor\n\n sshd:\n build:\n context: .\n dockerfile: sshd.Dockerfile\n ports:\n - "21622:22"\n expose:\n - 22\n volumes:\n - "sshd_datadir:/root/.ssh"\n\n devlnd:\n image: btcpayserver/bitcoin:28.1\n environment:\n BITCOIN_NETWORK: regtest\n BITCOIN_WALLETDIR: "/data/wallets"\n BITCOIN_EXTRA_ARGS: |\n deprecatedrpc=signrawtransaction\n connect=bitcoind:39388\n fallbackfee=0.0002\n rpcallowip=0.0.0.0/0\n depends_on:\n - nbxplorer\n - postgres\n - customer_lnd\n - merchant_lnd\n\n selenium:\n image: selenium/standalone-chrome:125.0\n extra_hosts:\n - "tests:172.23.0.18"\n expose:\n - "4444"\n networks:\n default:\n custom:\n\n nbxplorer:\n image: nicolasdorier/nbxplorer:2.5.22\n restart: unless-stopped\n ports:\n - "32838:32838"\n expose:\n - "32838"\n environment:\n NBXPLORER_NETWORK: regtest\n NBXPLORER_CHAINS: "btc,ltc,lbtc"\n NBXPLORER_BTCRPCURL: http://bitcoind:43782/\n NBXPLORER_BTCNODEENDPOINT: bitcoind:39388\n NBXPLORER_BTCRPCUSER: ceiwHEbqWI83\n NBXPLORER_BTCRPCPASSWORD: DwubwWsoo3\n NBXPLORER_LTCRPCURL: http://litecoind:43782/\n NBXPLORER_LTCNODEENDPOINT: litecoind:39388\n NBXPLORER_LTCRPCUSER: ceiwHEbqWI83\n NBXPLORER_LTCRPCPASSWORD: DwubwWsoo3\n NBXPLORER_LBTCRPCURL: "http://elementsd-liquid:19332/"\n NBXPLORER_LBTCNODEENDPOINT: "elementsd-liquid:19444"\n NBXPLORER_LBTCRPCUSER: "liquid"\n NBXPLORER_LBTCRPCPASSWORD: "liquid"\n NBXPLORER_BIND: 0.0.0.0:32838\n NBXPLORER_MINGAPSIZE: 5\n NBXPLORER_MAXGAPSIZE: 10\n NBXPLORER_VERBOSE: 1\n NBXPLORER_POSTGRES: User ID=postgres;Include Error Detail=true;Host=postgres;Port=5432;Database=nbxplorer\n NBXPLORER_NOAUTH: 1\n NBXPLORER_EXPOSERPC: 1\n depends_on:\n - bitcoind\n - litecoind\n - elementsd-liquid\n\n\n bitcoind:\n restart: unless-stopped\n image: btcpayserver/bitcoin:28.1\n environment:\n BITCOIN_NETWORK: regtest\n BITCOIN_WALLETDIR: "/data/wallets"\n BITCOIN_EXTRA_ARGS: |-\n rpcuser=ceiwHEbqWI83\n rpcpassword=DwubwWsoo3\n rpcport=43782\n rpcbind=0.0.0.0:43782\n rpcallowip=0.0.0.0/0\n port=39388\n whitelist=0.0.0.0/0\n zmqpubrawblock=tcp://0.0.0.0:28332\n zmqpubrawtx=tcp://0.0.0.0:28333\n deprecatedrpc=signrawtransaction\n fallbackfee=0.0002\n ports:\n - "43782:43782"\n - "39388:39388"\n expose:\n - "43782" # RPC\n - "39388" # P2P\n - "28332" # ZMQ\n - "28333" # ZMQ\n volumes:\n - "bitcoin_datadir:/data"\n\n customer_lightningd:\n image: btcpayserver/lightning:v25.02\n stop_signal: SIGKILL\n restart: unless-stopped\n environment:\n EXPOSE_TCP: "true"\n LIGHTNINGD_CHAIN: "btc"\n LIGHTNINGD_NETWORK: "regtest"\n LIGHTNINGD_OPT: |\n developer\n bitcoin-datadir=/etc/bitcoin\n bitcoin-rpcconnect=bitcoind\n announce-addr=customer_lightningd:9735\n log-level=debug\n funding-confirms=1\n dev-fast-gossip\n dev-bitcoind-poll=1\n ports:\n - "30992:9835" # api port\n - "30892:9735" # server port\n expose:\n - "9735" # server port\n - "9835" # api port\n volumes:\n - "bitcoin_datadir:/etc/bitcoin"\n - "customer_lightningd_datadir:/root/.lightning"\n depends_on:\n - bitcoind\n\n merchant_lightningd:\n image: btcpayserver/lightning:v25.02\n stop_signal: SIGKILL\n restart: unless-stopped\n environment:\n EXPOSE_TCP: "true"\n LIGHTNINGD_CHAIN: "btc"\n LIGHTNINGD_NETWORK: "regtest"\n LIGHTNINGD_OPT: |\n developer\n bitcoin-datadir=/etc/bitcoin\n bitcoin-rpcconnect=bitcoind\n announce-addr=merchant_lightningd:9735\n funding-confirms=1\n log-level=debug\n dev-fast-gossip\n dev-bitcoind-poll=1\n ports:\n - "30993:9835" # api port\n - "30893:9735" # server port\n expose:\n - "9735" # server port\n - "9835" # api port\n volumes:\n - "bitcoin_datadir:/etc/bitcoin"\n - "merchant_lightningd_datadir:/root/.lightning"\n depends_on:\n - bitcoind\n\n postgres:\n image: postgres:13.13\n environment:\n POSTGRES_HOST_AUTH_METHOD: trust\n ports:\n - "39372:5432"\n expose:\n - "5432"\n\n merchant_lnd:\n image: btcpayserver/lnd:v0.18.5-beta\n restart: unless-stopped\n environment:\n LND_CHAIN: "btc"\n LND_ENVIRONMENT: "regtest"\n LND_EXPLORERURL: "http://nbxplorer:32838/"\n LND_REST_LISTEN_HOST: http://merchant_lnd:8080\n LND_EXTRA_ARGS: |\n restlisten=merchant_lnd:8080\n rpclisten=127.0.0.1:10008\n rpclisten=merchant_lnd:10009\n bitcoin.node=bitcoind\n bitcoind.rpchost=bitcoind:43782\n bitcoind.rpcuser=ceiwHEbqWI83\n bitcoind.rpcpass=DwubwWsoo3\n bitcoind.zmqpubrawblock=tcp://bitcoind:28332\n bitcoind.zmqpubrawtx=tcp://bitcoind:28333\n externalip=merchant_lnd:9735\n bitcoin.defaultchanconfs=1\n no-macaroons=1\n debuglevel=debug\n trickledelay=1000\n no-rest-tls=1\n ports:\n - "35531:8080"\n - "30894:9735"\n - "53280:10009"\n expose:\n - "8080"\n - "9735"\n - "10009"\n volumes:\n - "merchant_lnd_datadir:/data"\n - "bitcoin_datadir:/deps/.bitcoin"\n depends_on:\n - bitcoind\n\n customer_lnd:\n image: btcpayserver/lnd:v0.18.5-beta\n restart: unless-stopped\n environment:\n LND_CHAIN: "btc"\n LND_ENVIRONMENT: "regtest"\n LND_EXPLORERURL: "http://nbxplorer:32838/"\n LND_REST_LISTEN_HOST: http://customer_lnd:8080\n LND_EXTRA_ARGS: |\n restlisten=customer_lnd:8080\n rpclisten=127.0.0.1:10008\n rpclisten=customer_lnd:10009\n bitcoin.node=bitcoind\n bitcoind.rpchost=bitcoind:43782\n bitcoind.rpcuser=ceiwHEbqWI83\n bitcoind.rpcpass=DwubwWsoo3\n bitcoind.zmqpubrawblock=tcp://bitcoind:28332\n bitcoind.zmqpubrawtx=tcp://bitcoind:28333\n externalip=customer_lnd:10009\n bitcoin.defaultchanconfs=1\n no-macaroons=1\n debuglevel=debug\n trickledelay=1000\n no-rest-tls=1\n ports:\n - "35532:8080"\n - "30895:9735"\n expose:\n - "8080"\n - "9735"\n - "10009"\n volumes:\n - "customer_lnd_datadir:/root/.lnd"\n - "bitcoin_datadir:/deps/.bitcoin"\n depends_on:\n - bitcoind\n\n tor:\n restart: unless-stopped\n image: btcpayserver/tor:0.4.6.5\n container_name: tor\n environment:\n TOR_PASSWORD: btcpayserver\n ports:\n - "9050:9050" # SOCKS\n - "9051:9051" # Tor Control\n volumes:\n - "tor_datadir:/home/tor/.tor"\n - "torrcdir:/usr/local/etc/tor"\n - "tor_servicesdir:/var/lib/tor/hidden_services"\n\n litecoind:\n restart: unless-stopped\n image: btcpayserver/litecoin:0.18.1\n environment:\n BITCOIN_NETWORK: regtest\n BITCOIN_EXTRA_ARGS: |-\n rpcuser=ceiwHEbqWI83\n rpcpassword=DwubwWsoo3\n regtest=1\n rpcport=43782\n rpcbind=0.0.0.0:43782\n port=39388\n whitelist=0.0.0.0/0\n ports:\n - "43783:43782"\n expose:\n - "43782" # RPC\n - "39388" # P2P\n\n elementsd-liquid:\n restart: always\n container_name: btcpayserver_elementsd_liquid\n image: btcpayserver/elements:0.21.0.2-4\n environment:\n ELEMENTS_CHAIN: elementsregtest\n ELEMENTS_EXTRA_ARGS: |\n mainchainrpcport=43782\n mainchainrpchost=bitcoind\n mainchainrpcuser=liquid\n mainchainrpcpassword=liquid\n rpcport=19332\n rpcbind=0.0.0.0:19332\n rpcauth=liquid:c8bf1a8961d97f224cb21224aaa8235d$$402f4a8907683d057b8c58a42940b6e54d1638322a42986ae28ebb844e603ae6\n port=19444\n whitelist=0.0.0.0/0\n rpcallowip=0.0.0.0/0\n validatepegin=0\n initialfreecoins=2100000000000000\n con_dyna_deploy_signal=1\n con_dyna_deploy_start=10\n expose:\n - "19332"\n - "19444"\n ports:\n - "19332:19332"\n - "19444:19444"\n volumes:\n - "elementsd_liquid_datadir:/data"\n\nvolumes:\n sshd_datadir:\n bitcoin_datadir:\n elementsd_liquid_datadir:\n customer_lightningd_datadir:\n merchant_lightningd_datadir:\n lightning_charge_datadir:\n customer_lnd_datadir:\n merchant_lnd_datadir:\n tor_datadir:\n torrcdir:\n tor_servicesdir:\n\nnetworks:\n default:\n driver: bridge\n custom:\n driver: bridge\n ipam:\n config:\n - subnet: 172.23.0.0/16\n
dataset_sample\yaml\csharp\docker-compose.altcoins.yml
docker-compose.altcoins.yml
YAML
11,105
0.8
0.005155
0.01084
node-utils
735
2023-10-10T04:36:40.021285
Apache-2.0
false
cedc8d21b46cb80881861616c6ffb69c
version: "3"\n\n# Run `docker-compose up dev` for bootstrapping your development environment\n# Doing so will expose NBXplorer, Bitcoind RPC and postgres port to the host so that tests can Run,\n# The Visual Studio launch setting `Docker-signet` is configured to use this environment.\nservices:\n\n # The dev container is not actually used, it is just handy to run `docker-compose up dev` to start all services\n dev:\n image: alpine:3.7\n command: [ "/bin/sh", "-c", "trap : TERM INT; while :; do echo Ready to code and debug like a rockstar!!!; sleep 2073600; done & wait" ]\n depends_on:\n - nbxplorer\n - postgres\n - customer_lightningd\n - merchant_lightningd\n - customer_lnd\n - merchant_lnd\n - sshd\n - tor\n\n sshd:\n build:\n context: .\n dockerfile: sshd.Dockerfile\n ports:\n - "21622:22"\n expose:\n - 22\n volumes:\n - "sshd_datadir:/root/.ssh"\n\n devlnd:\n image: btcpayserver/mutinynet:c23afab47fbe\n environment:\n BITCOIN_NETWORK: signet\n BITCOIN_WALLETDIR: "/data/wallets"\n BITCOIN_EXTRA_ARGS: |\n deprecatedrpc=signrawtransaction\n connect=bitcoind:39388\n fallbackfee=0.0002\n rpcallowip=0.0.0.0/0\n [signet]\n signetchallenge=512102f7561d208dd9ae99bf497273e16f389bdbd6c4742ddb8e6b216e64fa2928ad8f51ae\n addnode=45.79.52.207:38333\n dnsseed=0\n signetblocktime=30\n depends_on:\n - nbxplorer\n - postgres\n - customer_lnd\n - merchant_lnd\n\n selenium:\n image: selenium/standalone-chrome:125.0\n extra_hosts:\n - "tests:172.23.0.18"\n expose:\n - "4444"\n networks:\n default:\n custom:\n\n nbxplorer:\n image: nicolasdorier/nbxplorer:2.5.22\n restart: unless-stopped\n ports:\n - "32838:32838"\n expose:\n - "32838"\n environment:\n NBXPLORER_NETWORK: signet\n NBXPLORER_CHAINS: "btc"\n NBXPLORER_BTCRPCURL: http://bitcoind:43782/\n NBXPLORER_BTCNODEENDPOINT: bitcoind:39388\n NBXPLORER_BTCRPCUSER: ceiwHEbqWI83\n NBXPLORER_BTCRPCPASSWORD: DwubwWsoo3\n NBXPLORER_BIND: 0.0.0.0:32838\n NBXPLORER_MINGAPSIZE: 5\n NBXPLORER_MAXGAPSIZE: 10\n NBXPLORER_VERBOSE: 1\n NBXPLORER_POSTGRES: User ID=postgres;Include Error Detail=true;Host=postgres;Port=5432;Database=nbxplorer_mutinynet\n NBXPLORER_EXPOSERPC: 1\n NBXPLORER_NOAUTH: 1\n depends_on:\n - bitcoind\n\n bitcoind:\n restart: unless-stopped\n image: btcpayserver/mutinynet:c23afab47fbe\n environment:\n BITCOIN_NETWORK: signet\n BITCOIN_WALLETDIR: "/data/wallets"\n BITCOIN_EXTRA_ARGS: |-\n rpcuser=ceiwHEbqWI83\n rpcpassword=DwubwWsoo3\n rpcport=43782\n rpcbind=0.0.0.0:43782\n rpcallowip=0.0.0.0/0\n port=39388\n whitelist=0.0.0.0/0\n zmqpubrawblock=tcp://0.0.0.0:28332\n zmqpubrawtx=tcp://0.0.0.0:28333\n deprecatedrpc=signrawtransaction\n fallbackfee=0.0002\n [signet]\n signetchallenge=512102f7561d208dd9ae99bf497273e16f389bdbd6c4742ddb8e6b216e64fa2928ad8f51ae\n addnode=45.79.52.207:38333\n dnsseed=0\n signetblocktime=30\n ports:\n - "43782:43782"\n - "39388:39388"\n expose:\n - "43782" # RPC\n - "39388" # P2P\n - "28332" # ZMQ\n - "28333" # ZMQ\n volumes:\n - "bitcoin_datadir:/data"\n\n customer_lightningd:\n image: btcpayserver/lightning:v25.02\n stop_signal: SIGKILL\n restart: unless-stopped\n environment:\n EXPOSE_TCP: "true"\n LIGHTNINGD_CHAIN: "btc"\n LIGHTNINGD_NETWORK: "signet"\n LIGHTNINGD_OPT: |\n developer\n bitcoin-datadir=/etc/bitcoin\n bitcoin-rpcconnect=bitcoind\n announce-addr=customer_lightningd:9735\n log-level=debug\n funding-confirms=1\n dev-fast-gossip\n dev-bitcoind-poll=1\n ports:\n - "30992:9835" # api port\n - "30892:9735" # server port\n expose:\n - "9735" # server port\n - "9835" # api port\n volumes:\n - "bitcoin_datadir:/etc/bitcoin"\n - "customer_lightningd_datadir:/root/.lightning"\n depends_on:\n - bitcoind\n\n merchant_lightningd:\n image: btcpayserver/lightning:v25.02\n stop_signal: SIGKILL\n restart: unless-stopped\n environment:\n EXPOSE_TCP: "true"\n LIGHTNINGD_CHAIN: "btc"\n LIGHTNINGD_NETWORK: "signet"\n LIGHTNINGD_OPT: |\n developer\n bitcoin-datadir=/etc/bitcoin\n bitcoin-rpcconnect=bitcoind\n announce-addr=merchant_lightningd:9735\n funding-confirms=1\n log-level=debug\n dev-fast-gossip\n dev-bitcoind-poll=1\n ports:\n - "30993:9835" # api port\n - "30893:9735" # server port\n expose:\n - "9735" # server port\n - "9835" # api port\n volumes:\n - "bitcoin_datadir:/etc/bitcoin"\n - "merchant_lightningd_datadir:/root/.lightning"\n depends_on:\n - bitcoind\n\n postgres:\n image: postgres:13.13\n environment:\n POSTGRES_HOST_AUTH_METHOD: trust\n ports:\n - "39372:5432"\n expose:\n - "5432"\n\n merchant_lnd:\n image: btcpayserver/lnd:v0.18.5-beta\n restart: unless-stopped\n environment:\n LND_CHAIN: "btc"\n LND_ENVIRONMENT: "signet"\n LND_EXPLORERURL: "http://nbxplorer:32838/"\n LND_REST_LISTEN_HOST: http://merchant_lnd:8080\n LND_EXTRA_ARGS: |\n restlisten=merchant_lnd:8080\n rpclisten=127.0.0.1:10008\n rpclisten=merchant_lnd:10009\n bitcoin.node=bitcoind\n bitcoind.rpchost=bitcoind:43782\n bitcoind.rpcuser=ceiwHEbqWI83\n bitcoind.rpcpass=DwubwWsoo3\n bitcoind.zmqpubrawblock=tcp://bitcoind:28332\n bitcoind.zmqpubrawtx=tcp://bitcoind:28333\n externalip=merchant_lnd:9735\n bitcoin.defaultchanconfs=1\n no-macaroons=1\n debuglevel=debug\n trickledelay=1000\n no-rest-tls=1\n ports:\n - "35531:8080"\n - "30894:9735"\n - "53280:10009"\n expose:\n - "8080"\n - "9735"\n - "10009"\n volumes:\n - "merchant_lnd_datadir:/data"\n - "bitcoin_datadir:/deps/.bitcoin"\n depends_on:\n - bitcoind\n\n customer_lnd:\n image: btcpayserver/lnd:v0.18.5-beta\n restart: unless-stopped\n environment:\n LND_CHAIN: "btc"\n LND_ENVIRONMENT: "signet"\n LND_EXPLORERURL: "http://nbxplorer:32838/"\n LND_REST_LISTEN_HOST: http://customer_lnd:8080\n LND_EXTRA_ARGS: |\n restlisten=customer_lnd:8080\n rpclisten=127.0.0.1:10008\n rpclisten=customer_lnd:10009\n bitcoin.node=bitcoind\n bitcoind.rpchost=bitcoind:43782\n bitcoind.rpcuser=ceiwHEbqWI83\n bitcoind.rpcpass=DwubwWsoo3\n bitcoind.zmqpubrawblock=tcp://bitcoind:28332\n bitcoind.zmqpubrawtx=tcp://bitcoind:28333\n externalip=customer_lnd:9735\n bitcoin.defaultchanconfs=1\n no-macaroons=1\n debuglevel=debug\n trickledelay=1000\n no-rest-tls=1\n ports:\n - "35532:8080"\n - "30895:9735"\n expose:\n - "8080"\n - "9735"\n - "10009"\n volumes:\n - "customer_lnd_datadir:/root/.lnd"\n - "bitcoin_datadir:/deps/.bitcoin"\n depends_on:\n - bitcoind\n\n tor:\n restart: unless-stopped\n image: btcpayserver/tor:0.4.6.5\n container_name: tor\n environment:\n TOR_PASSWORD: btcpayserver\n ports:\n - "9050:9050" # SOCKS\n - "9051:9051" # Tor Control\n volumes:\n - "tor_datadir:/home/tor/.tor"\n - "torrcdir:/usr/local/etc/tor"\n - "tor_servicesdir:/var/lib/tor/hidden_services"\n\nvolumes:\n sshd_datadir:\n bitcoin_datadir:\n elementsd_liquid_datadir:\n customer_lightningd_datadir:\n merchant_lightningd_datadir:\n lightning_charge_datadir:\n customer_lnd_datadir:\n merchant_lnd_datadir:\n tor_datadir:\n torrcdir:\n tor_servicesdir:\n\nnetworks:\n default:\n driver: bridge\n custom:\n driver: bridge\n ipam:\n config:\n - subnet: 172.23.0.0/16\n
dataset_sample\yaml\csharp\docker-compose.mutinynet.yml
docker-compose.mutinynet.yml
YAML
7,971
0.8
0.006711
0.014134
python-kit
681
2024-01-13T23:21:36.308422
MIT
false
c2aa4a0dd887925c0200211c4f686e56
version: '3.4'\nservices:\n eshopwebmvc:\n environment:\n - ASPNETCORE_ENVIRONMENT=Docker\n - ASPNETCORE_URLS=http://+:8080\n ports:\n - "5106:8080"\n volumes:\n - ~/.aspnet/https:/root/.aspnet/https:ro\n - ~/.microsoft/usersecrets:/root/.microsoft/usersecrets:ro\n eshoppublicapi:\n environment:\n - ASPNETCORE_ENVIRONMENT=Docker\n - ASPNETCORE_URLS=http://+:8080\n ports:\n - "5200:8080"\n volumes:\n - ~/.aspnet/https:/root/.aspnet/https:ro\n - ~/.microsoft/usersecrets:/root/.microsoft/usersecrets:ro
dataset_sample\yaml\csharp\docker-compose.override.yml
docker-compose.override.yml
YAML
537
0.8
0
0
vue-tools
549
2023-12-02T20:35:31.103295
BSD-3-Clause
false
6be19e2980f0fc637b96378b3d44f5fc
services:\n nopcommerce_web:\n build: .\n container_name: nopcommerce\n ports:\n - "80:80"\n depends_on:\n - nopcommerce_database\n nopcommerce_database:\n image: "mcr.microsoft.com/mssql/server:2019-latest"\n container_name: nopcommerce_mssql_server\n environment:\n SA_PASSWORD: "nopCommerce_db_password"\n ACCEPT_EULA: "Y"\n MSSQL_PID: "Express"\n\nvolumes:\n nopcommerce_data:
dataset_sample\yaml\csharp\docker-compose.yml
docker-compose.yml
YAML
486
0.7
0
0
react-lib
9
2024-08-31T05:07:14.226571
MIT
false
91b9b31c9f1b5c99ac401c202fc9ef64
variables:\n- template: config/settings.yml\n\ntrigger:\n- releases/*\npr: none\n\njobs:\n- job: BuildUnity2020\n pool:\n name: Analog-Unity\n demands:\n - ImageVersionOverride -equals 20220218.0.1\n\n steps:\n - checkout: self\n clean: true\n fetchDepth: 1\n\n - task: NuGetToolInstaller@1\n\n - task: PowerShell@2\n displayName: 'Create binaries for docs generation'\n inputs:\n targetType: filePath\n filePath: ./scripts/packaging/createbinariesfordocs.ps1\n arguments: >\n -Version $(MRTKVersion)\n -UnityDirectory ${Env:$(Unity2020VersionInternal)}/Editor\n -OutputDirectory $(Build.ArtifactStagingDirectory)\n\n - task: PublishPipelineArtifact@1\n displayName: Publish docs binaries\n inputs:\n targetPath: $(Build.ArtifactStagingDirectory)\n artifactName: DocsBinariesForUnity2020\n\n- job: BuildUnity2019\n pool:\n name: Analog-Unity\n demands:\n - ImageVersionOverride -equals 20220218.0.1\n\n steps:\n - checkout: self\n clean: true\n fetchDepth: 1\n\n - task: NuGetToolInstaller@1\n\n - task: PowerShell@2\n displayName: 'Create binaries for docs generation'\n inputs:\n targetType: filePath\n filePath: ./scripts/packaging/createbinariesfordocs.ps1\n arguments: >\n -Version $(MRTKVersion)\n -UnityDirectory ${Env:$(Unity2019VersionInternal)}/Editor\n -OutputDirectory $(Build.ArtifactStagingDirectory)\n\n - task: PublishPipelineArtifact@1\n displayName: Publish docs binaries\n inputs:\n targetPath: $(Build.ArtifactStagingDirectory)\n artifactName: DocsBinariesForUnity2019\n
dataset_sample\yaml\csharp\docs-binaries.yml
docs-binaries.yml
YAML
1,587
0.8
0.030769
0
python-kit
135
2024-11-07T04:22:28.294034
GPL-3.0
false
c3bce8dddf24e5b5dc676293bde7a3e7
name: storytelling\nchannels:\n - conda-forge\ndependencies:\n - python=3.5\n - pygpu\n - mkl-service\n - pip:\n - forbiddenfruit \n - azureml-defaults\n - scipy\n - nltk\n - sklearn\n - Cython\n - theano\n - nose\n - https://github.com/Lasagne/Lasagne/archive/master.zip\n - scikit-image\n - Pillow\n - azureml-sdk\n - gensim\n - opencv-python\n \n
dataset_sample\yaml\csharp\environment.yml
environment.yml
YAML
375
0.8
0
0
python-kit
249
2024-01-27T05:43:04.555893
Apache-2.0
false
4200bd3f39864ab9bb65aae3c3775978
apiRules:\n- exclude:\n uidRegex: ^System\.Object\n type: member # Avoid list of inherited Object members for each type.\n
dataset_sample\yaml\csharp\filter.yml
filter.yml
YAML
124
0.8
0.25
0
python-kit
472
2023-11-01T10:04:19.916422
Apache-2.0
false
ce4a61424d1aa547fe09125e789050a4
# These are supported funding model platforms\n\ngithub: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]\npatreon: # Replace with a single Patreon username\nopen_collective: # Replace with a single Open Collective username\nko_fi: # Replace with a single Ko-fi username\ntidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel\ncommunity_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry\nliberapay: # Replace with a single Liberapay username\nissuehunt: # Replace with a single IssueHunt username\notechie: # Replace with a single Otechie username\ncustom: ["https://www.paypal.me/stocksharp"]\n
dataset_sample\yaml\csharp\FUNDING.yml
FUNDING.yml
YAML
676
0.8
0
0.090909
node-utils
524
2024-05-18T20:05:00.038930
MIT
false
9d38427fd7bf7eeaa9798f235ec4c8a4
assembly-versioning-scheme: Major\nassembly-file-versioning-scheme: MajorMinorPatchTag\nmode: ContinuousDeployment\nnext-version: 3.0.0\nbranches:\n master:\n regex: ^main\n mode: ContinuousDeployment\n tag: rc\n prevent-increment-of-merged-branch-version: true\n track-merge-target: false\n is-release-branch: true\n develop:\n mode: ContinuousDeployment\n tag: alpha\n prevent-increment-of-merged-branch-version: true\n track-merge-target: true\n pull-request:\n mode: ContinuousDelivery\nignore:\n sha: []\n
dataset_sample\yaml\csharp\GitVersion.yml
GitVersion.yml
YAML
526
0.7
0
0
vue-tools
171
2025-06-15T22:00:04.948313
BSD-3-Clause
false
05eb66a37c80dac3c367d096997c2dd7
### YamlMime:Hub\n\ntitle: ASP.NET documentation\nsummary: Learn to use ASP.NET Core to create web apps and services that are fast, secure, cross-platform, and cloud-based. Browse tutorials, sample code, fundamentals, API reference and more. \nbrand: aspnet\n\nmetadata:\n title: ASP.NET documentation\n description: Learn to use ASP.NET Core to create web apps and services that are fast, secure, cross-platform, and cloud-based. Browse tutorials, sample code, fundamentals, API reference and more.\n ms.product: aspnet\n ms.topic: hub-page\n author: WadePickett\n ms.author: wpickett\n ms.date: 02/23/2024\n\n# highlightedContent section (optional)\n# Maximum of 8 items\nhighlightedContent:\n# itemType: architecture | concept | deploy | download | get-started | how-to-guide | learn | overview | quickstart | reference | tutorial | video | whats-new\n items:\n # Card\n - title: "Create an ASP.NET Core app on any platform in 5 minutes"\n itemType: get-started\n url: getting-started/index.md\n # Card\n - title: "Create your first web UI"\n itemType: get-started\n url: tutorials/razor-pages/razor-pages-start.md\n # Card\n - title: "ASP.NET Core overview"\n itemType: overview\n url: introduction-to-aspnet-core.md\n # Card\n - title: "Download .NET"\n itemType: download\n url: https://dotnet.microsoft.com/download\n # Card\n - title: "Create your first web API"\n itemType: get-started\n url: tutorials/min-web-api.md\n # Card\n - title: "Create your first real-time web app"\n itemType: get-started\n url: tutorials/signalr.md\n\n# conceptualContent section (optional)\nconceptualContent:\n# itemType: architecture | concept | deploy | download | get-started | how-to-guide | learn | overview | quickstart | reference | tutorial | video | whats-new\n title: Develop ASP.NET Core apps # < 60 chars (optional)\n summary: "Choose interactive web apps, web API, MVC-patterned apps, real-time apps, and more"\n items:\n # Card\n - title: "HTTP API apps"\n summary: Develop HTTP services with ASP.NET Core\n links:\n - url: fundamentals/apis.md\n itemType: overview\n text: "Overview"\n - url: tutorials/min-web-api.md\n itemType: get-started\n text: "Create a minimal web API with ASP.NET Core"\n - url: /training/modules/build-web-api-net-core/\n itemType: learn\n text: "Create a web API with ASP.NET Core Controllers"\n - url: tutorials/web-api-help-pages-using-swagger.md\n itemType: tutorial\n text: "Generate web API help pages with Swagger / OpenAPI"\n # Card\n - title: "Interactive client-side Blazor apps"\n summary: Develop with reusable UI components that can take advantage of WebAssembly for near-native performance\n links:\n - url: blazor/index.md\n itemType: overview\n text: "Overview"\n - url: blazor/hosting-models.md\n itemType: concept\n text: "Blazor hosting models"\n - url: https://dotnet.microsoft.com/learn/aspnet/blazor-tutorial/intro\n itemType: get-started\n text: "Build your first Blazor app"\n - url: blazor/tutorials/build-a-blazor-app.md\n itemType: get-started\n text: "Build your first Blazor app with reusable components"\n # Card\n - title: "Page-focused web UI with Razor Pages"\n summary: "Develop page-focused web apps with a clean separation of concerns"\n links:\n - url: tutorials/razor-pages/razor-pages-start.md\n itemType: get-started\n text: "Create your first Razor Pages web app"\n - url: /training/modules/create-razor-pages-aspnet-core/\n itemType: tutorial\n text: "Create a page-focused web UI that consumes a web API"\n - url: mvc/views/razor.md\n itemType: concept\n text: "Razor syntax"\n - url: razor-pages/index.md\n itemType: overview\n text: "See more"\n # Card\n - title: Page-focused web UI with MVC\n summary: "Develop web apps using the Model-View-Controller design pattern"\n links:\n - url: mvc/overview.md\n itemType: overview\n text: "Overview"\n - url: tutorials/first-mvc-app/start-mvc.md\n itemType: get-started\n text: "Create your first ASP.NET Core MVC app"\n - url: mvc/views/overview.md\n itemType: concept\n text: "Views"\n - url: mvc/controllers/actions.md\n itemType: concept\n text: "Controllers"\n - url: mvc/controllers/routing.md\n itemType: concept\n text: "Routing to controller actions"\n # Card\n - title: Data-driven web apps\n summary: "Create data-driven web apps in ASP.NET Core"\n links:\n - url: blazor/components/data-binding.md\n itemType: concept\n text: "Data binding in ASP.NET Core Blazor"\n - url: tutorials/razor-pages/razor-pages-start.md\n itemType: tutorial\n text: "SQL Server Express and Razor Pages"\n - url: data/ef-rp/intro.md\n itemType: tutorial\n text: "Entity Framework Core with Razor Pages"\n - url: data/ef-mvc/intro.md\n itemType: tutorial\n text: "Entity Framework Core with ASP.NET Core MVC"\n - url: tutorials/first-mvc-app/start-mvc.md\n itemType: tutorial\n text: "Get started with ASP.NET Core MVC (SQL Server Express and SQLite)"\n # Card\n - title: Real-time web apps with SignalR\n summary: "Add real-time functionality to your web app, enable server-side code to push content instantly"\n links:\n - url: signalr/introduction.md\n itemType: overview\n text: "Overview"\n - url: signalr/introduction.md\n itemType: get-started\n text: "Create your first SignalR app"\n - url: blazor/tutorials/signalr-blazor.md\n itemType: tutorial\n text: "SignalR with Blazor WebAssembly"\n - url: tutorials/signalr-typescript-webpack.md\n itemType: tutorial\n text: "SignalR with TypeScript"\n - url: https://github.com/aspnet/SignalR-samples\n itemType: sample\n text: "Samples"\n # Card\n - title: Remote Procedure Call (RPC) apps - gRPC services\n summary: "Develop contract-first, high-performance services with gRPC in ASP.NET Core"\n links:\n - url: grpc/index.md\n itemType: overview\n text: "Overview"\n - url: tutorials/grpc/grpc-start.md\n itemType: get-started\n text: "Create a gRPC client and server"\n - url: grpc/basics.md\n itemType: concept\n text: "gRPC services concepts in C#"\n - url: https://github.com/grpc/grpc-dotnet/tree/master/examples\n itemType: sample\n text: "Samples"\n - url: grpc/comparison.md\n itemType: concept\n text: "Compare gRPC services with HTTP APIs"\n # Card\n - title: Previous ASP.NET framework versions\n summary: "Explore overviews, tutorials, fundamental concepts, architecture and API reference for previous ASP.NET framework versions"\n links:\n - url: /aspnet/overview\n itemType: concept\n text: "ASP.NET 4.x"\n # Card\n - title: ASP.NET Core video tutorials\n links:\n - url: https://www.youtube.com/playlist?list=PLdo4fOcmZ0oW8nviYduHq7bmKode-p8Wy\n itemType: video\n text: "ASP.NET Core 101 video series"\n - url: https://www.youtube.com/playlist?list=PLdo4fOcmZ0oX7uTkjYwvCJDG2qhcSzwZ6\n itemType: video\n text: "Entity Framework Core 101 video series with .NET Core and ASP.NET Core"\n - url: https://www.youtube.com/watch?v=RyHDWlIq6vI\n itemType: video\n text: "Microservice architecture with ASP.NET Core"\n - url: https://www.youtube.com/watch?v=KlngrOF6RPw&list=PLdo4fOcmZ0oWlP1Qpzg7Dwzxr298ewdUQ\n itemType: video\n text: "Focus on Blazor video series"\n - url: https://www.youtube.com/channel/UCvtT19MZW8dq5Wwfu6B0oxw/\n itemType: video\n text: ".NET Channel"\n\n# Card with summary style\nadditionalContent:\n # Supports up to 3 sections\n sections: \n - title: Concepts and features # < 60 chars (optional)\n items:\n # Card\n - title: API reference for ASP.NET Core\n links:\n - url: /dotnet/api/?view=aspnetcore-6.0\n text: ".NET API browser"\n # Card\n - title: Servers\n links:\n - url: fundamentals/servers/overview.md\n text: "Overview"\n - url: fundamentals/servers/kestrel.md\n text: "Kestrel"\n - url: host-and-deploy/iis/index.md\n text: "IIS"\n - url: fundamentals/servers/httpsys.md\n text: "HTTP.sys"\n # Card\n - title: Host and deploy\n links:\n - url: host-and-deploy/index.md\n text: "Overview"\n - url: host-and-deploy/azure-apps/index.md\n text: "Deploy to Azure App Service"\n - url: /dotnet/architecture/devops-for-aspnet-developers\n text: "DevOps for ASP.NET Core Developers"\n - url: host-and-deploy/linux-apache.md\n text: "Linux with Apache"\n - url: host-and-deploy/linux-nginx.md\n text: "Linux with Nginx"\n - url: fundamentals/servers/kestrel.md\n text: "Kestrel"\n - url: host-and-deploy/iis/index.md\n text: "IIS"\n - url: fundamentals/servers/httpsys.md\n text: "HTTP.sys"\n - url: host-and-deploy/docker/index.md\n text: "Docker"\n # Card\n - title: Security and identity\n links:\n - url: security/index.md\n text: "Overview"\n - url: security/how-to-choose-identity-solution.md\n text: "Choose an identity solution"\n - url: security/authentication/index.md\n text: "Authentication"\n - url: security/authorization/introduction.md\n text: "Authorization"\n - url: /training/modules/secure-aspnet-core-identity/\n text: "Course: Secure an ASP.NET Core web app with the Identity framework"\n - url: security/data-protection/introduction.md\n text: "Data protection"\n - url: security/app-secrets.md\n text: "Secrets management"\n - url: security/enforcing-ssl.md\n text: "Enforce HTTPS"\n - url: security/docker-https.md\n text: "Host Docker with HTTPS"\n # Card\n - title: Globalization and localization\n links:\n - url: fundamentals/localization.md\n text: "Overview"\n - url: fundamentals/portable-object-localization.md\n text: "Portable object localization"\n - url: fundamentals/localization-extensibility.md\n text: "Localization extensibility"\n - url: fundamentals/troubleshoot-aspnet-core-localization.md\n text: "Troubleshoot"\n # Card\n - title: Test, debug and troubleshoot\n links:\n - url: test/razor-pages-tests.md\n text: "Razor Pages unit tests"\n - url: /visualstudio/debugger/remote-debugging-azure?view=vs-2022\n text: "Remote debugging"\n - url: /azure/azure-monitor/app/snapshot-debugger?bc=%252faspnet%252fcore%252fbreadcrumb%252ftoc.json&toc=%252faspnet%252fcore%252ftoc.json&view=aspnetcore-3.1\n text: "Snapshot debugging"\n - url: test/integration-tests.md\n text: "Integration tests"\n - url: test/load-tests.md\n text: "Load and stress testing"\n - url: test/troubleshoot.md\n text: "Troubleshoot and debug"\n - url: fundamentals/logging/index.md\n text: "Logging"\n - url: /training/modules/load-test-web-app-azure-devops/\n text: "Load test Azure web apps by using Azure DevOps"\n # Card\n - title: Azure and ASP.NET Core\n links:\n - url: /azure/app-service/app-service-web-get-started-dotnet\n text: "Deploy an ASP.NET Core web app"\n - url: /visualstudio/containers/container-tools?view=vs-2022\n text: "ASP.NET Core and Docker"\n - url: /training/modules/host-a-web-app-with-azure-app-service/\n text: "Host a web application with Azure App Service"\n - url: /azure/app-service/app-service-web-tutorial-dotnet-sqldatabase\n text: "App Service and Azure SQL Database"\n - url: /azure/app-service/app-service-web-tutorial-connect-msi\n text: "Managed identity with ASP.NET Core and Azure SQL Database"\n - url: /azure/app-service/app-service-web-tutorial-rest-api\n text: "Web API with CORS in Azure App Service"\n - url: /training/modules/capture-application-logs-app-service/\n text: "Capture Web Application Logs with App Service Diagnostics Logging"\n # Card\n - title: Performance\n links:\n - url: performance/performance-best-practices.md\n text: "Overview"\n - url: performance/memory.md\n text: "Memory and garbage collection"\n - url: performance/caching/response.md\n text: "Response caching"\n - url: performance/response-compression.md\n text: "Response compression"\n - url: performance/diagnostic-tools.md\n text: "Diagnostic tools"\n - url: test/load-tests.md\n text: "Load and stress testing"\n # Card\n - title: Advanced features\n links:\n - url: mvc/models/model-binding.md\n text: "Model binding"\n - url: mvc/models/validation.md\n text: "Model validation"\n - url: ./fundamentals/middleware/index.md\n text: "Write middleware"\n - url: fundamentals/middleware/request-response.md\n text: "Request and response operations"\n - url: fundamentals/url-rewriting.md\n text: "URL rewriting"\n # Card\n - title: Migration\n links:\n - url: migration/50-to-60.md\n text: "ASP.NET Core 5.0 to 6.0"\n - url: migration/50-to-60-samples.md\n text: "ASP.NET Core 5.0 code samples to 6.0 minimal hosting model"\n - url: migration/31-to-50.md\n text: "ASP.NET Core 3.1 to 5.0"\n - url: migration/30-to-31.md\n text: "ASP.NET Core 3.0 to 3.1"\n - url: migration/22-to-30.md\n text: "ASP.NET Core 2.2 to 3.0"\n - url: migration/21-to-22.md\n text: "ASP.NET Core 2.1 to 2.2"\n - url: migration/20_21.md\n text: "ASP.NET Core 2.0 to 2.1"\n - url: migration/1x-to-2x/index.md\n text: "ASP.NET Core 1.x to 2.0"\n - url: migration/proper-to-2x/index.md\n text: "ASP.NET to ASP.NET Core"\n # Card\n - title: Architecture\n links:\n - url: /dotnet/architecture/modern-web-apps-azure/choose-between-traditional-web-and-single-page-apps\n text: Choose between traditional web apps and Single Page Apps (SPAs)\n - url: /dotnet/architecture/modern-web-apps-azure/architectural-principles\n text: Architectural principles\n - url: /dotnet/architecture/modern-web-apps-azure/common-web-application-architectures\n text: Common web application architectures\n - url: /dotnet/architecture/modern-web-apps-azure/common-client-side-web-technologies\n text: Common client-side web technologies\n - url: /dotnet/architecture/modern-web-apps-azure/development-process-for-azure\n text: Development process for Azure\n # footer (optional)\n footer: "Contribute to ASP.NET Core docs. Read our [contributor guide](https://github.com/dotnet/AspNetCore.Docs/blob/main/CONTRIBUTING.md)."\n
dataset_sample\yaml\csharp\index.yml
index.yml
YAML
15,894
0.95
0.018617
0.09434
node-utils
739
2024-08-17T21:10:25.170215
BSD-3-Clause
false
60b17311f9863364e38a467a2c9024fa
name: PR-$(System.PullRequest.PullRequestNumber)-$(Date:yyyyMMdd)$(Rev:.rr)\ntrigger:\n # Batch merge builds together while a merge build is running\n batch: true\n branches:\n include:\n - master\n - release*\n - feature*\n paths:\n include:\n - /tools/install-powershell.*\n - /tools/installpsh-*.sh\n - /.vsts-ci/install-ps.yml\npr:\n branches:\n include:\n - master\n - release*\n - feature*\n paths:\n include:\n - /tools/install-powershell.sh\n - /tools/installpsh-*.sh\n - /tools/install-powershell.ps1\n - /.vsts-ci/install-ps.yml\n\nvariables:\n DOTNET_CLI_TELEMETRY_OPTOUT: 1\n POWERSHELL_TELEMETRY_OPTOUT: 1\n\nresources:\n- repo: self\n clean: true\nphases:\n- template: templates/install-ps-phase.yml\n parameters:\n scriptName: sudo ./tools/install-powershell.sh\n jobName: InstallPowerShellUbuntu\n pool: ubuntu-latest\n verification: |\n if ([Version]"$($PSVersionTable.PSVersion.Major).$($PSVersionTable.PSVersion.Minor).$($PSVersionTable.PSVersion.Patch)" -lt [version]"7.3.0")\n {\n throw "powershell was not upgraded: $($PSVersionTable.PSVersion)"\n }\n\n- template: templates/install-ps-phase.yml\n parameters:\n scriptName: sudo ./tools/install-powershell.sh\n jobName: InstallPowerShellMariner2\n pool: ubuntu-latest\n container: mcr.microsoft.com/powershell/test-deps:mariner-2.0\n verification: |\n if ([Version]"$($PSVersionTable.PSVersion.Major).$($PSVersionTable.PSVersion.Minor).$($PSVersionTable.PSVersion.Patch)" -lt [version]"7.3.0")\n {\n throw "powershell was not upgraded: $($PSVersionTable.PSVersion)"\n }\n\n- template: templates/install-ps-phase.yml\n parameters:\n scriptName: sudo ./tools/install-powershell.sh\n jobName: InstallPowerShellAmazonLinux\n pool: ubuntu-latest\n container: pshorg/powershellcommunity-test-deps:amazonlinux-2.0\n verification: |\n if ([Version]"$($PSVersionTable.PSVersion.Major).$($PSVersionTable.PSVersion.Minor).$($PSVersionTable.PSVersion.Patch)" -lt [version]"7.3.0")\n {\n throw "powershell was not upgraded: $($PSVersionTable.PSVersion)"\n }\n\n- template: templates/install-ps-phase.yml\n parameters:\n scriptName: sudo ./tools/installpsh-amazonlinux.sh\n jobName: InstallPSHAmazonLinux\n pool: ubuntu-latest\n container: pshorg/powershellcommunity-test-deps:amazonlinux-2.0\n verification: |\n if ([Version]"$($PSVersionTable.PSVersion.Major).$($PSVersionTable.PSVersion.Minor).$($PSVersionTable.PSVersion.Patch)" -lt [version]"7.3.0")\n {\n throw "powershell was not upgraded: $($PSVersionTable.PSVersion)"\n }\n continueOnError: false\n\n# TODO: add sudo to script and use image with sudo\n- template: templates/install-ps-phase.yml\n parameters:\n scriptName: ./tools/install-powershell.sh\n jobName: InstallPowerShellCentOS\n pool: ubuntu-latest\n container: mcr.microsoft.com/powershell/test-deps:centos-7\n\n- template: templates/install-ps-phase.yml\n parameters:\n scriptName: ./tools/install-powershell.sh\n jobName: InstallPowerShellDebian9\n pool: ubuntu-latest\n container: mcr.microsoft.com/powershell/test-deps:debian-9\n\n\n# VSTS could not find pwsh in:\n# mcr.microsoft.com/powershell:opensuse-42.3\n# could not repo locally\n\n# sudo is not needed on macOS\n- template: templates/install-ps-phase.yml\n parameters:\n scriptName: ./tools/install-powershell.sh\n jobName: InstallPowerShellMacOS\n pool: macOS-latest\n verification: |\n if ([Version]"$($PSVersionTable.PSVersion.Major).$($PSVersionTable.PSVersion.Minor).$($PSVersionTable.PSVersion.Patch)" -lt [version]"7.3.0")\n {\n # The script does not upgrade on mac os https://github.com/PowerShell/PowerShell/issues/9322\n Write-Warning "powershell was not upgraded: $($PSVersionTable.PSVersion)"\n }\n\n- template: templates/install-ps-phase.yml\n parameters:\n scriptName: pwsh -c ./tools/install-powershell.ps1 -AddToPath\n jobName: InstallPowerShellPS1Ubuntu\n pool: ubuntu-latest\n\n- template: templates/install-ps-phase.yml\n parameters:\n scriptName: pwsh -c ./tools/install-powershell.ps1 -AddToPath -Daily\n jobName: InstallPowerShellPS1UbuntuDaily\n pool: ubuntu-latest\n verification: |\n Write-Verbose $PSVersionTable.PSVersion -verbose\n if ([Version]"$($PSVersionTable.PSVersion.Major).$($PSVersionTable.PSVersion.Minor).$($PSVersionTable.PSVersion.Patch)" -lt [version]"7.3.0")\n {\n throw "powershell was not upgraded: $($PSVersionTable.PSVersion)"\n }\n\n- template: templates/install-ps-phase.yml\n parameters:\n scriptName: pwsh -c ./tools/install-powershell.ps1 -AddToPath -Daily\n jobName: InstallPowerShellMacOSDaily\n pool: macOS-latest\n verification: |\n Write-Verbose $PSVersionTable.PSVersion -verbose\n if ([Version]"$($PSVersionTable.PSVersion.Major).$($PSVersionTable.PSVersion.Minor).$($PSVersionTable.PSVersion.Patch)" -lt [version]"7.0.0")\n {\n throw "powershell was not upgraded: $($PSVersionTable.PSVersion)"\n }\n\n- template: templates/install-ps-phase.yml\n parameters:\n scriptName: |\n pwsh -c ./tools/install-powershell.ps1 -AddToPath -Daily\n jobName: InstallPowerShellWindowsDaily\n pool: windows-latest\n verification: |\n $newVersion = &$env:LOCALAPPDATA\Microsoft\powershell-daily\pwsh -v\n $newVersion -match '^PowerShell ((\d*\.\d*\.\d*)(-\w*(\.\d*)?)?){1}'\n $versionOnly = $Matches[2]\n Write-verbose "$newVersion; versionOnly: $versionOnly" -verbose\n if ([Version]$versionOnly -lt [version]"7.0.0")\n {\n throw "powershell was not upgraded: $newVersion"\n }\n
dataset_sample\yaml\csharp\install-ps.yml
install-ps.yml
YAML
5,632
0.8
0.055901
0.047619
react-lib
950
2024-12-15T18:25:27.436013
MIT
false
a88d81c67b6dbda64e058a1209d7ce7c
# automatically invite contributors to this particular team in the organization when their pull-requests\n# are merged which enables maintainers to assign issues to these individuals.\nteam: community\n
dataset_sample\yaml\csharp\invite-contributors.yml
invite-contributors.yml
YAML
199
0.8
0
0.666667
python-kit
236
2024-03-27T16:31:55.075220
BSD-3-Clause
false
be900f6101fde213818c4bf72c93ccad
# Configuration for Label Actions - https://github.com/dessant/label-actions\n\n'Type: Support':\n comment: >\n :wave: @{issue-author}, we use the issue tracker exclusively\n for bug reports and feature requests. However, this issue appears\n to be a support request. Please hop over onto our [Discord](https://radarr.video/discord).\n close: true\n close-reason: 'not planned'\n\n'Status: Logs Needed':\n comment: >\n :wave: @{issue-author}, In order to help you further we'll need to see logs. \n You'll need to enable trace logging and replicate the problem that you encountered. \n Guidance on how to enable trace logging can be found in \n our [troubleshooting guide](https://wiki.servarr.com/radarr/troubleshooting#logging-and-log-files).
dataset_sample\yaml\csharp\label-actions.yml
label-actions.yml
YAML
754
0.8
0.133333
0.071429
node-utils
255
2024-07-07T08:37:20.112247
GPL-3.0
false
2cadac346dcfe808fdf0698f669a0dd9
# https://github.com/actions/labeler\n\narea/automation:\n - src/SamplesApp/*\n - src/SamplesApp/**/*\n - src/Uno.UI.Tests/*\n - src/Uno.UI.Tests/**/*\n - src/Uno.UI.Wasm.Tests/*\n - src/Uno.UI.Wasm.Tests/**/*\n\narea/build:\n - build/*\n - build/**/*\n - '**/*.yml'\n - src/Uno.UI.TestComparer/*\n - src/Uno.UI.TestComparer/**/*\n\narea/code-generation:\n - src/SourceGenerators/*\n - src/SourceGenerators/**/*\n\nkind/documentation:\n - README.*\n - doc/**\n - '**/*.md'\n - '**/*.MD'\n - '**/*.txt'\n\narea/skia ✏️:\n - '**/*.skia.cs'\n - src/Uno.UI.Runtime.Skia.Linux.FrameBuffer/*\n - src/Uno.UI.Runtime.Skia.Linux.FrameBuffer/**/*\n - src/Uno.UI.Runtime.Skia.Tizen/*\n - src/Uno.UI.Runtime.Skia.Tizen/**/*\n - src/Uno.UI.Runtime.Skia.Wpf/*\n - src/Uno.UI.Runtime.Skia.Wpf/**/*\n - src/Uno.UI.Runtime.Skia.Android/*\n - src/Uno.UI.Runtime.Skia.Android/**/*\n - src/Uno.UI.Runtime.Skia.AppleUIKit/*\n - src/Uno.UI.Runtime.Skia.AppleUIKit/**/*\n - src/Uno.UI.XamlHost.Skia.Wpf/**/*\n - src/Uno.UI.XamlHost.Skia.Wpf/**/*\n\narea/solution-templates:\n - src/SolutionTemplate/*\n - src/SolutionTemplate/**/*\n - src/UnoItemTemplate/*\n - src/UnoItemTemplate/**/*\n\narea/sdk:\n - src/Uno.Sdk/*\n\nplatform/android 🤖:\n - src/Uno.UI.BindingHelper.Android/*\n - src/Uno.UI.BindingHelper.Android/**/*\n - '**/*.Android.cs'\n - '**/*.Xamarin.cs'\n - src/Uno.UI.Runtime.Skia.Android/*\n - src/Uno.UI.Runtime.Skia.Android/**/*\n \nplatform/wasm 🌐:\n - '**/*.wasm.cs'\n - src/Uno.UI.Wasm/*\n - src/Uno.UI.Wasm/**/*\n - src/Uno.Foundation.Runtime.WebAssembly/*\n - src/Uno.Foundation.Runtime.WebAssembly/**/*\n - src/Uno.UI.Runtime.WebAssembly/*\n - src/Uno.UI.Runtime.WebAssembly/**/*\n - src/Uno.UI.Runtime.Skia.WebAssembly.Browser/*\n - src/Uno.UI.Runtime.Skia.WebAssembly.Browser/**/*\n\nplatform/ios 🍎:\n - '**/*.iOS.cs'\n - '**/*.UIKit.cs'\n - '**/*.iOSmacOS.cs'\n - '**/*.Apple.cs'\n - '**/*.Xamarin.cs'\n - src/Uno.UI.Runtime.Skia.AppleUIKit/*\n - src/Uno.UI.Runtime.Skia.AppleUIKit/**/*\n\nplatform/macos 🍏:\n - src/Uno.UI.Runtime.Skia.MacOS/*\n - src/Uno.UI.Runtime.Skia.MacOS/**/*\n\nplatform/x11 🐧:\n - src/Uno.UI.Runtime.Skia.X11/*\n - src/Uno.UI.Runtime.Skia.X11/**/*\n\nplatform/wpf 🪟:\n - src/Uno.UI.Runtime.Skia.Wpf/*\n - src/Uno.UI.Runtime.Skia.Wpf/**/*
dataset_sample\yaml\csharp\labeler.yml
labeler.yml
YAML
2,260
0.8
0
0.012821
react-lib
78
2024-01-04T16:38:49.367041
GPL-3.0
false
051ee63baaf9e2fb20bb8d5a60a1092e
name: PR-$(System.PullRequest.PullRequestNumber)-$(Date:yyyyMMdd)$(Rev:.rr)\ntrigger:\n # Batch merge builds together while a merge build is running\n batch: true\n branches:\n include:\n - master\n - release*\n - feature*\n paths:\n include:\n - '*'\n exclude:\n - /.vsts-ci/misc-analysis.yml\n - /.github/ISSUE_TEMPLATE/*\n - /.dependabot/config.yml\npr:\n branches:\n include:\n - master\n paths:\n include:\n - .vsts-ci/linux-daily.yml\n\nvariables:\n DOTNET_CLI_TELEMETRY_OPTOUT: 1\n POWERSHELL_TELEMETRY_OPTOUT: 1\n # Avoid expensive initialization of dotnet cli, see: https://donovanbrown.com/post/Stop-wasting-time-during-NET-Core-builds\n DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1\n __SuppressAnsiEscapeSequences: 1\n\nresources:\n- repo: self\n clean: true\n\nstages:\n- stage: BuildLinux\n displayName: Build for Linux\n jobs:\n - template: templates/ci-build.yml\n parameters:\n pool: ubuntu-20.04\n jobName: linux_build\n displayName: linux Build\n\n- stage: TestLinux\n displayName: Test for Linux\n jobs:\n - job: linux_test\n timeoutInMinutes: 90\n pool:\n vmImage: ubuntu-20.04\n displayName: Linux Test\n\n steps:\n - pwsh: |\n Get-ChildItem -Path env: | Out-String -width 9999 -Stream | write-Verbose -Verbose\n displayName: Capture Environment\n condition: succeededOrFailed()\n\n - task: DownloadBuildArtifacts@0\n displayName: 'Download Build Artifacts'\n inputs:\n downloadType: specific\n itemPattern: |\n build/**/*\n xunit/**/*\n downloadPath: '$(System.ArtifactsDirectory)'\n\n - pwsh: |\n Get-ChildItem "$(System.ArtifactsDirectory)\*" -Recurse\n displayName: 'Capture Artifacts Directory'\n continueOnError: true\n\n - pwsh: |\n Import-Module .\tools\ci.psm1\n Invoke-CIInstall -SkipUser\n displayName: Bootstrap\n condition: succeededOrFailed()\n\n - pwsh: |\n Import-Module .\build.psm1\n Restore-PSOptions -PSOptionsPath '$(System.ArtifactsDirectory)\build\psoptions.json'\n $output = (Get-PSOptions).Output\n $rootPath = Split-Path (Split-Path $output)\n Expand-Archive -Path '$(System.ArtifactsDirectory)\build\build.zip' -DestinationPath $rootPath -Force\n\n ## Fix permissions\n Get-ChildItem $rootPath -Recurse | ForEach-Object {\n if ($_ -is [System.IO.DirectoryInfo]) {\n chmod +rwx $_.FullName\n } else {\n chmod +rw $_.FullName\n }\n }\n chmod a+x $output\n\n Write-Host "=== Capture Unzipped Directory ==="\n Get-ChildItem $rootPath -Recurse\n displayName: 'Unzip Build and Fix Permissions'\n condition: succeeded()\n\n - pwsh: |\n Import-Module .\tools\ci.psm1\n Restore-PSOptions -PSOptionsPath '$(System.ArtifactsDirectory)\build\psoptions.json'\n Invoke-CITest -Purpose UnelevatedPesterTests -TagSet CI\n displayName: Test - UnelevatedPesterTests - CI\n condition: succeeded()\n\n - pwsh: |\n Import-Module .\tools\ci.psm1\n Restore-PSOptions -PSOptionsPath '$(System.ArtifactsDirectory)\build\psoptions.json'\n Invoke-CITest -Purpose ElevatedPesterTests -TagSet CI\n displayName: Test - ElevatedPesterTests - CI\n condition: succeededOrFailed()\n\n - pwsh: |\n Import-Module .\tools\ci.psm1\n Restore-PSOptions -PSOptionsPath '$(System.ArtifactsDirectory)\build\psoptions.json'\n Invoke-CITest -Purpose UnelevatedPesterTests -TagSet Others\n displayName: Test - UnelevatedPesterTests - Others\n condition: succeededOrFailed()\n\n - pwsh: |\n Import-Module .\tools\ci.psm1\n Restore-PSOptions -PSOptionsPath '$(System.ArtifactsDirectory)\build\psoptions.json'\n Invoke-CITest -Purpose ElevatedPesterTests -TagSet Others\n displayName: Test - ElevatedPesterTests - Others\n condition: succeededOrFailed()\n\n - pwsh: |\n Import-Module .\build.psm1\n $xUnitTestResultsFile = "$(System.ArtifactsDirectory)\xunit\xUnitTestResults.xml"\n Test-XUnitTestResults -TestResultsFile $xUnitTestResultsFile\n displayName: Verify xUnit Test Results\n condition: succeededOrFailed()\n\n- stage: CodeCovTestPackage\n displayName: CodeCoverage and Test Packages\n dependsOn: [] # by specifying an empty array, this stage doesn't depend on the stage before it\n jobs:\n - job: CodeCovTestPackage\n displayName: CodeCoverage and Test Packages\n pool:\n vmImage: ubuntu-20.04\n steps:\n - pwsh: |\n Import-Module .\tools\ci.psm1\n New-CodeCoverageAndTestPackage\n displayName: CodeCoverage and Test Package\n
dataset_sample\yaml\csharp\linux-daily.yml
linux-daily.yml
YAML
4,656
0.8
0.026667
0.022556
node-utils
136
2025-07-04T18:32:39.034941
MIT
false
53239868875103c671c1f804e40844f5
# Pipeline to run Linux CI internally\nname: PR-$(System.PullRequest.PullRequestNumber)-$(Date:yyyyMMdd)$(Rev:.rr)\ntrigger:\n # Batch merge builds together while a merge build is running\n batch: true\n branches:\n include:\n - master\n - release*\n - feature*\n paths:\n include:\n - '*'\n exclude:\n - .vsts-ci/misc-analysis.yml\n - .github/ISSUE_TEMPLATE/*\n - .github/workflows/*\n - .dependabot/config.yml\n - .pipelines/*\n - test/perf/*\npr:\n branches:\n include:\n - master\n - release*\n - feature*\n paths:\n include:\n - '*'\n exclude:\n - .dependabot/config.yml\n - .github/ISSUE_TEMPLATE/*\n - .github/workflows/*\n - .vsts-ci/misc-analysis.yml\n - .vsts-ci/windows.yml\n - .vsts-ci/windows/*\n - tools/cgmanifest.json\n - LICENSE.txt\n - test/common/markdown/*\n - test/perf/*\n - tools/releaseBuild/*\n - tools/install*\n - tools/releaseBuild/azureDevOps/templates/*\n - README.md\n - .spelling\n - .pipelines/*\n\nvariables:\n DOTNET_CLI_TELEMETRY_OPTOUT: 1\n POWERSHELL_TELEMETRY_OPTOUT: 1\n # Avoid expensive initialization of dotnet cli, see: https://donovanbrown.com/post/Stop-wasting-time-during-NET-Core-builds\n DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1\n __SuppressAnsiEscapeSequences: 1\n nugetMultiFeedWarnLevel: none\n\nresources:\n repositories:\n - repository: Docker\n type: github\n endpoint: PowerShell\n name: PowerShell/PowerShell-Docker\n ref: master\n\nstages:\n- stage: BuildLinuxStage\n displayName: Build for Linux\n jobs:\n - template: templates/ci-build.yml\n parameters:\n pool: ubuntu-20.04\n jobName: linux_build\n displayName: linux Build\n\n- stage: TestUbuntu\n displayName: Test for Ubuntu\n dependsOn: [BuildLinuxStage]\n jobs:\n - template: templates/nix-test.yml\n parameters:\n name: Ubuntu\n pool: ubuntu-20.04\n purpose: UnelevatedPesterTests\n tagSet: CI\n\n - template: templates/nix-test.yml\n parameters:\n name: Ubuntu\n pool: ubuntu-20.04\n purpose: ElevatedPesterTests\n tagSet: CI\n\n - template: templates/nix-test.yml\n parameters:\n name: Ubuntu\n pool: ubuntu-20.04\n purpose: UnelevatedPesterTests\n tagSet: Others\n\n - template: templates/nix-test.yml\n parameters:\n name: Ubuntu\n pool: ubuntu-20.04\n purpose: ElevatedPesterTests\n tagSet: Others\n\n - template: templates/verify-xunit.yml\n parameters:\n pool: ubuntu-20.04\n\n- stage: PackageLinux\n displayName: Package Linux\n dependsOn: ["BuildLinuxStage"]\n jobs:\n - template: linux/templates/packaging.yml\n parameters:\n pool: ubuntu-20.04\n
dataset_sample\yaml\csharp\linux-internal.yml
linux-internal.yml
YAML
2,638
0.8
0.025862
0.028037
react-lib
623
2025-03-07T03:08:34.734440
GPL-3.0
false
6a7802c2daa5a9358ff66a838c919e71
parameters:\n - name: ContainerPattern\n displayName: |\n Pattern to match JobName of the container.\n Update this to force a container.\n `.` will match everything\n type: string\n default: .\n\nname: PR-$(System.PullRequest.PullRequestNumber)-$(Date:yyyyMMdd)$(Rev:.rr)\ntrigger:\n # Batch merge builds together while a merge build is running\n batch: true\n branches:\n include:\n - master\n - release*\n - feature*\n paths:\n include:\n - '*'\n exclude:\n - .vsts-ci/misc-analysis.yml\n - .github/ISSUE_TEMPLATE/*\n - .github/workflows/*\n - .dependabot/config.yml\n - .pipelines/*\n - test/perf/*\npr:\n branches:\n include:\n - master\n - release*\n - feature*\n paths:\n include:\n - .vsts-ci/linux.yml\n - .vsts-ci/linux/templates/packaging.yml\n - assets/manpage/*\n - build.psm1\n - global.json\n - nuget.config\n - PowerShell.Common.props\n - src/*.csproj\n - tools/ci.psm1\n - tools/packaging/*\n\nvariables:\n DOTNET_CLI_TELEMETRY_OPTOUT: 1\n POWERSHELL_TELEMETRY_OPTOUT: 1\n # Avoid expensive initialization of dotnet cli, see: https://donovanbrown.com/post/Stop-wasting-time-during-NET-Core-builds\n DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1\n __SuppressAnsiEscapeSequences: 1\n nugetMultiFeedWarnLevel: none\n\nresources:\n repositories:\n - repository: Docker\n type: github\n endpoint: PowerShell\n name: PowerShell/PowerShell-Docker\n ref: master\n\nstages:\n- stage: BuildLinuxStage\n displayName: Build for Linux\n jobs:\n - template: templates/ci-build.yml\n parameters:\n pool: ubuntu-20.04\n jobName: linux_build\n displayName: linux Build\n\n- stage: PackageLinux\n displayName: Package Linux\n dependsOn: ["BuildLinuxStage"]\n jobs:\n - template: linux/templates/packaging.yml\n parameters:\n pool: ubuntu-20.04\n
dataset_sample\yaml\csharp\linux.yml
linux.yml
YAML
1,832
0.8
0.025
0.026667
python-kit
630
2024-08-23T19:06:45.800015
MIT
false
e1cdd70175fbb16f5de74239a3f6d630
# Configuration for Lock Threads - https://github.com/dessant/lock-threads-app\n\n# Number of days of inactivity before a closed issue or pull request is locked\ndaysUntilLock: 30\n\n# Skip issues and pull requests created before a given timestamp. Timestamp must\n# follow ISO 8601 (`YYYY-MM-DD`). Set to `false` to disable\nskipCreatedBefore: false\n\n# Issues and pull requests with these labels will be ignored. Set to `[]` to disable\nexemptLabels: []\n\n# Label to add before locking, such as `outdated`. Set to `false` to disable\nlockLabel: false\n\n# Comment to post before locking. Set to `false` to disable\nlockComment: >\n This thread has been automatically locked since there has not been\n any recent activity after it was closed. Please open a new issue for\n related bugs.\n\n# Assign `resolved` as the reason for locking. Set to `false` to disable\nsetLockReason: true\n\n# Limit to only `issues` or `pulls`\n# only: issues\n\n# Optionally, specify configuration settings just for `issues` or `pulls`\n# issues:\n# exemptLabels:\n# - help-wanted\n# lockLabel: outdated\n\n# pulls:\n# daysUntilLock: 30\n\n# Repository to extend settings from\n# _extends: repo
dataset_sample\yaml\csharp\lock.yml
lock.yml
YAML
1,153
0.8
0.108108
0.678571
vue-tools
188
2024-02-29T20:07:58.727610
MIT
false
a9bec34f3213c79adb1a4ca1118dc566
name: PR-$(System.PullRequest.PullRequestNumber)-$(Date:yyyyMMdd)$(Rev:.rr)\ntrigger:\n # Batch merge builds together while a merge build is running\n batch: true\n branches:\n include:\n - master\n - release*\n - feature*\n paths:\n include:\n - '*'\n exclude:\n - tools/releaseBuild/**/*\n - .vsts-ci/misc-analysis.yml\n - .github/ISSUE_TEMPLATE/*\n - .github/workflows/*\n - .dependabot/config.yml\n - .pipelines/*\n - test/perf/*\npr:\n branches:\n include:\n - master\n - release*\n - feature*\n paths:\n include:\n - '*'\n exclude:\n - .dependabot/config.yml\n - .github/ISSUE_TEMPLATE/*\n - .github/workflows/*\n - .vsts-ci/misc-analysis.yml\n - .vsts-ci/windows.yml\n - .vsts-ci/windows/*\n - tools/cgmanifest.json\n - LICENSE.txt\n - test/common/markdown/*\n - test/perf/*\n - tools/packaging/*\n - tools/releaseBuild/*\n - tools/releaseBuild/azureDevOps/templates/*\n - README.md\n - .spelling\n - .pipelines/*\n\nvariables:\n DOTNET_CLI_TELEMETRY_OPTOUT: 1\n POWERSHELL_TELEMETRY_OPTOUT: 1\n # Avoid expensive initialization of dotnet cli, see: https://donovanbrown.com/post/Stop-wasting-time-during-NET-Core-builds\n DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1\n # Turn off Homebrew analytics\n HOMEBREW_NO_ANALYTICS: 1\n __SuppressAnsiEscapeSequences: 1\n nugetMultiFeedWarnLevel: none\n\nresources:\n- repo: self\n clean: true\n\nstages:\n- stage: BuildMac\n displayName: Build for macOS\n jobs:\n - template: templates/ci-build.yml\n parameters:\n pool: macOS-latest\n jobName: mac_build\n displayName: macOS Build\n\n- stage: TestMac\n displayName: Test for macOS\n jobs:\n - template: templates/nix-test.yml\n parameters:\n purpose: UnelevatedPesterTests\n tagSet: CI\n\n - template: templates/nix-test.yml\n parameters:\n purpose: ElevatedPesterTests\n tagSet: CI\n\n - template: templates/nix-test.yml\n parameters:\n purpose: UnelevatedPesterTests\n tagSet: Others\n\n - template: templates/nix-test.yml\n parameters:\n purpose: ElevatedPesterTests\n tagSet: Others\n\n - template: templates/verify-xunit.yml\n parameters:\n pool: macOS-latest\n\n- stage: PackageMac\n dependsOn: ['BuildMac']\n displayName: Package macOS (bootstrap only)\n jobs:\n - job: macos_packaging\n pool:\n vmImage: macOS-latest\n\n displayName: macOS packaging (bootstrap only)\n steps:\n - checkout: self\n clean: true\n - pwsh: |\n import-module ./build.psm1\n start-psbootstrap -Scenario package\n displayName: Bootstrap packaging\n condition: succeededOrFailed()\n
dataset_sample\yaml\csharp\mac.yml
mac.yml
YAML
2,647
0.95
0.026087
0.028571
awesome-app
538
2023-11-22T01:51:53.545274
MIT
false
1423874f6138c7d761bc41c582e7bc1a
# Checks for changes in one branch not present in another branch. Opens a PR into the second branch if needed.\n\n# schedules:\n# Cron schedules use UTC time. This is 2pm UTC on every weekday.\n# Uncomment the following lines (and line 3 above!) and update sourceBranch below when mergetool is needed again.\n# - cron: 0 14 * * 1,2,3,4,5\n# branches:\n# include:\n# - main\n# always: true\n\npr: none\ntrigger: none\n\nparameters:\n- name: sourceBranch\n type: string\n default: prerelease/2.7.0_stabilization\n- name: destinationBranch\n type: string\n default: main\n\npool:\n vmImage: 'windows-latest'\nsteps:\n- task: UsePythonVersion@0\n displayName: Ensure Python installation\n\n- powershell: |\n git fetch --force --tags --prune --progress --no-recurse-submodules origin ${{ parameters.sourceBranch }}\n git fetch --force --tags --prune --progress --no-recurse-submodules origin ${{ parameters.destinationBranch }}\n displayName: Fetch target branches\n\n- powershell: pip install -r $(Build.SourcesDirectory)/scripts/ci/requirements.txt\n displayName: Install Python requirements\n\n- task: PythonScript@0\n displayName: Run MergeTool script\n inputs:\n scriptPath: $(Build.SourcesDirectory)/scripts/ci/mergetool.py\n # Variable 'github.pat' should be defined in the Variables tab\n arguments: >\n --repo microsoft/MixedRealityToolkit-Unity\n --repo_path $(Build.SourcesDirectory)\n --source_branch ${{ parameters.sourceBranch }}\n --destination_branch ${{ parameters.destinationBranch }}\n --label Automerge\n --pat $(github.pat)\n
dataset_sample\yaml\csharp\mergetool.yml
mergetool.yml
YAML
1,560
0.95
0.041667
0.243902
awesome-app
583
2023-12-10T21:38:42.439649
MIT
false
c108daa59481b2e03ab6e180807ab43a
pull_request_rules: \n - name: automatic merge for pull request based on label and ci success\n conditions:\n - label~=LGTM$\n - check-success=continuous-integration/appveyor/pr\n actions:\n merge:\n method: squash\n - name: automatic merge for Dependabot pull requests based on ci success\n conditions:\n - author=dependabot[bot]\n - check-success=continuous-integration/appveyor/pr\n actions:\n merge:\n method: squash\n - name: automatic merge for Transifex pull requests based on ci success\n conditions:\n - author=transifex-integration[bot]\n - check-success=continuous-integration/appveyor/pr\n actions:\n merge:\n method: squash\n - name: automatic merge for ImgBot pull requests based on ci success\n conditions:\n - author=imgbot[bot]\n - check-success=continuous-integration/appveyor/pr\n actions:\n merge:\n method: squash\n
dataset_sample\yaml\csharp\mergify.yml
mergify.yml
YAML
924
0.7
0.137931
0
node-utils
500
2024-10-04T01:18:03.816095
MIT
false
cf59dbe8a6fef5c2fb8c69477338c61e
site_name: Unity ML-Agents Toolkit\nsite_url: https://unity-technologies.github.io/ml-agents/\nrepo_url: https://github.com/Unity-Technologies/ml-agents\nedit_uri: edit/main/docs/\nsite_description: The Unity Machine Learning Agents Toolkit (ML-Agents) is an open-source project that enables games and simulations to serve as environments for training intelligent agents.\nsite_author: Unity Technologies\ncopyright: com.unity.ml-agents copyright © 2017 - 2022 Unity Technologies\nnav:\n- Home: index.md\n- ML-Agents Overview: ML-Agents-Overview.md\n- Installation: Installation.md\n- Toolkit Documentation: ML-Agents-Toolkit-Documentation.md\n- Background:\n - Machine Learning: Background-Machine-Learning.md\n - PyTorch: Background-PyTorch.md\n - Unity: Background-Unity.md\n - ELO: ELO-Rating-System.md\n- Interfacing with Unity Builds:\n - Getting started with the Gym API: Python-Gym-API.md\n - Getting started with the PettingZoo API: Python-PettingZoo-API.md\n - Getting started with the LLAPI: Python-LLAPI.md\n- Python API Docs:\n - Gym API Documentation: Python-Gym-API-Documentation.md\n - Petting Zoo Documentation: Python-PettingZoo-API-Documentation.md\n - LLAPI Documentation: Python-LLAPI-Documentation.md\n - On/Off Policy Trainer: Python-On-Off-Policy-Trainer-Documentation.md\n- Tutorials:\n - Customizing Training via Plugins: Training-Plugins.md\n - Custom Trainer Plugin: Tutorial-Custom-Trainer-Plugin.md\n - HuggingFace: Hugging-Face-Integration.md\n- About:\n - FAQs: FAQ.md\n - Limitations: Limitations.md\n - Migrating: Migrating.md\n - Versioning: Versioning.md\ntheme:\n name: material\n logo: images/unity-logo.png\n favicon: images/unity-logo-black.png\n palette:\n - primary: blue\n - accent: light blue\n # Palette toggle for light mode\n - scheme: default\n toggle:\n icon: material/brightness-7\n name: Switch to dark mode\n # Palette toggle for dark mode\n - scheme: slate\n toggle:\n icon: material/brightness-4\n name: Switch to light mode\n\nextra_css:\n - extra.css\nmarkdown_extensions:\n - markdown_include.include:\n base_path: docs\n - attr_list\n
dataset_sample\yaml\csharp\mkdocs.yml
mkdocs.yml
YAML
2,162
0.8
0.050847
0.034483
awesome-app
840
2024-01-17T02:01:57.459209
Apache-2.0
false
8f98cadb1e587acdeeda3aa8af8f549f
# Configuration for Move Issues - https://github.com/dessant/move-issues\n\n# Delete the command comment when it contains no other content\ndeleteCommand: true\n\n# Close the source issue after moving\ncloseSourceIssue: true\n\n# Lock the source issue after moving\nlockSourceIssue: false\n\n# Mention issue and comment authors\nmentionAuthors: true\n\n# Preserve mentions in the issue content\nkeepContentMentions: false\n\n# Move labels that also exist on the target repository\nmoveLabels: false\n\n# Set custom aliases for targets\n# aliases:\n# r: repo\n# or: owner/repo\n\n# Repository to extend settings from\n# _extends: repo\n
dataset_sample\yaml\csharp\move.yml
move.yml
YAML
612
0.8
0.074074
0.684211
node-utils
920
2023-10-03T05:26:01.610219
BSD-3-Clause
false
02427ed3b1958976676a7288e2911d50
services:\n nopcommerce_web:\n build: .\n container_name: nopcommerce\n ports:\n - "80:80"\n depends_on:\n - nopcommerce_database\n nopcommerce_database:\n image: "mysql:latest"\n container_name: nopcommerce_mysql_server\n restart: "always"\n environment:\n MYSQL_ROOT_PASSWORD: "nopCommerce_db_password"\n\nvolumes:\n nopcommerce_data:
dataset_sample\yaml\csharp\mysql-docker-compose.yml
mysql-docker-compose.yml
YAML
426
0.7
0
0
python-kit
253
2023-09-16T09:14:28.043909
GPL-3.0
false
ca31bda81ac65f05ffc2a01a3f58e35c
# Configuration for probot-no-response - https://github.com/probot/no-response\n\n# Number of days of inactivity before an Issue is closed for lack of response\ndaysUntilClose: 14\n\n# Label requiring a response\nresponseRequiredLabel: more-details-needed-from-op\n\n# Comment to post when closing an Issue for lack of response. Set to `false` to disable\ncloseComment: >\n This issue has been automatically closed because there has been no response\n to our request for more information from the original author. With only the\n information that is currently in the issue, we don't have enough information\n to take action. Please reach out if you have or find the answers we need so\n that we can investigate further.\n
dataset_sample\yaml\csharp\no-response.yml
no-response.yml
YAML
711
0.8
0.333333
0.333333
vue-tools
815
2024-05-09T04:42:05.721297
MIT
false
618d2b4506499b108c8c9a88ad9cfbd5
#\n# This file should be kept in sync across https://www.github.com/dotnet/wpf and dotnet-wpf-int repos. \n#\n# \n\nparameters:\n # Needed because runAsPublic is used in template expressions, which can't read from user-defined variables\n # Defaults to true\n runAsPublic: true\n repoName: dotnet/wpf\n TSAEnabled: true\n\njobs:\n- ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest'), eq(variables['Build.SourceBranch'], 'refs/heads/main')) }}:\n - template: /eng/common/templates/job/onelocbuild.yml\n parameters:\n MirrorRepo: wpf\n LclSource: lclFilesfromPackage\n LclPackageId: 'LCL-JUNO-PROD-WPF'\n- template: /eng/common/templates/jobs/jobs.yml\n parameters:\n enableMicrobuild: true\n enablePublishBuildArtifacts: true\n enablePublishTestResults: false # tests run in helix\n enablePublishBuildAssets: true\n enablePublishUsingPipelines: true\n enableTelemetry: true\n enableSourceIndex: true\n sourceIndexParams:\n condition: eq(variables['Build.SourceBranch'], 'refs/heads/main')\n binlogPath: artifacts/log/Debug/x86/Build.binlog\n pool:\n ${{ if eq(variables['System.TeamProject'], 'public') }}:\n name: NetCore-Public\n demands: ImageOverride -equals windows.vs2022preview.amd64.Open\n ${{ if eq(variables['System.TeamProject'], 'internal') }}:\n name: NetCore1ESPool-Internal\n demands: ImageOverride -equals windows.vs2022preview.amd64\n helixRepo: $(repoName)\n\n jobs:\n - job: Windows_NT\n timeoutInMinutes: 120 # how long to run the job before automatically cancelling; see https://github.com/dotnet/wpf/issues/952\n pool:\n # For public jobs, use the hosted pool. For internal jobs use the internal pool.\n # Will eventually change this to two BYOC pools.\n # agent pool can't be read from a user-defined variable (Azure DevOps limitation)\n ${{ if eq(variables['System.TeamProject'], 'public') }}:\n name: NetCore-Public\n demands: ImageOverride -equals windows.vs2022preview.amd64.Open\n ${{ if eq(variables['System.TeamProject'], 'internal') }}:\n name: NetCore1ESPool-Internal\n demands: ImageOverride -equals windows.vs2022preview.amd64\n variables:\n - name: Codeql.Enabled\n value: true\n - name: Codeql.TSAEnabled\n value: ${{ parameters.TSAEnabled }}\n - name: Codeql.TSAOptionsPath\n value: $(Build.SourcesDirectory)/eng/tsaoptions.json\n # needed for signing\n - name: _TeamName\n value: DotNetCore\n - name: _SignType\n value: real\n - name: _SignArgs\n value: ''\n - name: _PublishArgs\n value: ''\n - name: _OfficialBuildIdArgs\n value: ''\n - name: _Platform\n value: x86\n - name: _PlatformArgs\n value: /p:Platform=$(_Platform)\n - name: _PublicBuildPipeline # We will run Helix tests when building in the open, but do not repeat when building and publishing again using the internal build-pipeline\n value: true\n - name: _TestHelixAgentPool\n value: 'Windows.10.Amd64.ClientRS5.Open' # Preferred:'Windows.10.Amd64.Open%3bWindows.7.Amd64.Open%3bWindows.10.Amd64.ClientRS5.Open'; See https://github.com/dotnet/wpf/issues/952\n - name: _HelixStagingDir\n value: $(BUILD.STAGINGDIRECTORY)\helix\functests\n - name: _HelixSource\n value: ${{ parameters.repoName }}/$(Build.SourceBranch)\n - name: _HelixToken\n value: ''\n - name: _HelixCreator\n value: ${{ parameters.repoName }}\n - name: _programfilesx86\n value: ${Env:ProgramFiles(x86)}/dotnet\n - name: _programfiles\n value: ${Env:ProgramFiles}/dotnet\n - ${{ if ne(variables['System.TeamProject'], 'internal') }}:\n - name: _InternalRuntimeDownloadArgs\n value: ''\n - ${{ if eq(variables['System.TeamProject'], 'internal') }}:\n - group: AzureDevOps-Artifact-Feeds-Pats\n - name: _InternalRuntimeDownloadArgs\n value: >-\n /p:DotNetRuntimeSourceFeed=https://dotnetbuilds.blob.core.windows.net/internal\n /p:DotNetRuntimeSourceFeedKey=$(dotnetbuilds-internal-container-read-token-base64)\n\n\n # Override some values if we're building internally\n - ${{ if eq(parameters.runAsPublic, 'false') }}:\n # note: You have to use list syntax here (- name: value) or you will get errors about declaring the same variable multiple times\n - name: _SignType\n value: test\n - group: DotNet-HelixApi-Access\n\n # note: Even though they are referenced here, user defined variables (like $(_SignType)) are not resolved \n # until the agent is running on the machine. They can be overridden any time before they are resolved,\n # like in the job matrix below (see Build_Debug)\n - name: _SignArgs\n value: /p:DotNetSignType=$(_SignType) /p:TeamName=$(_TeamName)\n - name: _PublishArgs\n value: /p:DotNetPublishUsingPipelines=true\n - name: _OfficialBuildIdArgs\n value: /p:OfficialBuildId=$(BUILD.BUILDNUMBER)\n - name: _PublicBuildPipeline\n value: false\n - name: _HelixSource\n value: official/${{ parameters.repoName }}/$(Build.SourceBranch)\n - name: _HelixToken\n value: '$(HelixApiAccessToken)' # from DotNet-HelixApi-Access group\n - name: _HelixCreator\n value: '' #if _HelixToken is set, Creator must be empty\n - name: _TestHelixAgentPool\n value: 'Windows.10.Amd64.ClientRS5' # Preferred: 'Windows.10.Amd64%3bWindows.7.Amd64%3bWindows.10.Amd64.ClientRS5'\n\n strategy:\n matrix:\n ${{ if eq(parameters.runAsPublic, 'true') }}:\n Build_Debug_x86:\n _BuildConfig: Debug\n # override some variables for debug\n # _SignType has to be real for package publishing to succeed - do not override to test.\n Build_Release_x86:\n _BuildConfig: Release\n ${{ if eq(parameters.runAsPublic, 'true') }}:\n Build_Debug_x64:\n _BuildConfig: Debug\n _Coverage: true\n # override some variables for debug\n # _SignType has to be real for package publishing to succeed - do not override to test.\n _Platform: x64\n Build_Release_x64:\n _BuildConfig: Release\n _Platform: x64\n ${{ if eq(parameters.runAsPublic, 'true') }}:\n Build_Debug_arm64:\n _BuildConfig: Debug\n # override some variables for debug\n # _SignType has to be real for package publishing to succeed - do not override to test.\n _Platform: arm64\n Build_Release_arm64:\n _BuildConfig: Release\n _Platform: arm64\n steps:\n - checkout: self\n clean: true\n\n # Set VSO Variable(s)\n - powershell: eng\pre-build.ps1\n displayName: Pre-Build - Set VSO Variables\n\n - template: /eng/common/templates/steps/enable-internal-sources.yml\n - template: /eng/common/templates/steps/enable-internal-runtimes.yml\n\n # Use utility script to run script command dependent on agent OS.\n - script: eng\scripts\cibuild.cmd\n -configuration $(_BuildConfig)\n -prepareMachine\n $(_PublishArgs)\n $(_SignArgs)\n $(_OfficialBuildIdArgs)\n $(_PlatformArgs)\n $(_InternalRuntimeDownloadArgs)\n /p:Coverage=$(_Coverage)\n displayName: Windows Build / Publish\n # This condition should be kept in sync with the condition for 'Run DRTs' step \n # When building on a regular pipeline (!_HelixPipeline), build as usual \n # When building on a Helix pipeline, only build Release configs\n # (!_HelixPipeline) ||\n # (_HelixPipeline && _PublicBuildPipeline && _ContinuousIntegrationTestsEnabled && _BuildConfig == Release)\n condition: or(ne(variables['_HelixPipeline'], 'true'), and(eq(variables['_HelixPipeline'], 'true') ,eq(variables['_BuildConfig'], 'Release'), eq(variables['_PublicBuildPipeline'], 'true'), eq(variables['_ContinuousIntegrationTestsEnabled'], 'true')))\n\n - script: eng\scripts\ciunittest.cmd\n -configuration $(_BuildConfig)\n -prepareMachine\n $(_PublishArgs)\n $(_SignArgs)\n $(_OfficialBuildIdArgs)\n $(_PlatformArgs)\n $(_InternalRuntimeDownloadArgs)\n /bl:$(Build.SourcesDirectory)\artifacts\log\$(_BuildConfig)\Test.binlog\n /p:Coverage=$(_Coverage)\n displayName: Run xUnit Tests\n condition: and(or(ne(variables['_HelixPipeline'], 'true'), and(eq(variables['_HelixPipeline'], 'true'), eq(variables['_PublicBuildPipeline'], 'true'), eq(variables['_ContinuousIntegrationTestsEnabled'], 'true'))), eq(variables['_Platform'], 'x64'))\n\n - task: PublishTestResults@2\n displayName: Publish XUnit Test Results\n inputs:\n testRunner: VSTest\n testResultsFiles: '$(Build.SourcesDirectory)/artifacts/TestResults/$(_BuildConfig)/*.trx'\n mergeTestResults: true\n condition: and(succeededOrFailed(), eq(variables['_BuildConfig'], 'Debug'), eq(variables['_Platform'], 'x64'))\n \n # Upload code coverage data\n - script: dotnet msbuild -binaryLogger:artifacts\log\$(_configuration)\uploadCodeCov.binlog;ProjectImports=Embed -restore eng/CodeCoverage.proj\n displayName: Upload coverage to codecov.io\n condition: and(succeeded(), eq(variables['_Coverage'], True), eq(variables['_BuildConfig'], 'Debug'), eq(variables['_Platform'], 'x64'))\n # - task: PowerShell@2\n # displayName: Install .NET Core\n # inputs:\n # filePath: $(Build.SourcesDirectory)/dotnet-test-install.ps1\n # arguments: -InstallDir $(_programfiles) -Architecture $(_Platform) -Runtime dotnet -Channel 9.0 -Quality daily\n # condition: eq(variables['_Platform'], 'x64')\n \n # - task: PowerShell@2\n # displayName: Install .NET Core(x86)\n # inputs:\n # filePath: $(Build.SourcesDirectory)/dotnet-test-install.ps1\n # arguments: -InstallDir $(_programfilesx86) -Architecture $(_Platform) -Runtime dotnet -Channel 9.0 -Quality daily\n # condition: eq(variables['_Platform'], 'x86')\n \n # - task: PowerShell@2\n # displayName: Install .NET WindowsDesktop\n # inputs:\n # filePath: $(Build.SourcesDirectory)/dotnet-test-install.ps1\n # arguments: -InstallDir $(_programfiles) -Architecture $(_Platform) -Runtime windowsdesktop -Channel 9.0 -Quality daily\n # condition: eq(variables['_Platform'], 'x64')\n \n # - task: PowerShell@2\n # displayName: Install .NET WindowsDesktop(x86)\n # inputs:\n # filePath: $(Build.SourcesDirectory)/dotnet-test-install.ps1\n # arguments: -InstallDir $(_programfilesx86) -Architecture $(_Platform) -Runtime windowsdesktop -Channel 9.0 -Quality daily\n # condition: eq(variables['_Platform'], 'x86') \n\n # - task: PowerShell@2\n # displayName: Replace WPF binaries\n # inputs:\n # targetType: 'inline'\n # script: '.\eng\copy-wpf.ps1 -testhost -destination .dotnet -$(_BuildConfig) -arch $(_Platform)'\n # condition: and(eq(variables['System.TeamProject'], 'public'), ne(variables['_Platform'], 'arm64'))\n\n # - task: DownloadPipelineArtifact@2\n # displayName: Fetch Test Binaries\n # inputs:\n # buildType: 'specific'\n # project: 'cbb18261-c48f-4abb-8651-8cdcb5474649'\n # pipeline: '81'\n # buildVersionToDownload: 'latestFromBranch'\n # branchName: 'refs/heads/main'\n # downloadPath: '$(System.ArtifactsDirectory)\testbinzip\'\n # checkDownloadedFiles: true\n # artifactName: Tests.$(_BuildConfig).$(_Platform).zip\n # condition: and(eq(variables['System.TeamProject'], 'public'), ne(variables['_Platform'], 'arm64'))\n\n # - task: ExtractFiles@1\n # displayName: Extract Test Bins\n # inputs:\n # archiveFilePatterns: '$(System.ArtifactsDirectory)\testbinzip\*.zip'\n # destinationFolder: '$(System.ArtifactsDirectory)\testbins'\n # cleanDestinationFolder: true\n # overwriteExistingFiles: true\n # condition: and(eq(variables['System.TeamProject'], 'public'), ne(variables['_Platform'], 'arm64'))\n\n # - task: PowerShell@2\n # displayName: Run Tests\n # inputs:\n # targetType: 'inline'\n # script: '.\CIRunDrts.cmd'\n # workingDirectory: '$(System.ArtifactsDirectory)\testbins'\n # condition: and(eq(variables['System.TeamProject'], 'public'), ne(variables['_Platform'], 'arm64'))\n \n # - task: CopyFiles@2\n # inputs:\n # SourceFolder: 'C:\Users\cloudtest\AppData\Roaming\QualityVault\Run\Report\'\n # Contents: '**'\n # TargetFolder: '$(System.DefaultWorkingDirectory)\Results\'\n # CleanTargetFolder: true\n # OverWrite: true\n # condition: and(eq(variables['System.TeamProject'], 'public'), eq(variables['_Platform'], 'x64'), eq(variables['_BuildConfig'], 'Release'))\n \n # - task: CopyFiles@2\n # inputs:\n # SourceFolder: 'C:\Users\cloudtest\AppData\Roaming\QualityVault\Run\Report\'\n # Contents: '**'\n # TargetFolder: '$(System.DefaultWorkingDirectory)\ResultsX86\'\n # CleanTargetFolder: true\n # OverWrite: true\n # condition: and(eq(variables['System.TeamProject'], 'public'), eq(variables['_Platform'], 'x86'), eq(variables['_BuildConfig'], 'Release'))\n\n # - task: PublishPipelineArtifact@1\n # inputs:\n # artifactName: 'TestResultsX64'\n # targetPath: '$(System.DefaultWorkingDirectory)\Results\' \n # condition: and(eq(variables['System.TeamProject'], 'public'), eq(variables['_Platform'], 'x64'), eq(variables['_BuildConfig'], 'Release'))\n\n # - task: PublishPipelineArtifact@1\n # inputs:\n # artifactName: 'TestResultsX86'\n # targetPath: '$(System.DefaultWorkingDirectory)\ResultsX86\'\n # condition: and(eq(variables['System.TeamProject'], 'public'), eq(variables['_Platform'], 'x86'), eq(variables['_BuildConfig'], 'Release'))\n \n # - task: PublishTestResults@2\n # inputs:\n # testResultsFormat: 'XUnit'\n # testResultsFiles: 'testResults.xml'\n # searchFolder: '$(System.DefaultWorkingDirectory)\Results\'\n # testRunTitle: 'Test results'\n # mergeTestResults: true\n # condition: eq(variables['System.TeamProject'], 'public')
dataset_sample\yaml\csharp\pipeline-pr.yml
pipeline-pr.yml
YAML
14,895
0.8
0.067093
0.415225
awesome-app
218
2025-01-23T01:53:02.973380
BSD-3-Clause
false
39ea7e518af6df4a288a83baedcc84b4
#\n# This file should be kept in sync across https://www.github.com/dotnet/wpf and dotnet-wpf-int repos. \n#\n# \nparameters:\n runAsPublic: true\n repoName: dotnet/wpf\n TSAEnabled: true\njobs:\n- ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest'), eq(variables['Build.SourceBranch'], 'refs/heads/main')) }}:\n - template: /eng/common/templates-official/job/onelocbuild.yml@self\n parameters:\n MirrorRepo: wpf\n LclSource: lclFilesfromPackage\n LclPackageId: 'LCL-JUNO-PROD-WPF'\n- template: /eng/common/templates-official/jobs/jobs.yml@self\n parameters:\n enableMicrobuild: true\n enablePublishBuildArtifacts: true\n enablePublishTestResults: false # tests run in helix\n enablePublishBuildAssets: true\n enablePublishUsingPipelines: true\n enableTelemetry: true\n enableSourceIndex: true\n sourceIndexParams:\n condition: eq(variables['Build.SourceBranch'], 'refs/heads/main')\n binlogPath: artifacts/log/Debug/x86/Build.binlog\n pool:\n ${{ if eq(variables['System.TeamProject'], 'public') }}:\n name: NetCore-Public\n demands: ImageOverride -equals windows.vs2022preview.amd64.Open\n ${{ if eq(variables['System.TeamProject'], 'internal') }}:\n name: NetCore1ESPool-Internal\n demands: ImageOverride -equals windows.vs2022preview.amd64\n helixRepo: $(repoName)\n jobs:\n - job: Windows_NT\n timeoutInMinutes: 120 # how long to run the job before automatically cancelling; see https://github.com/dotnet/wpf/issues/952\n pool:\n ${{ if eq(variables['System.TeamProject'], 'public') }}:\n name: NetCore-Public\n demands: ImageOverride -equals windows.vs2022preview.amd64.Open\n ${{ if eq(variables['System.TeamProject'], 'internal') }}:\n name: NetCore1ESPool-Internal\n demands: ImageOverride -equals windows.vs2022preview.amd64\n variables:\n - name: Codeql.Enabled\n value: true\n - name: Codeql.TSAEnabled\n value: ${{ parameters.TSAEnabled }}\n - name: Codeql.TSAOptionsPath\n value: $(Build.SourcesDirectory)/eng/tsaoptions.json\n - name: _TeamName\n value: DotNetCore\n - name: _SignType\n value: real\n - name: _SignArgs\n value: ''\n - name: _PublishArgs\n value: ''\n - name: _OfficialBuildIdArgs\n value: ''\n - name: _Platform\n value: x86\n - name: _PlatformArgs\n value: /p:Platform=$(_Platform)\n - name: _PublicBuildPipeline # We will run Helix tests when building in the open, but do not repeat when building and publishing again using the internal build-pipeline\n value: true\n - name: _TestHelixAgentPool\n value: 'Windows.10.Amd64.ClientRS5.Open' #Preferred:'Windows.10.Amd64.Open%3bWindows.7.Amd64.Open%3bWindows.10.Amd64.ClientRS5.Open'; See https://github.com/dotnet/wpf/issues/952\n - name: _HelixStagingDir\n value: $(BUILD.STAGINGDIRECTORY)\helix\functests\n - name: _HelixSource\n value: ${{ parameters.repoName }}/$(Build.SourceBranch)\n - name: _HelixToken\n value: ''\n - name: _HelixCreator\n value: ${{ parameters.repoName }}\n - name: _programfilesx86\n value: ${Env:ProgramFiles(x86)}/dotnet\n - name: _programfiles\n value: ${Env:ProgramFiles}/dotnet\n - ${{ if ne(variables['System.TeamProject'], 'internal') }}:\n - name: _InternalRuntimeDownloadArgs\n value: ''\n - ${{ if eq(variables['System.TeamProject'], 'internal') }}:\n - group: AzureDevOps-Artifact-Feeds-Pats\n - name: _InternalRuntimeDownloadArgs\n value: >-\n /p:DotNetRuntimeSourceFeed=https://dotnetbuilds.blob.core.windows.net/internal /p:DotNetRuntimeSourceFeedKey=$(dotnetbuilds-internal-container-read-token-base64)\n - ${{ if eq(parameters.runAsPublic, 'false') }}:\n # note: You have to use list syntax here (- name: value) or you will get errors about declaring the same variable multiple times\n - name: _SignType\n value: real\n - group: DotNet-HelixApi-Access\n\n # note: Even though they are referenced here, user defined variables (like $(_SignType)) are not resolved \n # until the agent is running on the machine. They can be overridden any time before they are resolved,\n # like in the job matrix below (see Build_Debug)\n - name: _SignArgs\n value: /p:DotNetSignType=$(_SignType) /p:TeamName=$(_TeamName)\n - name: _PublishArgs\n value: /p:DotNetPublishUsingPipelines=true\n - name: _OfficialBuildIdArgs\n value: /p:OfficialBuildId=$(BUILD.BUILDNUMBER)\n - name: _PublicBuildPipeline\n value: false\n - name: _HelixSource\n value: official/${{ parameters.repoName }}/$(Build.SourceBranch)\n - name: _HelixToken\n value: '$(HelixApiAccessToken)'\n - name: _HelixCreator\n value: ''\n - name: _TestHelixAgentPool\n value: 'Windows.10.Amd64.ClientRS5'\n strategy:\n matrix:\n ${{ if eq(parameters.runAsPublic, 'true') }}:\n Build_Debug_x86:\n _BuildConfig: Debug\n # override some variables for debug\n # _SignType has to be real for package publishing to succeed - do not override to test.\n Build_Release_x86:\n _BuildConfig: Release\n ${{ if eq(parameters.runAsPublic, 'true') }}:\n Build_Debug_x64:\n _BuildConfig: Debug\n # override some variables for debug\n # _SignType has to be real for package publishing to succeed - do not override to test.\n _Platform: x64\n Build_Release_x64:\n _BuildConfig: Release\n _Platform: x64\n ${{ if eq(parameters.runAsPublic, 'true') }}:\n Build_Debug_arm64:\n _BuildConfig: Debug\n _Platform: arm64\n Build_Release_arm64:\n _BuildConfig: Release\n _Platform: arm64\n steps:\n - checkout: self\n clean: true\n - powershell: eng\pre-build.ps1\n displayName: Pre-Build - Set VSO Variables\n \n - template: /eng/common/templates-official/steps/enable-internal-sources.yml\n - template: /eng/common/templates-official/steps/enable-internal-runtimes.yml\n \n # Use utility script to run script command dependent on agent OS\n - script: eng\scripts\cibuild.cmd -configuration $(_BuildConfig) -prepareMachine $(_PublishArgs) $(_SignArgs) $(_OfficialBuildIdArgs) $(_PlatformArgs) $(_InternalRuntimeDownloadArgs)\n displayName: Windows Build / Publish\n # This condition should be kept in sync with the condition for 'Run DRTs' step \n # When building on a regular pipeline (!_HelixPipeline), build as usual \n # When building on a Helix pipeline, only build Release configs\n # (!_HelixPipeline) ||\n # (_HelixPipeline && _PublicBuildPipeline && _ContinuousIntegrationTestsEnabled && _BuildConfig == Release)\n condition: or(ne(variables['_HelixPipeline'], 'true'), and(eq(variables['_HelixPipeline'], 'true') ,eq(variables['_BuildConfig'], 'Release'), eq(variables['_PublicBuildPipeline'], 'true'), eq(variables['_ContinuousIntegrationTestsEnabled'], 'true')))\n
dataset_sample\yaml\csharp\pipeline.yml
pipeline.yml
YAML
7,352
0.8
0.101266
0.116129
node-utils
44
2025-03-29T12:08:11.080706
BSD-3-Clause
false
244d52d78f14099ad50255860e839420
services:\n nopcommerce_web:\n build: .\n container_name: nopcommerce\n ports:\n - "80:80"\n depends_on:\n - nopcommerce_database\n nopcommerce_database:\n image: "postgres:latest"\n container_name: nopcommerce_postgres_server\n restart: "always"\n environment:\n POSTGRES_PASSWORD: "nopCommerce_db_password"\n\nvolumes:\n nopcommerce_data:
dataset_sample\yaml\csharp\postgresql-docker-compose.yml
postgresql-docker-compose.yml
YAML
430
0.7
0
0
vue-tools
283
2025-03-04T19:45:32.051076
MIT
false
bdc63199a49348a733c364a1b73e7d11
name: bins-$(BUILD.SOURCEBRANCHNAME)-$(Build.BuildId)\ntrigger: none\n\nparameters:\n - name: InternalSDKBlobURL\n displayName: URL to the blob having internal .NET SDK\n type: string\n default: ' '\n - name: ReleaseTagVar\n displayName: Release Tag\n type: string\n default: 'fromBranch'\n - name: SKIP_SIGNING\n displayName: Debugging - Skip Signing\n type: string\n default: 'NO'\n - name: RUN_TEST_AND_RELEASE\n displayName: Debugging - Run Test and Release Artifacts Stage\n type: boolean\n default: true\n - name: RUN_WINDOWS\n displayName: Debugging - Enable Windows Stage\n type: boolean\n default: true\n - name: ENABLE_MSBUILD_BINLOGS\n displayName: Debugging - Enable MSBuild Binary Logs\n type: boolean\n default: false\n - name: FORCE_CODEQL\n displayName: Debugging - Enable CodeQL and set cadence to 1 hour\n type: boolean\n default: false\n\nresources:\n repositories:\n - repository: ComplianceRepo\n type: github\n endpoint: ComplianceGHRepo\n name: PowerShell/compliance\n ref: master\n - repository: onebranchTemplates\n type: git\n name: OneBranch.Pipelines/GovernedTemplates\n ref: refs/heads/main\n\nvariables:\n - name: PS_RELEASE_BUILD\n value: 1\n - name: DOTNET_CLI_TELEMETRY_OPTOUT\n value: 1\n - name: POWERSHELL_TELEMETRY_OPTOUT\n value: 1\n - name: nugetMultiFeedWarnLevel\n value: none\n - name: NugetSecurityAnalysisWarningLevel\n value: none\n - name: skipNugetSecurityAnalysis\n value: true\n - name: branchCounterKey\n value: $[format('{0:yyyyMMdd}-{1}', pipeline.startTime,variables['Build.SourceBranch'])]\n - name: branchCounter\n value: $[counter(variables['branchCounterKey'], 1)]\n - name: BUILDSECMON_OPT_IN\n value: true\n - name: __DOTNET_RUNTIME_FEED\n value: ${{ parameters.InternalSDKBlobURL }}\n - name: LinuxContainerImage\n value: onebranch.azurecr.io/linux/ubuntu-2004:latest\n - name: WindowsContainerImage\n value: onebranch.azurecr.io/windows/ltsc2019/vse2022:latest\n - name: CDP_DEFINITION_BUILD_COUNT\n value: $[counter('', 0)]\n - name: ReleaseTagVar\n value: ${{ parameters.ReleaseTagVar }}\n - name: SKIP_SIGNING\n value: ${{ parameters.SKIP_SIGNING }}\n - group: mscodehub-feed-read-general\n - group: mscodehub-feed-read-akv\n - name: ENABLE_MSBUILD_BINLOGS\n value: ${{ parameters.ENABLE_MSBUILD_BINLOGS }}\n - ${{ if eq(parameters['FORCE_CODEQL'],'true') }}:\n # Cadence is hours before CodeQL will allow a re-upload of the database\n - name: CodeQL.Cadence\n value: 1\n - name: CODEQL_ENABLED\n ${{ if or(eq(variables['Build.SourceBranch'], 'refs/heads/master'), eq(parameters['FORCE_CODEQL'],'true')) }}:\n value: true\n ${{ else }}:\n value: false\n\n\nextends:\n template: v2/OneBranch.Official.CrossPlat.yml@onebranchTemplates\n parameters:\n customTags: 'ES365AIMigrationTooling'\n featureFlags:\n LinuxHostVersion:\n Network: KS3\n WindowsHostVersion:\n Network: KS3\n globalSdl:\n disableLegacyManifest: true\n # disabled Armorty as we dont have any ARM templates to scan. It fails on some sample ARM templates.\n armory:\n enabled: false\n sbom:\n enabled: true\n codeql:\n compiled:\n enabled: $(CODEQL_ENABLED)\n tsaEnabled: true # This enables TSA bug filing only for CodeQL 3000\n credscan:\n enabled: true\n scanFolder: $(Build.SourcesDirectory)\n suppressionsFile: $(Build.SourcesDirectory)\.config\suppress.json\n cg:\n enabled: true\n ignoreDirectories: '.devcontainer,demos,docker,docs,src,test,tools/packaging'\n asyncSdl:\n enabled: true\n forStages: [prep, macos, linux, windows, test_and_release_artifacts]\n credscan:\n enabled: true\n scanFolder: $(Build.SourcesDirectory)\n suppressionsFile: $(Build.SourcesDirectory)\PowerShell\.config\suppress.json\n binskim:\n enabled: false\n # APIScan requires a non-Ready-To-Run build\n apiscan:\n enabled: false\n tsaOptionsFile: .config\tsaoptions.json\n\n stages:\n - stage: prep\n jobs:\n - job: SetVars\n displayName: Set Variables\n pool:\n type: windows\n\n variables:\n - name: ob_outputDirectory\n value: '$(Build.ArtifactStagingDirectory)/ONEBRANCH_ARTIFACT/BuildJson'\n - name: ob_sdl_codeSignValidation_enabled\n value: false\n - name: ob_sdl_codeql_compiled_enabled\n value: false\n - name: ob_sdl_credscan_suppressionsFile\n value: $(Build.SourcesDirectory)\PowerShell\.config\suppress.json\n - name: ob_sdl_tsa_configFile\n value: $(Build.SourcesDirectory)\PowerShell\.config\tsaoptions.json\n - name: ob_signing_setup_enabled\n value: false\n - name: ob_sdl_sbom_enabled\n value: false\n\n steps:\n - checkout: self\n clean: true\n env:\n ob_restore_phase: true # This ensures checkout is done at the beginning of the restore phase\n\n - pwsh: |\n Get-ChildItem Env: | Out-String -width 9999 -Stream | write-Verbose -Verbose\n displayName: Capture environment variables\n env:\n ob_restore_phase: true # This ensures checkout is done at the beginning of the restore phase\n\n - template: /.pipelines/templates/SetVersionVariables.yml@self\n parameters:\n ReleaseTagVar: $(ReleaseTagVar)\n CreateJson: yes\n UseJson: no\n\n - stage: macos\n displayName: macOS - build and sign\n dependsOn: ['prep']\n jobs:\n - template: /.pipelines/templates/mac.yml@self\n parameters:\n buildArchitecture: x64\n - template: /.pipelines/templates/mac.yml@self\n parameters:\n buildArchitecture: arm64\n\n - stage: linux\n displayName: linux - build and sign\n dependsOn: ['prep']\n jobs:\n - template: /.pipelines/templates/linux.yml@self\n parameters:\n Runtime: 'linux-x64'\n JobName: 'linux_x64'\n\n - template: /.pipelines/templates/linux.yml@self\n parameters:\n Runtime: 'linux-x64'\n JobName: 'linux_x64_minSize'\n BuildConfiguration: 'minSize'\n\n - template: /.pipelines/templates/linux.yml@self\n parameters:\n Runtime: 'linux-arm'\n JobName: 'linux_arm'\n\n - template: /.pipelines/templates/linux.yml@self\n parameters:\n Runtime: 'linux-arm64'\n JobName: 'linux_arm64'\n\n - template: /.pipelines/templates/linux.yml@self\n parameters:\n Runtime: 'fxdependent-linux-x64'\n JobName: 'linux_fxd_x64_mariner'\n\n - template: /.pipelines/templates/linux.yml@self\n parameters:\n Runtime: 'fxdependent-linux-arm64'\n JobName: 'linux_fxd_arm64_mariner'\n\n - template: /.pipelines/templates/linux.yml@self\n parameters:\n Runtime: 'fxdependent-noopt-linux-musl-x64'\n JobName: 'linux_fxd_x64_alpine'\n\n - template: /.pipelines/templates/linux.yml@self\n parameters:\n Runtime: 'fxdependent'\n JobName: 'linux_fxd'\n\n - template: /.pipelines/templates/linux.yml@self\n parameters:\n Runtime: 'linux-musl-x64'\n JobName: 'linux_x64_alpine'\n\n - stage: windows\n displayName: windows - build and sign\n dependsOn: ['prep']\n condition: and(succeeded(),eq('${{ parameters.RUN_WINDOWS }}','true'))\n jobs:\n - template: /.pipelines/templates/windows-hosted-build.yml@self\n parameters:\n Architecture: x64\n BuildConfiguration: release\n JobName: build_windows_x64_release\n - template: /.pipelines/templates/windows-hosted-build.yml@self\n parameters:\n Architecture: x64\n BuildConfiguration: minSize\n JobName: build_windows_x64_minSize_release\n - template: /.pipelines/templates/windows-hosted-build.yml@self\n parameters:\n Architecture: x86\n JobName: build_windows_x86_release\n - template: /.pipelines/templates/windows-hosted-build.yml@self\n parameters:\n Architecture: arm64\n JobName: build_windows_arm64_release\n - template: /.pipelines/templates/windows-hosted-build.yml@self\n parameters:\n Architecture: fxdependent\n JobName: build_windows_fxdependent_release\n - template: /.pipelines/templates/windows-hosted-build.yml@self\n parameters:\n Architecture: fxdependentWinDesktop\n JobName: build_windows_fxdependentWinDesktop_release\n\n - stage: test_and_release_artifacts\n displayName: Test and Release Artifacts\n dependsOn: ['prep']\n condition: and(succeeded(),eq('${{ parameters.RUN_TEST_AND_RELEASE }}','true'))\n jobs:\n - template: /.pipelines/templates/testartifacts.yml@self\n\n - job: release_json\n displayName: Create and Upload release.json\n pool:\n type: windows\n variables:\n - name: ob_outputDirectory\n value: '$(Build.ArtifactStagingDirectory)/ONEBRANCH_ARTIFACT'\n - name: ob_sdl_tsa_configFile\n value: $(Build.SourcesDirectory)\PowerShell\.config\tsaoptions.json\n - name: ob_sdl_credscan_suppressionsFile\n value: $(Build.SourcesDirectory)\PowerShell\.config\suppress.json\n steps:\n - checkout: self\n clean: true\n - template: /.pipelines/templates/SetVersionVariables.yml@self\n parameters:\n ReleaseTagVar: $(ReleaseTagVar)\n - powershell: |\n $metadata = Get-Content '$(Build.SourcesDirectory)/PowerShell/tools/metadata.json' -Raw | ConvertFrom-Json\n $LTS = $metadata.LTSRelease.Package\n @{ ReleaseVersion = "$(Version)"; LTSRelease = $LTS } | ConvertTo-Json | Out-File "$(Build.StagingDirectory)\release.json"\n Get-Content "$(Build.StagingDirectory)\release.json"\n\n if (-not (Test-Path "$(ob_outputDirectory)\metadata")) {\n New-Item -ItemType Directory -Path "$(ob_outputDirectory)\metadata"\n }\n\n Copy-Item -Path "$(Build.StagingDirectory)\release.json" -Destination "$(ob_outputDirectory)\metadata" -Force\n displayName: Create and upload release.json file to build artifact\n retryCountOnTaskFailure: 2\n - template: /.pipelines/templates/step/finalize.yml@self\n
dataset_sample\yaml\csharp\PowerShell-Coordinated_Packages-Official.yml
PowerShell-Coordinated_Packages-Official.yml
YAML
10,476
0.95
0.013115
0.010714
node-utils
725
2023-07-30T15:03:34.568552
GPL-3.0
false
548aa004f25dd6734d243471c810497e
trigger: none\n\nparameters: # parameters are shown up in ADO UI in a build queue time\n - name: ForceAzureBlobDelete\n displayName: Delete Azure Blob\n type: string\n values:\n - true\n - false\n default: false\n - name: 'debug'\n displayName: 'Enable debug output'\n type: boolean\n default: false\n - name: InternalSDKBlobURL\n displayName: URL to the blob having internal .NET SDK\n type: string\n default: ' '\n - name: ReleaseTagVar\n displayName: Release Tag\n type: string\n default: 'fromBranch'\n - name: SKIP_SIGNING\n displayName: Skip Signing\n type: string\n default: 'NO'\n \nname: pkgs-$(BUILD.SOURCEBRANCHNAME)-$(Build.BuildId)\n\nvariables:\n - name: CDP_DEFINITION_BUILD_COUNT\n value: $[counter('', 0)] # needed for onebranch.pipeline.version task\n - name: system.debug\n value: ${{ parameters.debug }}\n - name: ENABLE_PRS_DELAYSIGN\n value: 1\n - name: ROOT\n value: $(Build.SourcesDirectory)\n - name: ForceAzureBlobDelete\n value: ${{ parameters.ForceAzureBlobDelete }}\n - name: NUGET_XMLDOC_MODE\n value: none\n - name: nugetMultiFeedWarnLevel\n value: none\n - name: NugetSecurityAnalysisWarningLevel\n value: none\n - name: skipNugetSecurityAnalysis\n value: true\n - name: ReleaseTagVar\n value: ${{ parameters.ReleaseTagVar }}\n - name: ob_outputDirectory\n value: '$(Build.ArtifactStagingDirectory)/ONEBRANCH_ARTIFACT'\n - name: WindowsContainerImage\n value: 'onebranch.azurecr.io/windows/ltsc2022/vse2022:latest' # Docker image which is used to build the project\n - name: LinuxContainerImage\n value: mcr.microsoft.com/onebranch/cbl-mariner/build:2.0\n - group: mscodehub-feed-read-general\n - group: mscodehub-feed-read-akv\n - name: branchCounterKey\n value: $[format('{0:yyyyMMdd}-{1}', pipeline.startTime,variables['Build.SourceBranch'])]\n - name: branchCounter\n value: $[counter(variables['branchCounterKey'], 1)]\n\nresources:\n pipelines:\n - pipeline: CoOrdinatedBuildPipeline\n source: 'PowerShell-Coordinated Binaries-Official'\n trigger:\n branches:\n include:\n - master\n - releases/*\n\n repositories:\n - repository: templates\n type: git\n name: OneBranch.Pipelines/GovernedTemplates\n ref: refs/heads/main\n\nextends:\n template: v2/OneBranch.Official.CrossPlat.yml@templates\n parameters:\n cloudvault:\n enabled: false\n featureFlags:\n WindowsHostVersion:\n Version: 2022\n Network: KS3\n linuxEsrpSigning: true\n globalSdl:\n disableLegacyManifest: true\n # disabled Armorty as we dont have any ARM templates to scan. It fails on some sample ARM templates.\n armory:\n enabled: false\n sbom:\n enabled: true\n compiled:\n enabled: false\n credscan:\n enabled: true\n scanFolder: $(Build.SourcesDirectory)\n suppressionsFile: $(Build.SourcesDirectory)\.config\suppress.json\n cg:\n enabled: true\n ignoreDirectories: '.devcontainer,demos,docker,docs,src,test,tools/packaging'\n asyncSdl:\n enabled: true\n forStages: ['build']\n credscan:\n enabled: true\n scanFolder: $(Build.SourcesDirectory)\n suppressionsFile: $(Build.SourcesDirectory)\PowerShell\.config\suppress.json\n binskim:\n enabled: false\n # APIScan requires a non-Ready-To-Run build\n apiscan:\n enabled: false\n tsaOptionsFile: .config\tsaoptions.json\n stages:\n - stage: prep\n jobs:\n - template: /.pipelines/templates/checkAzureContainer.yml@self\n\n - stage: mac_package\n dependsOn: [prep]\n jobs:\n - template: /.pipelines/templates/mac-package-build.yml@self\n parameters:\n buildArchitecture: x64\n\n - template: /.pipelines/templates/mac-package-build.yml@self\n parameters:\n buildArchitecture: arm64\n\n - stage: windows_package\n dependsOn: [prep]\n jobs:\n - template: /.pipelines/templates/windows-package-build.yml@self\n parameters:\n runtime: x64\n\n - template: /.pipelines/templates/windows-package-build.yml@self\n parameters:\n runtime: arm64\n\n - template: /.pipelines/templates/windows-package-build.yml@self\n parameters:\n runtime: x86\n\n - template: /.pipelines/templates/windows-package-build.yml@self\n parameters:\n runtime: fxdependent\n\n - template: /.pipelines/templates/windows-package-build.yml@self\n parameters:\n runtime: fxdependentWinDesktop\n\n - template: /.pipelines/templates/windows-package-build.yml@self\n parameters:\n runtime: minsize\n\n - stage: linux_package\n dependsOn: [prep]\n jobs:\n - template: /.pipelines/templates/linux-package-build.yml@self\n parameters:\n unsignedDrop: 'drop_linux_build_linux_x64'\n signedDrop: 'drop_linux_sign_linux_x64'\n packageType: deb\n jobName: deb\n\n - template: /.pipelines/templates/linux-package-build.yml@self\n parameters:\n unsignedDrop: 'drop_linux_build_linux_fxd_x64_mariner'\n signedDrop: 'drop_linux_sign_linux_fxd_x64_mariner'\n packageType: rpm-fxdependent #mariner-x64\n jobName: mariner_x64\n signingProfile: 'CP-459159-pgpdetached'\n\n - template: /.pipelines/templates/linux-package-build.yml@self\n parameters:\n unsignedDrop: 'drop_linux_build_linux_fxd_arm64_mariner'\n signedDrop: 'drop_linux_sign_linux_fxd_arm64_mariner'\n packageType: rpm-fxdependent-arm64 #mariner-arm64\n jobName: mariner_arm64\n signingProfile: 'CP-459159-pgpdetached'\n\n - template: /.pipelines/templates/linux-package-build.yml@self\n parameters:\n unsignedDrop: 'drop_linux_build_linux_x64'\n signedDrop: 'drop_linux_sign_linux_x64'\n packageType: rpm\n jobName: rpm\n\n - template: /.pipelines/templates/linux-package-build.yml@self\n parameters:\n unsignedDrop: 'drop_linux_build_linux_arm'\n signedDrop: 'drop_linux_sign_linux_arm'\n packageType: tar-arm\n jobName: tar_arm\n\n - template: /.pipelines/templates/linux-package-build.yml@self\n parameters:\n unsignedDrop: 'drop_linux_build_linux_arm64'\n signedDrop: 'drop_linux_sign_linux_arm64'\n packageType: tar-arm64\n jobName: tar_arm64\n\n - template: /.pipelines/templates/linux-package-build.yml@self\n parameters:\n unsignedDrop: 'drop_linux_build_linux_x64_alpine'\n signedDrop: 'drop_linux_sign_linux_x64_alpine'\n packageType: tar-alpine\n jobName: tar_alpine\n\n - template: /.pipelines/templates/linux-package-build.yml@self\n parameters:\n unsignedDrop: 'drop_linux_build_linux_fxd'\n signedDrop: 'drop_linux_sign_linux_fxd'\n packageType: fxdependent\n jobName: fxdependent\n\n - template: /.pipelines/templates/linux-package-build.yml@self\n parameters:\n unsignedDrop: 'drop_linux_build_linux_x64'\n signedDrop: 'drop_linux_sign_linux_x64'\n packageType: tar\n jobName: tar\n\n - template: /.pipelines/templates/linux-package-build.yml@self\n parameters:\n unsignedDrop: 'drop_linux_build_linux_fxd_x64_alpine'\n signedDrop: 'drop_linux_sign_linux_fxd_x64_alpine'\n packageType: tar-alpine-fxdependent\n jobName: tar_alpine_fxd\n\n - template: /.pipelines/templates/linux-package-build.yml@self\n parameters:\n unsignedDrop: 'drop_linux_build_linux_x64_minSize'\n signedDrop: 'drop_linux_sign_linux_x64_minSize'\n packageType: min-size\n jobName: minSize\n\n - stage: nupkg\n dependsOn: [prep]\n jobs:\n - template: /.pipelines/templates/nupkg.yml@self\n\n - stage: upload\n dependsOn: [mac_package, windows_package, linux_package, nupkg]\n jobs:\n - template: /.pipelines/templates/uploadToAzure.yml@self\n
dataset_sample\yaml\csharp\PowerShell-Packages-Official.yml
PowerShell-Packages-Official.yml
YAML
8,075
0.95
0.003968
0.008889
react-lib
482
2024-03-10T04:33:44.016625
MIT
false
5db613b9950c12e7d1dbfda0dc9b1ac1
trigger: none\n\nparameters: # parameters are shown up in ADO UI in a build queue time\n - name: 'debug'\n displayName: 'Enable debug output'\n type: boolean\n default: false\n - name: skipPublish\n displayName: Skip PMC Publish\n type: boolean\n default: false\n - name: SKIP_SIGNING\n displayName: Skip Signing\n type: string\n default: 'NO'\n\nname: ev2-$(BUILD.SOURCEBRANCHNAME)-$(Build.BuildId)\n\nvariables:\n - name: CDP_DEFINITION_BUILD_COUNT\n value: $[counter('', 0)]\n - name: system.debug\n value: ${{ parameters.debug }}\n - name: ENABLE_PRS_DELAYSIGN\n value: 1\n - name: ROOT\n value: $(Build.SourcesDirectory)\n - name: REPOROOT\n value: $(Build.SourcesDirectory)\n - name: OUTPUTROOT\n value: $(REPOROOT)\out\n - name: NUGET_XMLDOC_MODE\n value: none\n - name: nugetMultiFeedWarnLevel\n value: none\n - name: NugetSecurityAnalysisWarningLevel\n value: none\n - name: skipNugetSecurityAnalysis\n value: true\n - name: ob_outputDirectory\n value: '$(Build.ArtifactStagingDirectory)/ONEBRANCH_ARTIFACT'\n - name: ob_sdl_tsa_configFile\n value: $(Build.SourcesDirectory)\.config\tsaoptions.json\n - name: WindowsContainerImage\n value: 'onebranch.azurecr.io/windows/ltsc2022/vse2022:latest'\n - name: LinuxContainerImage\n value: mcr.microsoft.com/onebranch/cbl-mariner/build:2.0\n - group: PoolNames\n\nresources:\n repositories:\n - repository: templates\n type: git\n name: OneBranch.Pipelines/GovernedTemplates\n ref: refs/heads/main\n\n pipelines:\n - pipeline: CoOrdinatedBuildPipeline\n source: 'PowerShell-Coordinated Binaries-Official'\n\n - pipeline: PSPackagesOfficial\n source: 'PowerShell-Packages-Official'\n trigger:\n branches:\n include:\n - master\n - releases/*\n\nextends:\n template: v2/OneBranch.Official.CrossPlat.yml@templates\n parameters:\n featureFlags:\n WindowsHostVersion:\n Version: 2022\n Network: Netlock\n linuxEsrpSigning: true\n cloudvault:\n enabled: false\n globalSdl:\n disableLegacyManifest: true\n # disabled Armory as we dont have any ARM templates to scan. It fails on some sample ARM templates.\n armory:\n enabled: false\n asyncSdl:\n enabled: true\n tsaOptionsFile: .config/tsaoptions.json\n tsa:\n enabled: true\n credscan:\n enabled: true\n scanFolder: $(Build.SourcesDirectory)\n suppressionsFile: $(Build.SourcesDirectory)\.config\suppress.json\n binskim:\n break: false # always break the build on binskim issues in addition to TSA upload\n policheck:\n break: true # always break the build on policheck issues. You can disable it by setting to 'false'\n tsaOptionsFile: .config\tsaoptions.json\n stages:\n - template: /.pipelines/templates/release-prep-for-ev2.yml@self\n parameters:\n skipPublish: ${{ parameters.skipPublish }}\n\n - template: /.pipelines/templates/release-publish-pmc.yml@self\n
dataset_sample\yaml\csharp\PowerShell-Release-Official-Azure.yml
PowerShell-Release-Official-Azure.yml
YAML
3,003
0.8
0.009709
0.010526
node-utils
121
2024-07-16T01:45:06.019408
GPL-3.0
false
0499fb0dc89a245ca4a10558d545a240
trigger: none\n\nparameters: # parameters are shown up in ADO UI in a build queue time\n - name: 'debug'\n displayName: 'Enable debug output'\n type: boolean\n default: false\n - name: InternalSDKBlobURL\n displayName: URL to the blob having internal .NET SDK\n type: string\n default: ' '\n - name: ReleaseTagVar\n displayName: Release Tag\n type: string\n default: 'fromBranch'\n - name: SKIP_SIGNING\n displayName: Skip Signing\n type: string\n default: 'NO'\n - name: SkipPublish\n displayName: Skip Publishing to GitHub and Nuget\n type: boolean\n default: false\n - name: SkipPSInfraInstallers\n displayName: Skip Copying Archives and Installers to PSInfrastructure Public Location\n type: boolean\n default: false\n\nname: release-$(BUILD.SOURCEBRANCHNAME)-$(Build.BuildId)\n\nvariables:\n - name: CDP_DEFINITION_BUILD_COUNT\n value: $[counter('', 0)]\n - name: system.debug\n value: ${{ parameters.debug }}\n - name: ENABLE_PRS_DELAYSIGN\n value: 1\n - name: ROOT\n value: $(Build.SourcesDirectory)\n - name: REPOROOT\n value: $(Build.SourcesDirectory)\n - name: OUTPUTROOT\n value: $(REPOROOT)\out\n - name: NUGET_XMLDOC_MODE\n value: none\n - name: nugetMultiFeedWarnLevel\n value: none\n - name: NugetSecurityAnalysisWarningLevel\n value: none\n - name: skipNugetSecurityAnalysis\n value: true\n - name: ob_outputDirectory\n value: '$(Build.ArtifactStagingDirectory)/ONEBRANCH_ARTIFACT'\n - name: WindowsContainerImage\n value: 'onebranch.azurecr.io/windows/ltsc2022/vse2022:latest'\n - name: LinuxContainerImage\n value: mcr.microsoft.com/onebranch/cbl-mariner/build:2.0\n - name: ReleaseTagVar\n value: ${{ parameters.ReleaseTagVar }}\n - group: PoolNames\n - group: MSIXSigningProfile\n\nresources:\n repositories:\n - repository: templates\n type: git\n name: OneBranch.Pipelines/GovernedTemplates\n ref: refs/heads/main\n - repository: PSInternalTools\n type: git\n name: PowerShellCore/Internal-PowerShellTeam-Tools\n ref: refs/heads/master\n\n pipelines:\n - pipeline: CoOrdinatedBuildPipeline\n source: 'PowerShell-Coordinated Binaries-Official'\n\n - pipeline: PSPackagesOfficial\n source: 'PowerShell-Packages-Official'\n trigger:\n branches:\n include:\n - master\n - releases/*\n\nextends:\n template: v2/OneBranch.Official.CrossPlat.yml@templates\n parameters:\n release: \n category: NonAzure\n featureFlags:\n WindowsHostVersion:\n Version: 2022\n Network: KS3\n cloudvault:\n enabled: false\n globalSdl:\n disableLegacyManifest: true\n # disabled Armory as we dont have any ARM templates to scan. It fails on some sample ARM templates.\n armory:\n enabled: false\n asyncSdl:\n enabled: true\n tsaOptionsFile: .config/tsaoptions.json\n tsa:\n enabled: true\n credscan:\n enabled: true\n scanFolder: $(Build.SourcesDirectory)\n suppressionsFile: $(Build.SourcesDirectory)\.config\suppress.json\n binskim:\n break: false # always break the build on binskim issues in addition to TSA upload\n policheck:\n break: true # always break the build on policheck issues. You can disable it by setting to 'false'\n # suppression:\n # suppressionFile: $(Build.SourcesDirectory)\.gdn\global.gdnsuppress\n tsaOptionsFile: .config\tsaoptions.json\n\n stages:\n - stage: setReleaseTagAndChangelog\n displayName: 'Set Release Tag and Upload Changelog'\n jobs:\n - template: /.pipelines/templates/release-SetTagAndChangelog.yml@self\n\n - stage: msixbundle\n displayName: 'Create MSIX Bundle'\n dependsOn: []\n jobs:\n - template: /.pipelines/templates/release-create-msix.yml@self\n\n - stage: validateSdk\n displayName: 'Validate SDK'\n dependsOn: []\n jobs:\n - template: /.pipelines/templates/release-validate-sdk.yml@self\n parameters:\n jobName: "windowsSDK"\n displayName: "Windows SDK Validation"\n imageName: PSMMS2019-Secure\n poolName: $(windowsPool)\n\n - template: /.pipelines/templates/release-validate-sdk.yml@self\n parameters:\n jobName: "MacOSSDK"\n displayName: "MacOS SDK Validation"\n imageName: macOS-latest\n poolName: Azure Pipelines\n\n - template: /.pipelines/templates/release-validate-sdk.yml@self\n parameters:\n jobName: "LinuxSDK"\n displayName: "Linux SDK Validation"\n imageName: PSMMSUbuntu20.04-Secure\n poolName: $(ubuntuPool)\n\n - stage: gbltool\n displayName: 'Validate Global tools'\n dependsOn: []\n jobs:\n - template: /.pipelines/templates/release-validate-globaltools.yml@self\n parameters:\n jobName: "WindowsGlobalTools"\n displayName: "Windows Global Tools Validation"\n jobtype: windows\n\n - template: /.pipelines/templates/release-validate-globaltools.yml@self\n parameters:\n jobName: "LinuxGlobalTools"\n displayName: "Linux Global Tools Validation"\n jobtype: linux\n globalToolExeName: 'pwsh'\n globalToolPackageName: 'PowerShell.Linux.x64'\n\n - stage: fxdpackages\n displayName: 'Validate FXD Packages'\n dependsOn: []\n jobs:\n - template: /.pipelines/templates/release-validate-fxdpackages.yml@self\n parameters:\n jobName: 'winfxd'\n displayName: 'Validate Win Fxd Packages'\n jobtype: 'windows'\n artifactName: 'drop_windows_package_package_win_fxdependent'\n packageNamePattern: '**/*win-fxdependent.zip'\n\n - template: /.pipelines/templates/release-validate-fxdpackages.yml@self\n parameters:\n jobName: 'winfxdDesktop'\n displayName: 'Validate WinDesktop Fxd Packages'\n jobtype: 'windows'\n artifactName: 'drop_windows_package_package_win_fxdependentWinDesktop'\n packageNamePattern: '**/*win-fxdependentwinDesktop.zip'\n\n - template: /.pipelines/templates/release-validate-fxdpackages.yml@self\n parameters:\n jobName: 'linuxfxd'\n displayName: 'Validate Linux Fxd Packages'\n jobtype: 'linux'\n artifactName: 'drop_linux_package_fxdependent'\n packageNamePattern: '**/*linux-x64-fxdependent.tar.gz'\n\n - template: /.pipelines/templates/release-validate-fxdpackages.yml@self\n parameters:\n jobName: 'linuxArm64fxd'\n displayName: 'Validate Linux ARM64 Fxd Packages'\n jobtype: 'linux'\n artifactName: 'drop_linux_package_fxdependent'\n # this is really an architecture independent package\n packageNamePattern: '**/*linux-x64-fxdependent.tar.gz'\n arm64: 'yes'\n enableCredScan: false\n\n - stage: validatePackages\n displayName: 'Validate Packages'\n dependsOn: []\n jobs:\n - template: /.pipelines/templates/release-validate-packagenames.yml@self\n\n - stage: ManualValidation\n dependsOn: []\n displayName: Manual Validation\n jobs:\n - template: /.pipelines/templates/approvalJob.yml@self\n parameters:\n displayName: Validate Windows Packages\n jobName: ValidateWinPkg\n instructions: |\n Validate zip package on windows\n\n - template: /.pipelines/templates/approvalJob.yml@self\n parameters:\n displayName: Validate OSX Packages\n jobName: ValidateOsxPkg\n instructions: |\n Validate tar.gz package on osx-arm64\n\n - stage: ReleaseAutomation\n dependsOn: []\n displayName: 'Release Automation'\n jobs:\n - template: /.pipelines/templates/approvalJob.yml@self\n parameters:\n displayName: Start Release Automation\n jobName: StartRA\n instructions: |\n Kick off Release automation build at: https://dev.azure.com/powershell-rel/Release-Automation/_build?definitionId=10&_a=summary\n\n - template: /.pipelines/templates/approvalJob.yml@self\n parameters:\n displayName: Triage results\n jobName: TriageRA\n dependsOnJob: StartRA\n instructions: |\n Triage ReleaseAutomation results\n\n - template: /.pipelines/templates/approvalJob.yml@self\n parameters:\n displayName: Signoff Tests\n dependsOnJob: TriageRA\n jobName: SignoffTests\n instructions: |\n Signoff ReleaseAutomation results\n\n - stage: UpdateChangeLog\n displayName: Update the changelog\n dependsOn:\n - ManualValidation\n - ReleaseAutomation\n - validatePackages\n - fxdpackages\n - gbltool\n - validateSdk\n - msixbundle\n\n jobs:\n - template: /.pipelines/templates/approvalJob.yml@self\n parameters:\n displayName: Make sure the changelog is updated\n jobName: MergeChangeLog\n instructions: |\n Update and merge the changelog for the release.\n This step is required for creating GitHub draft release.\n\n - stage: PublishGitHubReleaseAndNuget\n displayName: Publish GitHub and Nuget Release\n dependsOn: \n - setReleaseTagAndChangelog\n - UpdateChangeLog\n variables:\n ob_release_environment: Production\n jobs:\n - template: /.pipelines/templates/release-githubNuget.yml@self\n parameters:\n skipPublish: ${{ parameters.SkipPublish }}\n\n - stage: PushGitTagAndMakeDraftPublic\n displayName: Push Git Tag and Make Draft Public\n dependsOn: PublishGitHubReleaseAndNuget\n jobs:\n - template: /.pipelines/templates/approvalJob.yml@self\n parameters:\n displayName: Push Git Tag\n jobName: PushGitTag\n instructions: |\n Push the git tag to upstream \n \n - template: /.pipelines/templates/approvalJob.yml@self\n parameters:\n displayName: Make Draft Public\n dependsOnJob: PushGitTag\n jobName: DraftPublic\n instructions: |\n Make the GitHub Release Draft Public\n \n - stage: BlobPublic\n displayName: Make Blob Public\n dependsOn: \n - UpdateChangeLog\n - PushGitTagAndMakeDraftPublic\n jobs:\n - template: /.pipelines/templates/release-MakeBlobPublic.yml@self\n parameters:\n SkipPSInfraInstallers: ${{ parameters.SkipPSInfraInstallers }}\n\n - stage: PublishPMC\n displayName: Publish PMC\n dependsOn: PushGitTagAndMakeDraftPublic\n jobs:\n - template: /.pipelines/templates/approvalJob.yml@self\n parameters:\n displayName: Publish to PMC\n jobName: ReleaseToPMC\n instructions: |\n Run PowerShell-Release-Official-Azure.yml pipeline to publish to PMC\n\n - stage: ReleaseDocker\n dependsOn: PushGitTagAndMakeDraftPublic\n displayName: 'Docker Release'\n jobs:\n - template: /.pipelines/templates/approvalJob.yml@self\n parameters:\n displayName: Start Docker Release\n jobName: StartDockerRelease\n instructions: |\n Kickoff docker release\n\n - stage: UpdateDotnetDocker\n dependsOn: PushGitTagAndMakeDraftPublic\n displayName: Update DotNet SDK Docker images\n jobs:\n - template: /.pipelines/templates/approvalJob.yml@self\n parameters:\n displayName: Update .NET SDK docker images\n jobName: DotnetDocker\n instructions: |\n Create PR for updating dotnet-docker images to use latest PowerShell version.\n 1. Fork and clone https://github.com/dotnet/dotnet-docker.git\n 2. git checkout upstream/nightly -b updatePS\n 3. dotnet run --project .\eng\update-dependencies\ -- <dotnetversion> --product-version powershell=<powershellversion> --compute-shas\n 4. create PR targeting nightly branch\n\n - stage: UpdateWinGet\n dependsOn: PushGitTagAndMakeDraftPublic\n displayName: Add manifest entry to winget\n jobs:\n - template: /.pipelines/templates/approvalJob.yml@self\n parameters:\n displayName: Add manifest entry to winget\n jobName: UpdateWinGet\n instructions: |\n This is typically done by the community 1-2 days after the release.\n\n - stage: PublishMsix\n dependsOn: PushGitTagAndMakeDraftPublic\n displayName: Publish MSIX to store\n jobs:\n - template: /.pipelines/templates/approvalJob.yml@self\n parameters:\n displayName: Publish the MSIX Bundle package to store\n jobName: PublishMsix\n instructions: |\n Ask Steve to release MSIX bundle package to Store\n\n - stage: PublishVPack\n dependsOn: PushGitTagAndMakeDraftPublic\n displayName: Release vPack\n jobs:\n - template: /.pipelines/templates/approvalJob.yml@self\n parameters:\n displayName: Start vPack Release pipeline\n jobName: PublishVPack\n instructions: |\n Kick off vPack release pipeline\n\n # Need to verify if the Az PS / CLI team still uses this. Skippinng for this release.\n # - stage: ReleaseDeps\n # dependsOn: GitHubTasks\n # displayName: Update pwsh.deps.json links\n # jobs:\n # - template: templates/release-UpdateDepsJson.yml\n\n - stage: UploadBuildInfoJson\n dependsOn: PushGitTagAndMakeDraftPublic\n displayName: Upload BuildInfo.json\n jobs:\n - template: /.pipelines/templates/release-upload-buildinfo.yml@self\n\n - stage: ReleaseSymbols\n dependsOn: PushGitTagAndMakeDraftPublic\n displayName: Release Symbols\n jobs:\n - template: /.pipelines/templates/release-symbols.yml@self\n\n - stage: ChangesToMaster\n displayName: Ensure changes are in GH master\n dependsOn: \n - PublishPMC\n jobs:\n - template: /.pipelines/templates/approvalJob.yml@self\n parameters:\n displayName: Make sure changes are in master\n jobName: MergeToMaster\n instructions: |\n Make sure that changes README.md and metadata.json are merged into master on GitHub.\n\n - stage: ReleaseToMU\n displayName: Release to MU\n dependsOn: PushGitTagAndMakeDraftPublic # This only needs the blob to be available\n jobs:\n - template: /.pipelines/templates/approvalJob.yml@self\n parameters:\n displayName: Release to MU\n instructions: |\n Notify the PM team to start the process of releasing to MU.\n\n - stage: ReleaseClose\n displayName: Finish Release\n dependsOn: \n - ReleaseToMU\n - ReleaseSymbols\n jobs:\n - template: /.pipelines/templates/approvalJob.yml@self\n parameters:\n displayName: Retain Build\n jobName: RetainBuild\n instructions: |\n Retain the build\n\n - template: /.pipelines/templates/approvalJob.yml@self\n parameters:\n displayName: Delete release branch\n jobName: DeleteBranch\n instructions: |\n Delete release\n
dataset_sample\yaml\csharp\PowerShell-Release-Official.yml
PowerShell-Release-Official.yml
YAML
15,083
0.95
0.011013
0.024331
node-utils
188
2025-02-22T23:46:04.387017
BSD-3-Clause
false
b9439d794b99f09a4dbf2dec2ebca6b7
trigger: none\n\nparameters: # parameters are shown up in ADO UI in a build queue time\n- name: 'createVPack'\n displayName: 'Create and Submit VPack'\n type: boolean\n default: true\n- name: 'debug'\n displayName: 'Enable debug output'\n type: boolean\n default: false\n- name: 'architecture'\n type: string\n displayName: 'Select the vpack architecture:'\n values:\n - x64\n - x86\n - arm64\n default: x64\n- name: 'VPackPublishOverride'\n type: string\n displayName: 'VPack Publish Override Version (can leave blank):'\n default: ' '\n- name: 'ReleaseTagVar'\n type: string\n displayName: 'Release Tag Var:'\n default: 'fromBranch'\n\nname: vPack_${{ parameters.architecture }}_$(date:yyMM).$(date:dd)$(rev:rrr)\n\nvariables:\n - name: CDP_DEFINITION_BUILD_COUNT\n value: $[counter('', 0)]\n - name: system.debug\n value: ${{ parameters.debug }}\n - name: BuildSolution\n value: $(Build.SourcesDirectory)\dirs.proj\n - name: BuildConfiguration\n value: Release\n - name: WindowsContainerImage\n value: 'onebranch.azurecr.io/windows/ltsc2019/vse2022:latest'\n - name: Codeql.Enabled\n value: false # pipeline is not building artifacts; it repackages existing artifacts into a vpack\n - name: DOTNET_CLI_TELEMETRY_OPTOUT\n value: 1\n - name: POWERSHELL_TELEMETRY_OPTOUT\n value: 1\n - name: nugetMultiFeedWarnLevel\n value: none\n - name: ReleaseTagVar\n value: ${{ parameters.ReleaseTagVar }}\n - group: Azure Blob variable group\n - group: certificate_logical_to_actual # used within signing task\n\nresources:\n repositories:\n - repository: templates\n type: git\n name: OneBranch.Pipelines/GovernedTemplates\n ref: refs/heads/main\n\n pipelines:\n - pipeline: PSPackagesOfficial\n source: 'PowerShell-Packages-Official'\n trigger:\n branches:\n include:\n - master\n - releases/*\n\nextends:\n template: v2/Microsoft.Official.yml@templates\n parameters:\n platform:\n name: 'windows_undocked' # windows undocked\n\n cloudvault:\n enabled: false\n\n globalSdl:\n useCustomPolicy: true # for signing code\n disableLegacyManifest: true\n # disabled Armory as we dont have any ARM templates to scan. It fails on some sample ARM templates.\n armory:\n enabled: false\n sbom:\n enabled: true\n compiled:\n enabled: false\n credscan:\n enabled: true\n scanFolder: $(Build.SourcesDirectory)\n suppressionsFile: $(Build.SourcesDirectory)\.config\suppress.json\n binskim:\n enabled: false\n # APIScan requires a non-Ready-To-Run build\n apiscan:\n enabled: false\n asyncSDL:\n enabled: false\n tsaOptionsFile: .config/tsaoptions.json\n stages:\n - stage: main\n jobs:\n - job: main\n pool:\n type: windows\n\n variables:\n ob_outputDirectory: '$(BUILD.SOURCESDIRECTORY)\out'\n ob_createvpack_enabled: ${{ parameters.createVPack }}\n ob_createvpack_packagename: 'PowerShell.${{ parameters.architecture }}'\n ob_createvpack_description: PowerShell ${{ parameters.architecture }} $(version)\n ob_createvpack_owneralias: tplunk\n ob_createvpack_versionAs: string\n ob_createvpack_version: '$(version)'\n ob_createvpack_propsFile: true\n ob_createvpack_verbose: true\n\n steps:\n - template: tools/releaseBuild/azureDevOps/templates/SetVersionVariables.yml@self\n parameters:\n ReleaseTagVar: $(ReleaseTagVar)\n CreateJson: yes\n UseJson: no\n\n - pwsh: |\n if($env:RELEASETAGVAR -match '-') {\n throw "Don't release a preview build without coordinating with Windows Engineering Build Tools Team"\n }\n displayName: Stop any preview release\n\n - task: UseDotNet@2\n displayName: 'Use .NET Core sdk'\n inputs:\n packageType: sdk\n version: 3.1.x\n installationPath: $(Agent.ToolsDirectory)/dotnet\n\n - pwsh: |\n $packageArtifactName = 'drop_windows_package_package_win_${{ parameters.architecture }}'\n $vstsCommandString = "vso[task.setvariable variable=PackageArtifactName]$packageArtifactName"\n Write-Host "sending " + $vstsCommandString\n Write-Host "##$vstsCommandString"\n\n $packageArtifactPath = '$(Pipeline.Workspace)\PSPackagesOfficial'\n $vstsCommandString = "vso[task.setvariable variable=PackageArtifactPath]$packageArtifactPath"\n Write-Host "sending " + $vstsCommandString\n Write-Host "##$vstsCommandString"\n displayName: 'Set package artifact variables'\n\n - download: PSPackagesOfficial\n artifact: $(PackageArtifactName)\n displayName: Download package\n\n - pwsh: 'Get-ChildItem $(PackageArtifactPath)\* -recurse | Select-Object -ExpandProperty Name'\n displayName: 'Capture Artifact Listing'\n\n - pwsh: |\n $message = @()\n $packages = Get-ChildItem $(PackageArtifactPath)\* -recurse -include *.zip, *.msi\n\n if($packages.count -eq 0) {throw "No packages found in $(PackageArtifactPath)"}\n\n $packages | ForEach-Object {\n if($_.Name -notmatch 'PowerShell-\d+\.\d+\.\d+\-([a-z]*.\d+\-)?win\-(fxdependent|x64|arm64|x86|fxdependentWinDesktop)\.(msi|zip){1}')\n {\n $messageInstance = "$($_.Name) is not a valid package name"\n $message += $messageInstance\n Write-Warning $messageInstance\n }\n }\n\n if($message.count -gt 0){throw ($message | out-string)}\n displayName: 'Validate Zip and MSI Package Names'\n\n - pwsh: |\n Get-ChildItem $(PackageArtifactPath)\* -recurse -include *.zip | ForEach-Object {\n if($_.Name -match 'PowerShell-\d+\.\d+\.\d+\-([a-z]*.\d+\-)?win\-(${{ parameters.architecture }})\.(zip){1}')\n {\n Expand-Archive -Path $_.FullName -DestinationPath $(ob_outputDirectory)\n }\n }\n displayName: 'Extract Zip to ob_outputDirectory'\n\n - pwsh: |\n Write-Verbose "VPack Version: $(ob_createvpack_version)" -Verbose\n Get-ChildItem -Path $(ob_outputDirectory)\* -Recurse\n Get-Content $(ob_outputdirectory)\preview.json -ErrorAction SilentlyContinue | Write-Host\n displayName: Debug Output Directory and Version\n condition: succeededOrFailed()\n\n - pwsh: |\n Write-Host "Using VPackPublishOverride variable"\n $vpackVersion = '${{ parameters.VPackPublishOverride }}'\n $vstsCommandString = "vso[task.setvariable variable=ob_createvpack_version]$vpackVersion"\n Write-Host "sending " + $vstsCommandString\n Write-Host "##$vstsCommandString"\n condition: ne('${{ parameters.VPackPublishOverride }}', ' ')\n displayName: 'Set ob_createvpack_version with VPackPublishOverride'\n\n - pwsh: |\n Get-ChildItem -Path env: | Out-String -width 9999 -Stream | write-Verbose -Verbose\n displayName: Capture Environment\n condition: succeededOrFailed()\n\n - pwsh: |\n Write-Verbose "VPack Version: $(ob_createvpack_version)" -Verbose\n $vpackFiles = Get-ChildItem -Path $(ob_outputDirectory)\* -Recurse\n if($vpackFiles.Count -eq 0) {\n throw "No files found in $(ob_outputDirectory)"\n }\n $vpackFiles\n displayName: Debug Output Directory and Version\n condition: succeededOrFailed()\n\n - task: onebranch.pipeline.signing@1\n displayName: 'Onebranch Signing'\n inputs:\n command: 'sign'\n signing_environment: 'azure-ado'\n cp_code: $(windows_build_tools_cert_id)\n files_to_sign: '**/*.exe;**/System.Management.Automation.dll'\n search_root: $(ob_outputDirectory)\n
dataset_sample\yaml\csharp\PowerShell-vPack-Official.yml
PowerShell-vPack-Official.yml
YAML
8,209
0.95
0.03125
0.010101
react-lib
31
2024-08-28T21:44:49.137859
GPL-3.0
false
17742fcefc48754b8cfe58811576b064
# The bot always updates the labels, add/remove as necessary [default: false]\nalwaysReplace: false\n# Treats the text and labels as case sensitive [default: true]\ncaseSensitive: false\n# Array of labels to be applied to the PR [default: []]\ncustomLabels:\n # Finds the `text` within the PR title and body and applies the `label`\n - text: 'bug'\n label: 'bug'\n - text: 'fix'\n label: 'bug'\n - text: 'dependabot'\n label: 'bug'\n - text: 'New Crowdin updates'\n label: 'bug'\n - text: 'New Crowdin updates'\n label: 'kind/i18n'\n - text: 'feature'\n label: 'enhancement'\n - text: 'add new'\n label: 'enhancement'\n - text: 'refactor'\n label: 'enhancement'\n - text: 'refactor'\n label: 'Code Refactor'\n# Search the body of the PR for the `text` [default: true]\nsearchBody: true\n# Search the title of the PR for the `text` [default: true]\nsearchTitle: true\n# Search for whole words only [default: false]\nwholeWords: false\n
dataset_sample\yaml\csharp\pr-labeler.yml
pr-labeler.yml
YAML
940
0.8
0.096774
0.225806
python-kit
170
2024-06-08T15:17:37.008607
MIT
false
b7616ebedbbd49e38aba548e249c912d
version: '1.1.0'\ninvalidStatus: "pending"\nlabelRule:\n values:\n - "bug"\n - "feature"\n - "enhancement"\n - "area-infrastructure"\n
dataset_sample\yaml\csharp\pr_labels.yml
pr_labels.yml
YAML
139
0.7
0
0
awesome-app
173
2024-06-08T19:20:43.460620
BSD-3-Clause
false
909ae5d58114b7333606326f575e1bf9
# Copyright (c) Microsoft Corporation.\n# Licensed under the MIT License.\n\nname: PR-$(System.PullRequest.PullRequestNumber)-$(Date:yyyyMMdd)$(Rev:.rr)\ntrigger:\n # Batch merge builds together while a merge build is running\n batch: true\n branches:\n include:\n - master\n - release*\n - feature*\n paths:\n include:\n - '*'\n exclude:\n - .vsts-ci/misc-analysis.yml\n - .github/ISSUE_TEMPLATE/*\n - .github/workflows/*\n - .dependabot/config.yml\n - test/perf/*\n - .pipelines/*\npr:\n branches:\n include:\n - master\n - release*\n - feature*\n paths:\n include:\n - '*'\n exclude:\n - .dependabot/config.yml\n - .github/ISSUE_TEMPLATE/*\n - .github/workflows/*\n - .vsts-ci/misc-analysis.yml\n - tools/cgmanifest.json\n - LICENSE.txt\n - test/common/markdown/*\n - test/perf/*\n - tools/packaging/*\n - tools/releaseBuild/*\n - tools/releaseBuild/azureDevOps/templates/*\n - README.md\n - .spelling\n - .pipelines/*\n\nvariables:\n GIT_CONFIG_PARAMETERS: "'core.autocrlf=false'"\n DOTNET_CLI_TELEMETRY_OPTOUT: 1\n POWERSHELL_TELEMETRY_OPTOUT: 1\n # Avoid expensive initialization of dotnet cli, see: https://donovanbrown.com/post/Stop-wasting-time-during-NET-Core-builds\n DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1\n __SuppressAnsiEscapeSequences: 1\n NugetSecurityAnalysisWarningLevel: none\n nugetMultiFeedWarnLevel: none\n\nresources:\n- repo: self\n clean: true\n\nstages:\n- stage: BuildWin\n displayName: Build for Windows\n jobs:\n - template: templates/ci-build.yml\n\n- stage: TestWin\n displayName: Test PSResourceGetACR\n jobs:\n - job: win_test_ACR\n displayName: PSResourceGet ACR Tests\n pool:\n vmImage: 'windows-latest'\n\n steps:\n - pwsh: |\n Get-ChildItem -Path env:\n displayName: Capture Environment\n condition: succeededOrFailed()\n\n - task: DownloadBuildArtifacts@0\n displayName: 'Download Build Artifacts'\n inputs:\n downloadType: specific\n itemPattern: |\n build/**/*\n downloadPath: '$(System.ArtifactsDirectory)'\n\n - pwsh: |\n Get-ChildItem "$(System.ArtifactsDirectory)\*" -Recurse\n displayName: 'Capture Artifacts Directory'\n continueOnError: true\n\n - pwsh: |\n # Remove "Program Files\dotnet" from the env variable PATH, so old SDKs won't affect us.\n Write-Host "Old Path:"\n Write-Host $env:Path\n\n $dotnetPath = Join-Path $env:SystemDrive 'Program Files\dotnet'\n $paths = $env:Path -split ";" | Where-Object { -not $_.StartsWith($dotnetPath) }\n $env:Path = $paths -join ";"\n\n Write-Host "New Path:"\n Write-Host $env:Path\n\n # Bootstrap\n Import-Module .\tools\ci.psm1\n Invoke-CIInstall\n displayName: Bootstrap\n\n - pwsh: |\n Install-Module -Name 'Microsoft.PowerShell.SecretManagement' -force -SkipPublisherCheck -AllowClobber\n Install-Module -Name 'Microsoft.PowerShell.SecretStore' -force -SkipPublisherCheck -AllowClobber\n $vaultPassword = ConvertTo-SecureString $("a!!"+ (Get-Random -Maximum ([int]::MaxValue))) -AsPlainText -Force\n Set-SecretStoreConfiguration -Authentication None -Interaction None -Confirm:$false -Password $vaultPassword\n Register-SecretVault -Name SecretStore -ModuleName Microsoft.PowerShell.SecretStore -DefaultVault\n displayName: 'Install Secret store'\n\n - task: AzurePowerShell@5\n inputs:\n azureSubscription: PSResourceGetACR\n azurePowerShellVersion: LatestVersion\n ScriptType: InlineScript\n pwsh: true\n inline: |\n Write-Verbose -Verbose "Getting Azure Container Registry"\n Get-AzContainerRegistry -ResourceGroupName 'PSResourceGet' -Name 'psresourcegettest' | Select-Object -Property *\n Write-Verbose -Verbose "Setting up secret for Azure Container Registry"\n $azt = Get-AzAccessToken\n $tenantId = $azt.TenantID\n Set-Secret -Name $tenantId -Secret $azt.Token -Verbose\n $vstsCommandString = "vso[task.setvariable variable=TenantId]$tenantId"\n Write-Host "sending " + $vstsCommandString\n Write-Host "##$vstsCommandString"\n displayName: 'Setup Azure Container Registry secret'\n\n - pwsh: |\n Import-Module .\build.psm1 -force\n Import-Module .\tools\ci.psm1\n Restore-PSOptions -PSOptionsPath '$(System.ArtifactsDirectory)\build\psoptions.json'\n $options = (Get-PSOptions)\n $path = split-path -path $options.Output\n $rootPath = split-Path -path $path\n Expand-Archive -Path '$(System.ArtifactsDirectory)\build\build.zip' -DestinationPath $rootPath -Force\n\n $pwshExe = Get-ChildItem -Path $rootPath -Recurse -Filter pwsh.exe | Select-Object -First 1\n\n $outputFilePath = "$(Build.SourcesDirectory)\test\powershell\Modules\Microsoft.PowerShell.PSResourceGet\ACRTests.xml"\n $cmdline = "`$env:ACRTESTS = 'true'; Invoke-Pester -Path '$(Build.SourcesDirectory)\test\powershell\Modules\Microsoft.PowerShell.PSResourceGet\Microsoft.PowerShell.PSResourceGet.Tests.ps1' -TestName 'PSResourceGet - ACR tests' -OutputFile $outputFilePath -OutputFormat NUnitXml"\n Write-Verbose -Verbose "Running $cmdline"\n\n & $pwshExe -Command $cmdline\n\n Publish-TestResults -Title "PSResourceGet - ACR tests" -Path $outputFilePath -Type NUnit\n displayName: 'PSResourceGet ACR functional tests using AzAuth'\n\n
dataset_sample\yaml\csharp\psresourceget-acr.yml
psresourceget-acr.yml
YAML
5,421
0.95
0.019108
0.043796
node-utils
663
2024-09-24T04:34:47.308409
Apache-2.0
false
6636eb39f3b8032d3ef4d24f6a910c46
pr:\n branches:\n include:\n - main\n - feature/*\n - hotfix/*\n - release/*\n - pipelinev3*\n paths:\n include:\n - "*"\n\n exclude:\n - eng/packages/http-client-csharp/\n\nparameters:\n - name: Service\n type: string\n default: auto\n\nextends:\n template: /eng/pipelines/templates/stages/archetype-sdk-client.yml\n parameters:\n ServiceDirectory: ${{ parameters.Service }}\n CheckAOTCompat: true\n BuildSnippets: true\n ExcludePaths:\n - eng/packages/http-client-csharp/\n
dataset_sample\yaml\csharp\pullrequest.yml
pullrequest.yml
YAML
505
0.8
0
0
awesome-app
69
2024-06-01T03:09:32.191022
MIT
false
485b301e61eda533a12da3afc1028c2e
merges:\n - action: delete_branch\nlabels:\n 'needs info':\n action: close\n delay: 7 days\n comment: "Please add the requested info, so we could help you better! (This issue will be closed in 7 days)"\n
dataset_sample\yaml\csharp\ranger.yml
ranger.yml
YAML
207
0.7
0
0
python-kit
14
2025-01-14T11:13:46.257297
GPL-3.0
false
2b1a4458f90b71e9df320ce61309c8be
changelog:\n exclude:\n authors:\n - Weblate\n - SonarrBot\n categories:\n - title: Changes\n labels:\n - '*'\n
dataset_sample\yaml\csharp\release.yml
release.yml
YAML
133
0.7
0
0
vue-tools
350
2025-04-08T08:30:12.666879
MIT
false
c850893112d62a26b90c5ded8b638ef6
#csharp:\n# name: Sonarqube Scan for ml-agents python repo\n# agent:\n# type: Unity::metal::macmini\n# image: package-ci/mac:v1.8.1-822785\n# flavor: m1.mac\n# variables:\n# SONARQUBE_PROJECT_KEY: ai-ml-agents-toolkit\n# TARGET_BRANCH: develop\n# commands:\n# - npm install shellcheck --save-dev\n# - npm install upm-ci-utils@1.27.0 -g --registry https://artifactory.prd.it.unity3d.com/artifactory/api/npm/upm-npm\n# - curl https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-4.7.0.2747-macosx.zip -o sonar-scanner-cli-macosx.zip -L\n# - unzip sonar-scanner-cli-macosx.zip -d ~/sonar-scanner-cli\n# - ~/sonar-scanner-cli/sonar-scanner-4.7.0.2747-macosx/bin/sonar-scanner -Dsonar.projectKey=$SONARQUBE_PROJECT_KEY -Dsonar.sources=ml-agents-env -Dsonar.sources=ml-agents -Dsonar.sources=ml-agents-plugin-examples -Dsonar.sources=ml-agents-trainer-plugin -Dsonar.sources=utils -Dsonar.host.url=$SONARQUBE_URL -Dsonar.login=$SONARQUBE_TOKEN -Dsonar.branch.name=$TARGET_BRANCH -Dsonar.scm.provider=git\n# triggers:\n# cancel_old_ci: true\n# expression: |\n# ((pull_request.target eq "main" OR pull_request.target eq "develop" OR pull_request.target match "release.+")\n# AND NOT pull_request.push.changes.all match "**/*.md") OR\n# (push.branch eq "main" OR push.branch eq "develop")\n
dataset_sample\yaml\csharp\sonar-python-package.yml
sonar-python-package.yml
YAML
1,345
0.8
0.047619
1
python-kit
210
2023-09-22T22:04:43.713186
MIT
false
85c4f76aeb626888e8332a35411cb213
# Configuration for probot-stale - https://github.com/probot/stale\n\n# General configuration\n# Label to use when marking as stale\nstaleLabel: stale\n\n# Only run on issues\nonly: issues\n\n# Issue specific configuration\nissues:\n limitPerRun: 5\n daysUntilStale: 90\n daysUntilClose: 30\n markComment: >\n This issue has been automatically marked as stale because it has not had activity in the\n last 90 days. It will be closed in the next 30 days if no further activity occurs.\n Thank you for your contributions.\n closeComment: >\n This issue has been automatically closed because it has not had activity in the\n last 120 days. If this issue is still valid, please ping a maintainer.\n Thank you for your contributions.\n exemptLabels:\n - request\n - help-wanted\n - announcement\n
dataset_sample\yaml\csharp\stale.yml
stale.yml
YAML
798
0.8
0.153846
0.217391
awesome-app
410
2024-04-10T22:00:29.216962
Apache-2.0
false
99f4f7c454ccd547c548754aab0f69b2
# Configuration for Support Requests - https://github.com/dessant/support-requests\n\n# Label used to mark issues as support requests\nsupportLabel: support\n\n# Comment to post on issues marked as support requests, `{issue-author}` is an\n# optional placeholder. Set to `false` to disable\nsupportComment: >\n :wave: @{issue-author}, we use the issue tracker exclusively for bug reports\n and feature requests. However, this issue appears to be a support request.\n Please use our support channels to get help with the project.\n <br/>\n If you have a question, ask it on [StackOverflow](http://stackoverflow.com/questions/tagged/cefsharp) or use [ceforum](http://magpcss.org/ceforum/) (for questions specific to `CEF`).\n <br/>\n If you are new to `CefSharp` then we suggest you read https://github.com/cefsharp/CefSharp/wiki/General-Usage\n <br/>\n If you feel this was closed in error then you **must** edit your original issue and complete the [Bug Report Template](https://github.com/cefsharp/CefSharp/blob/master/.github/ISSUE_TEMPLATE/bug_report.md#bug-report)\n then post a comment asking for a review.\n\n# Close issues marked as support requests\nclose: true\n\n# Lock issues marked as support requests\nlock: false\n\n# Assign `off-topic` as the reason for locking. Set to `false` to disable\nsetLockReason: false\n
dataset_sample\yaml\csharp\support.yml
support.yml
YAML
1,310
0.8
0.185185
0.318182
vue-tools
927
2023-09-04T23:03:21.947992
Apache-2.0
false
f2b4aa3e0279092a63643216fc1017cd
# Configuration for top-issue-bot - https://github.com/adamzolyak/gh-vote-bot\nlabelName: "triage/most-wanted"\nlabelColor: "#BB8FCE"\nnumberOfIssuesToLabel: 30\n
dataset_sample\yaml\csharp\topissuebot.yml
topissuebot.yml
YAML
158
0.8
0.25
0.25
react-lib
40
2023-08-13T04:45:04.238905
MIT
false
9279a34613b2de8187d6136d56a7146c
git:\n\n filters:\n - filter_type: file\n # all supported i18n types: https://docs.transifex.com/formats\n file_format: XLIFF\n source_language: en\n source_file: GitUI/Translation/English.xlf\n # path expression to translation files, must contain <lang> placeholder\n translation_files_expression: 'src/app/GitUI/Translation/<lang>.xlf'\n\n - filter_type: file\n # all supported i18n types: https://docs.transifex.com/formats\n file_format: XLIFF\n source_language: en\n source_file: src/app/GitUI/Translation/English.Plugins.xlf\n # path expression to translation files, must contain <lang> placeholder\n translation_files_expression: 'src/app/GitUI/Translation/<lang>.Plugins.xlf'\n\n settings:\n language_mapping:\n cs: Czech\n de: German\n es: Spanish\n es_AR: Spanish (Argentina)\n fr: French\n id: Indonesian\n it: Italian\n ja: Japanese\n ko: Korean\n lv: Latvian\n nl: Dutch\n pl: Polish\n pt: Portuguese\n pt_BR: Portuguese (Brazil)\n ro: Romanian\n ru: Russian\n tr: Turkish\n zh-Hans: Simplified Chinese\n zh-Hant: Traditional Chinese
dataset_sample\yaml\csharp\transifex.yml
transifex.yml
YAML
1,173
0.8
0
0.108108
vue-tools
45
2024-12-18T16:51:48.863841
BSD-3-Clause
false
cb0b91c9e08efd67952e3878b6e89e5d
name: PR-$(System.PullRequest.PullRequestNumber)-$(Date:yyyyMMdd)$(Rev:.rr)\ntrigger:\n # Batch merge builds together while a merge build is running\n batch: true\n branches:\n include:\n - master\n - release*\n - feature*\n paths:\n include:\n - '*'\n exclude:\n - .vsts-ci/misc-analysis.yml\n - .github/ISSUE_TEMPLATE/*\n - .dependabot/config.yml\n - test/perf/*\npr:\n branches:\n include:\n - master\n - release*\n - feature*\n paths:\n include:\n - '*'\n exclude:\n - .dependabot/config.yml\n - .github/ISSUE_TEMPLATE/*\n - .vsts-ci/misc-analysis.yml\n - tools/cgmanifest.json\n - LICENSE.txt\n - test/common/markdown/*\n - test/perf/*\n - tools/packaging/*\n - tools/releaseBuild/*\n - tools/releaseBuild/azureDevOps/templates/*\n - README.md\n - .spelling\n\nvariables:\n - name: GIT_CONFIG_PARAMETERS\n value: "'core.autocrlf=false'"\n - name: DOTNET_CLI_TELEMETRY_OPTOUT\n value: 1\n - name: POWERSHELL_TELEMETRY_OPTOUT\n value: 1\n # Avoid expensive initialization of dotnet cli, see: https://donovanbrown.com/post/Stop-wasting-time-during-NET-Core-builds\n - name: DOTNET_SKIP_FIRST_TIME_EXPERIENCE\n value: 1\n - name: __SuppressAnsiEscapeSequences\n value: 1\n - group: PoolNames\n\nresources:\n- repo: self\n clean: true\n\nstages:\n- stage: BuildWin\n displayName: Build for Windows\n jobs:\n - template: templates/ci-build.yml\n parameters:\n pool: $(armPool)\n PoolType: 1esHosted\n\n- stage: TestWin\n displayName: Test for Windows\n jobs:\n - template: templates/windows-test.yml\n parameters:\n purpose: UnelevatedPesterTests\n tagSet: CI\n pool: $(armPool)\n\n - template: templates/windows-test.yml\n parameters:\n purpose: ElevatedPesterTests\n tagSet: CI\n pool: $(armPool)\n\n - template: templates/windows-test.yml\n parameters:\n purpose: UnelevatedPesterTests\n tagSet: Others\n pool: $(armPool)\n\n - template: templates/windows-test.yml\n parameters:\n purpose: ElevatedPesterTests\n tagSet: Others\n pool: $(armPool)\n\n - template: templates/verify-xunit.yml\n
dataset_sample\yaml\csharp\windows-arm64.yml
windows-arm64.yml
YAML
2,111
0.8
0.031579
0.022989
python-kit
114
2023-08-08T13:19:21.964390
Apache-2.0
false
4ead2239f9ccfed2b4a4c8686e8a5b58
name: PR-$(System.PullRequest.PullRequestNumber)-$(Date:yyyyMMdd)$(Rev:.rr)\ntrigger:\n # Batch merge builds together while a merge build is running\n batch: true\n branches:\n include:\n - master\n - release*\n - feature*\n paths:\n include:\n - '*'\n exclude:\n - /.vsts-ci/misc-analysis.yml\n - /.github/ISSUE_TEMPLATE/*\n - /.dependabot/config.yml\npr:\n branches:\n include:\n - master\n - release*\n - feature*\n paths:\n include:\n - '*'\n exclude:\n - /.vsts-ci/misc-analysis.yml\n - /.github/ISSUE_TEMPLATE/*\n - /.dependabot/config.yml\n\nvariables:\n GIT_CONFIG_PARAMETERS: "'core.autocrlf=false'"\n DOTNET_CLI_TELEMETRY_OPTOUT: 1\n POWERSHELL_TELEMETRY_OPTOUT: 1\n # Avoid expensive initialization of dotnet cli, see: https://donovanbrown.com/post/Stop-wasting-time-during-NET-Core-builds\n DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1\n __SuppressAnsiEscapeSequences: 1\n\nresources:\n- repo: self\n clean: true\n\nstages:\n- stage: BuildWin\n displayName: Build for Windows\n jobs:\n - template: templates/ci-build.yml\n\n- stage: TestWin\n displayName: Test for Windows\n jobs:\n - job: win_test\n pool:\n vmImage: windows-2019\n displayName: Windows Test\n timeoutInMinutes: 90\n\n steps:\n - pwsh: |\n Get-ChildItem -Path env: | Out-String -width 9999 -Stream | write-Verbose -Verbose\n displayName: 'Capture Environment'\n condition: succeededOrFailed()\n\n - task: DownloadBuildArtifacts@0\n displayName: 'Download Build Artifacts'\n inputs:\n downloadType: specific\n itemPattern: |\n build/**/*\n xunit/**/*\n downloadPath: '$(System.ArtifactsDirectory)'\n\n - pwsh: |\n Get-ChildItem "$(System.ArtifactsDirectory)\*" -Recurse\n displayName: 'Capture Artifacts Directory'\n continueOnError: true\n\n # must be run frow Windows PowerShell\n - powershell: |\n # Remove "Program Files\dotnet" from the env variable PATH, so old SDKs won't affect us.\n Write-Host "Old Path:"\n Write-Host $env:Path\n\n $dotnetPath = Join-Path $env:SystemDrive 'Program Files\dotnet'\n $paths = $env:Path -split ";" | Where-Object { -not $_.StartsWith($dotnetPath) }\n $env:Path = $paths -join ";"\n\n Write-Host "New Path:"\n Write-Host $env:Path\n\n Import-Module .\tools\ci.psm1\n Invoke-CIInstall\n displayName: Bootstrap\n condition: succeededOrFailed()\n\n - task: UseDotNet@2\n displayName: 'Use .NET Core sdk'\n inputs:\n useGlobalJson: true\n packageType: 'sdk'\n workingDirectory: $(Build.SourcesDirectory)"\n\n - pwsh: |\n Import-Module .\build.psm1\n Restore-PSOptions -PSOptionsPath '$(System.ArtifactsDirectory)\build\psoptions.json'\n $path = Split-Path -Parent (Get-PSOutput -Options (Get-PSOptions))\n $rootPath = Split-Path -Path $path\n Expand-Archive -Path '$(System.ArtifactsDirectory)\build\build.zip' -DestinationPath $rootPath -Force\n displayName: 'Unzip Build'\n condition: succeeded()\n\n - pwsh: |\n Import-Module .\build.psm1\n Import-Module .\tools\ci.psm1\n Restore-PSOptions -PSOptionsPath '$(System.ArtifactsDirectory)\build\psoptions.json'\n Invoke-CITest -Purpose UnelevatedPesterTests -TagSet CI\n displayName: Test - UnelevatedPesterTests - CI\n condition: succeeded()\n\n - pwsh: |\n Import-Module .\build.psm1\n Import-Module .\tools\ci.psm1\n Restore-PSOptions -PSOptionsPath '$(System.ArtifactsDirectory)\build\psoptions.json'\n Invoke-CITest -Purpose ElevatedPesterTests -TagSet CI\n displayName: Test - ElevatedPesterTests - CI\n condition: succeededOrFailed()\n\n - pwsh: |\n Import-Module .\build.psm1\n Import-Module .\tools\ci.psm1\n Restore-PSOptions -PSOptionsPath '$(System.ArtifactsDirectory)\build\psoptions.json'\n Invoke-CITest -Purpose UnelevatedPesterTests -TagSet Others\n displayName: Test - UnelevatedPesterTests - Others\n condition: succeededOrFailed()\n\n - pwsh: |\n Import-Module .\build.psm1\n Import-Module .\tools\ci.psm1\n Restore-PSOptions -PSOptionsPath '$(System.ArtifactsDirectory)\build\psoptions.json'\n Invoke-CITest -Purpose ElevatedPesterTests -TagSet Others\n displayName: Test - ElevatedPesterTests - Others\n condition: succeededOrFailed()\n\n - pwsh: |\n Import-Module .\build.psm1\n $xUnitTestResultsFile = '$(System.ArtifactsDirectory)\xunit\xUnitTestResults.xml'\n Test-XUnitTestResults -TestResultsFile $xUnitTestResultsFile\n displayName: Verify xUnit Test Results\n condition: succeededOrFailed()\n
dataset_sample\yaml\csharp\windows-daily.yml
windows-daily.yml
YAML
4,682
0.8
0.020134
0.030534
react-lib
519
2025-05-14T20:39:58.519521
GPL-3.0
false
5ff2aba70775d0292023522824930562
name: PR-$(System.PullRequest.PullRequestNumber)-$(Date:yyyyMMdd)$(Rev:.rr)\ntrigger:\n # Batch merge builds together while a merge build is running\n batch: true\n branches:\n include:\n - master\n - release*\n - feature*\n paths:\n include:\n - '*'\n exclude:\n - .vsts-ci/misc-analysis.yml\n - .github/ISSUE_TEMPLATE/*\n - .github/workflows/*\n - .dependabot/config.yml\n - test/perf/*\n - .pipelines/*\npr:\n branches:\n include:\n - master\n - release*\n - feature*\n paths:\n include:\n - .vsts-ci/templates/*\n - .vsts-ci/windows.yml\n - '*.props'\n - build.psm1\n - src/*\n - test/*\n - tools/buildCommon/*\n - tools/ci.psm1\n - tools/WindowsCI.psm1\n exclude:\n - test/common/markdown/*\n - test/perf/*\n\nvariables:\n GIT_CONFIG_PARAMETERS: "'core.autocrlf=false'"\n DOTNET_CLI_TELEMETRY_OPTOUT: 1\n POWERSHELL_TELEMETRY_OPTOUT: 1\n # Avoid expensive initialization of dotnet cli, see: https://donovanbrown.com/post/Stop-wasting-time-during-NET-Core-builds\n DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1\n __SuppressAnsiEscapeSequences: 1\n NugetSecurityAnalysisWarningLevel: none\n nugetMultiFeedWarnLevel: none\n\nresources:\n- repo: self\n clean: true\n\nstages:\n- stage: BuildWin\n displayName: Build for Windows\n jobs:\n - template: templates/ci-build.yml\n\n- stage: TestWin\n displayName: Test for Windows\n jobs:\n - template: templates/windows-test.yml\n parameters:\n purpose: UnelevatedPesterTests\n tagSet: CI\n\n - template: templates/windows-test.yml\n parameters:\n purpose: ElevatedPesterTests\n tagSet: CI\n\n - template: templates/windows-test.yml\n parameters:\n purpose: UnelevatedPesterTests\n tagSet: Others\n\n - template: templates/windows-test.yml\n parameters:\n purpose: ElevatedPesterTests\n tagSet: Others\n\n - template: templates/verify-xunit.yml\n
dataset_sample\yaml\csharp\windows.yml
windows.yml
YAML
1,866
0.8
0.035714
0.026316
vue-tools
285
2023-07-18T02:17:13.494112
MIT
false
0a6cc567bdefbbfb7a5d6ebf508f8704
variables:\n- name: DefaultBuildPlatform\n value: 'any cpu'\n- name: ApkName\n value: AndroidControlGallery.AndroidControlGallery.apk\n- name: BuildVersion\n value: $[counter('nuget-counter-1', 2400)]\n- name: NUGET_VERSION\n value: 5.8.1\n- name: DOTNET_SKIP_FIRST_TIME_EXPERIENCE\n value: true\n- name: DOTNET_VERSION\n value: 5.0.102\n- name: signingCondition\n value: and(succeeded(), or(eq(variables['Sign'], 'true'), or(eq(variables['Build.SourceBranch'], 'refs/heads/main'), startsWith(variables['Build.SourceBranch'],'refs/tags/'))))\n- group: Xamarin-Secrets\n\nparameters:\n - name: VM_IMAGE_HOST\n type: object\n default:\n name: AzurePipelines-EO\n image: 1ESPT-Windows2019\n os: windows\n \n - name: PackPlatform\n type: object\n default:\n name: Windows\n artifact: nuget\n binariesArtifact: win_build\n apiscanArtifact: apiscan\n\n - name: Skip1ESComplianceTasks\n default: false\n\nresources:\n repositories:\n - repository: xamarin-templates\n type: github\n name: xamarin/yaml-templates\n endpoint: xamarin\n ref: refs/heads/main\n - repository: 1ESPipelineTemplates\n type: git\n name: 1ESPipelineTemplates/1ESPipelineTemplates\n ref: refs/tags/release\n\ntrigger:\n branches:\n include:\n - main\n - 5.*\n tags:\n include:\n - '*'\n paths:\n exclude:\n - README.md\n\npr:\n autoCancel: false\n branches:\n include:\n - main\n - 5.*\n\nschedules:\n- cron: "0 0 * * *"\n displayName: Daily midnight build\n branches:\n include:\n - 5.0.0\n\nextends:\n template: v1/1ES.Official.PipelineTemplate.yml@1ESPipelineTemplates\n parameters:\n pool: ${{ parameters.VM_IMAGE_HOST }}\n sdl:\n ${{ if eq('${{ parameters.Skip1ESComplianceTasks }}', 'true') }}:\n enableAllTools: false\n binskim:\n scanOutputDirectoryOnly: true\n codeql:\n runSourceLanguagesInSourceAnalysis: true\n policheck:\n enabled: true\n spotBugs:\n enabled: false\n justification: 'Failing with "Could not successfully find the java tool launcher"'\n sourceRepositoriesToScan:\n exclude:\n - repository: yaml-templates\n suppression:\n suppressionFile: $(Build.SourcesDirectory)\build\automation\guardian\source.gdnsuppress\n stages:\n - stage: windows\n displayName: Build Windows\n jobs:\n - job: win_hosted\n workspace:\n clean: all\n displayName: ${{ parameters.PackPlatform.name }}\n timeoutInMinutes: 60\n pool: ${{ parameters.VM_IMAGE_HOST }}\n templateContext:\n outputs:\n - output: pipelineArtifact\n displayName: 'Publish the ${{ parameters.PackPlatform.binariesArtifact }} artifacts'\n artifactName: ${{ parameters.PackPlatform.binariesArtifact }}\n targetPath: '$(Build.ArtifactStagingDirectory)'\n - output: pipelineArtifact\n displayName: 'Publish the ${{ parameters.PackPlatform.apiscanArtifact }} artifacts'\n artifactName: ${{ parameters.PackPlatform.apiscanArtifact }}\n targetPath: '$(Build.ArtifactStagingDirectory)/${{ parameters.PackPlatform.apiscanArtifact }}'\n variables:\n BuildConfiguration: Release\n steps:\n - template: /build/steps/build-windows.yml@self\n parameters:\n provisionatorPath : 'build/provisioning/provisioning.csx'\n provisionatorVSPath : 'build/provisioning/vs.csx'\n runTests: false\n publishArtifacts: false\n binariesArtifact: ${{ parameters.PackPlatform.binariesArtifact }}\n artifact: ${{ parameters.PackPlatform.artifact }}\n artifactBinaries: ${{ parameters.PackPlatform.binariesArtifact }}\n artifactsTargetFolder: '$(Build.ArtifactStagingDirectory)'\n artifactApiscan: '${{ parameters.PackPlatform.apiscanArtifact }}'\n \n - job: nuget_pack_hosted\n workspace:\n clean: all\n displayName: Nuget Phase\n dependsOn:\n - win_hosted\n condition: succeeded()\n pool: ${{ parameters.VM_IMAGE_HOST }}\n templateContext:\n outputs: \n - output: pipelineArtifact\n displayName: 'Publish the ${{ parameters.PackPlatform.artifact }} artifacts'\n artifactName: ${{ parameters.PackPlatform.artifact }}\n targetPath: '$(Build.ArtifactStagingDirectory)/nuget/Release'\n variables:\n FormsIdAppend: ''\n buildConfiguration: Release\n nugetPackageVersion : $[ dependencies.win_hosted.outputs['winbuild.xamarinformspackageversion'] ]\n steps:\n - template: /build/steps/build-nuget.yml@self\n parameters:\n nugetForRelease : true\n nugetForDebug : false\n publishArtifacts: false\n artifact: ${{ parameters.PackPlatform.artifact }}\n binariesArtifact: ${{ parameters.PackPlatform.binariesArtifact }}\n artifactsTargetFolder: '$(build.artifactstagingdirectory)/${{ parameters.PackPlatform.artifact }}'\n\n - template: security/apiscan/v0.yml@xamarin-templates\n parameters:\n windowsPoolName: ${{ parameters.VM_IMAGE_HOST.name }}\n windowsImageOverride: ${{ parameters.VM_IMAGE_HOST.image }}\n stageDependsOn: 'windows'\n timeoutInMinutes: 600\n scanArtifacts: [ '${{ parameters.PackPlatform.artifact }}', '${{ parameters.PackPlatform.apiscanArtifact }}' ]\n sourceGdnSuppressionFile: '$(Build.SourcesDirectory)\build\automation\guardian\source.gdnsuppress'\n tsaConfigFile: '$(Build.SourcesDirectory)\build\automation\tsaoptions-v2.json'\n apiScanSoftwareName: 'Xamarin.Forms'\n apiScanSoftwareVersionNum: '5.0.0'\n \n - stage: nuget_signing\n dependsOn: windows\n displayName: Sign Nuget\n jobs:\n - template: sign-artifacts/jobs/v2.yml@xamarin-templates\n parameters:\n displayName: Sign Phase\n condition: ${{ variables.signingCondition }}\n use1ESTemplate: true\n usePipelineArtifactTasks: true\n
dataset_sample\yaml\csharp\xf-release.yml
xf-release.yml
YAML
6,440
0.7
0.005556
0
react-lib
214
2024-08-01T03:58:48.893218
BSD-3-Clause
false
f00639c6d1b4f1a1152878ec4129512b
### YamlMime:ZonePivotGroups\ngroups:\n- id: operating-systems\n title: Operating System\n prompt: Choose an operating system\n pivots:\n - id: windows\n title: Windows\n - id: linux-macos\n title: Linux / macOS\n- id: blazor-hosting-models\n title: Blazor Hosting Model\n prompt: Choose a Blazor hosting model\n pivots:\n - id: server\n title: Blazor Server\n - id: webassembly\n title: Blazor WebAssembly\n- id: blazor-hybrid-operating-systems\n title: Operating System\n prompt: Target operating system\n pivots:\n - id: android\n title: Android\n - id: ios\n title: iOS\n - id: macos\n title: macOS\n - id: windows\n title: Windows\n- id: blazor-hybrid-frameworks\n title: Framework\n prompt: Target framework\n pivots:\n - id: maui\n title: .NET MAUI\n - id: wpf\n title: WPF\n - id: winforms\n title: Windows Forms\n- id: blazor-graph-api\n title: Approach\n prompt: Choose an approach for interacting with Microsoft Graph\n pivots:\n - id: graph-sdk-4\n title: Graph SDK v4\n - id: graph-sdk-5\n title: Graph SDK v5\n - id: named-client-graph-api\n title: Named HttpClient with Graph API\n- id: blazor-multiple-hosted-wasm-apps\n title: Hosting approach\n prompt: Choose a hosting approach for the client apps\n pivots:\n - id: port-domain\n title: Port/domain hosting\n - id: route-subpath\n title: Route subpath hosting\n- id: blazor-render-modes\n title: Blazor Render Mode\n prompt: Choose a Blazor render mode\n pivots:\n - id: server\n title: Server\n - id: webassembly\n title: WebAssembly\n- id: blazor-app-models\n title: Blazor App Model\n prompt: Choose a Blazor app model\n pivots:\n - id: server\n title: Server\n - id: webassembly\n title: Blazor WebAssembly\n- id: blazor-groups-and-roles\n title: Approach\n prompt: Choose the Microsoft Graph SDK version\n pivots:\n - id: graph-sdk-4\n title: Graph SDK v4\n - id: graph-sdk-5\n title: Graph SDK v5\n- id: blazor-web-app-oidc-specification\n title: Specification\n prompt: Choose the app specification\n pivots:\n - id: non-bff-pattern\n title: Non-BFF pattern (Interactive Auto)\n - id: non-bff-pattern-server\n title: Non-BFF pattern (Interactive Server)\n - id: bff-pattern\n title: BFF pattern (Interactive Auto)\n- id: tooling\n title: Tooling\n prompt: Select your tooling\n pivots:\n - id: vs\n title: Visual Studio\n - id: vsc\n title: Visual Studio Code\n - id: cli\n title: .NET CLI\n- id: blazor-web-app-entra-specification\n title: Specification\n prompt: Choose the app specification\n pivots:\n - id: non-bff-pattern\n title: Non-BFF pattern\n - id: bff-pattern\n title: BFF pattern\n
dataset_sample\yaml\csharp\zone-pivot-groups.yml
zone-pivot-groups.yml
YAML
2,737
0.8
0.018182
0.009091
node-utils
955
2024-04-25T23:55:08.671449
Apache-2.0
false
a126f427f84322c64612db28c203a08c
theme: jekyll-theme-cayman\nshow_downloads: false\ntitle: CloudMoe Windows 10 Toolkit Digital Edition\ndescription: CloudMoe Windows 10 Acivation Toolkit get digital license, the best open source Win 10 activator in GitHub. <br>GitHub 上最棒的开源 Win10 数字权利(数字许可证)激活工具!\n# SEORelate\ngoogle_site_verification :\nbing_site_verification :\nalexa_site_verification :\nyandex_site_verification :\ntags: [Digital License, Windows 10 Acivation Toolkit, Activator]\nnavbar-links:\n Resources:\n - Learn markdown: "http://www.markdowntutorial.com/"\n - GitHub Pages: "https://pages.github.com/"\n \n
dataset_sample\yaml\csharp\_config.yml
_config.yml
YAML
627
0.8
0
0.071429
vue-tools
50
2023-07-14T03:14:10.105350
MIT
false
fa88f2a88335cc8e7ba5fdebbe17bf6c
coverage:\n round: down\n range: "70...100"\n status:\n project:\n default:\n informational: true\n target: auto\n threshold: 2%\n patch:\n default:\n informational: true\n
dataset_sample\yaml\cube-js_cube\codecov.yml
codecov.yml
YAML
207
0.7
0
0
react-lib
347
2023-08-22T19:14:32.863109
GPL-3.0
false
8c8e62862159ae04b5774f68793c155c
version: 2\nupdates:\n - package-ecosystem: "npm"\n directory: "/packages"\n schedule:\n interval: "weekly"\n - package-ecosystem: "npm"\n directory: "/examples"\n schedule:\n interval: "monthly"\n labels: [ ]\n ignore:\n - dependency-name: "*"\n
dataset_sample\yaml\cube-js_cube\.github\dependabot.yml
dependabot.yml
YAML
268
0.7
0
0
vue-tools
897
2025-02-06T16:17:25.378483
MIT
false
b9b29c316963c29bd3599dc7df34873a
"help wanted":\n comment: |\n If you are interested in working on this issue, please go ahead and provide PR for that.\n We'd be happy to review it and merge it.\n If this is the first time you are contributing a Pull Request to Cube, please check our [contribution guidelines](https://github.com/cube-js/cube/blob/master/CONTRIBUTING.md).\n You can also post any questions while contributing in the #contributors channel in the [Cube Slack](https://slack.cube.dev/).\n
dataset_sample\yaml\cube-js_cube\.github\label-actions.yml
label-actions.yml
YAML
494
0.8
0.333333
0
vue-tools
632
2025-02-19T07:04:17.009855
BSD-3-Clause
false
d996516401723f26c25a22486c3688e6
name: Cross Images\n\non:\n push:\n paths:\n - '.github/workflows/cross-images.yml'\n - 'rust/cubestore/cross/**'\n branches:\n - 'master'\n pull_request:\n paths:\n - '.github/workflows/cross-images.yml'\n - 'rust/cubestore/cross/**'\n\njobs:\n docker-dev:\n name: Build cross image for ${{ matrix.target }} target\n runs-on: ubuntu-24.04\n timeout-minutes: 120\n strategy:\n matrix:\n target:\n - x86_64-unknown-linux-gnu\n - x86_64-unknown-linux-musl\n - aarch64-unknown-linux-gnu\n fail-fast: false\n steps:\n - name: Checkout\n uses: actions/checkout@v4\n - name: Login to DockerHub\n if: ${{ github.ref == 'refs/heads/master' }}\n uses: docker/login-action@v3\n with:\n username: ${{ secrets.DOCKERHUB_USERNAME }}\n password: ${{ secrets.DOCKERHUB_TOKEN }}\n - name: Set up Docker Buildx\n uses: docker/setup-buildx-action@v3\n with:\n buildkitd-config: .github/buildkitd.toml\n - name: Build & push (base images)\n uses: docker/bake-action@v5\n with:\n workdir: ./rust/cubestore/cross\n targets: ${{ matrix.target }}\n push: ${{ github.ref == 'refs/heads/master' }}\n - name: Build & push (with python)\n if: ${{ matrix.target != 'x86_64-unknown-linux-musl' }}\n uses: docker/bake-action@v5\n with:\n workdir: ./rust/cubestore/cross\n targets: ${{ matrix.target }}-python\n push: ${{ github.ref == 'refs/heads/master' }}\n
dataset_sample\yaml\cube-js_cube\.github\workflows\cross-images.yml
cross-images.yml
YAML
1,556
0.8
0.057692
0
vue-tools
175
2023-11-01T10:50:25.861009
Apache-2.0
false
0a57aed4c60a432e67163b25700ec5dd
name: Issue Labeler\non:\n issues:\n types: [labeled]\n\njobs:\n main:\n name: Process Label Action\n runs-on: ubuntu-24.04\n steps:\n - uses: actions/checkout@v4\n - name: Process Label Action\n uses: hramos/label-actions@v1\n with:\n repo-token: ${{ secrets.GITHUB_TOKEN }}\n
dataset_sample\yaml\cube-js_cube\.github\workflows\issue-labeler.yml
issue-labeler.yml
YAML
309
0.7
0
0
awesome-app
708
2024-11-04T18:32:01.427478
GPL-3.0
false
b32204731344937be8fe82e9b248cc27
name: Master\non:\n push:\n paths:\n - '.github/workflows/push.yml'\n - '.github/workflows/master.yml'\n - 'packages/**'\n - '.eslintrc.js'\n - '.prettierrc'\n - 'lerna.json'\n - 'package.json'\n - 'rollup.config.js'\n - 'yarn.lock'\n - 'rust/cubesqlplanner/**'\n - 'rust/cubenativeutils/**'\n - 'rust/cubesql/**'\n branches:\n - master\nenv:\n CUBEJS_TESSERACT_ORCHESTRATOR: true\njobs:\n latest-tag-sha:\n runs-on: ubuntu-24.04\n outputs:\n sha: ${{ steps.get-tag.outputs.sha }}\n steps:\n - uses: actions/checkout@v4\n with:\n fetch-depth: 0\n - id: git-log\n run: git log HEAD~30..HEAD\n - id: get-tag-test\n run: echo "$SHA $(git rev-list -n 1 "$(git tag --contains "$SHA")")"\n env:\n SHA: ${{ github.sha }}\n - id: get-tag\n run: echo "sha=$(git rev-list -n 1 "$(git tag --contains "$SHA")")" >> "$GITHUB_OUTPUT"\n env:\n SHA: ${{ github.sha }}\n - id: get-tag-out\n run: echo "$OUT"\n env:\n OUT: ${{ steps.get-tag.outputs.sha }}\n\n build_native_linux:\n # Please use minimal possible version of ubuntu, because it produces constraint on glibc\n runs-on: ubuntu-22.04\n timeout-minutes: 60\n name: Build Linux Native backend for Dev image\n container:\n image: cubejs/rust-cross:x86_64-unknown-linux-gnu-15082024-python-3.11\n\n steps:\n - name: Checkout\n uses: actions/checkout@v4\n - name: Install Rust\n uses: actions-rust-lang/setup-rust-toolchain@v1\n with:\n toolchain: 1.84.1\n # override: true # this is by default on\n rustflags: ""\n components: rustfmt\n target: x86_64-unknown-linux-gnu\n cache: false\n - uses: Swatinem/rust-cache@v2\n with:\n workspaces: ./rust/cubesql -> target\n key: cubesql-x86_64-unknown-linux-gnu\n shared-key: cubesql-x86_64-unknown-linux-gnu\n - name: Install Node.js 22\n uses: actions/setup-node@v4\n with:\n node-version: 22\n - name: Install Yarn\n run: npm install -g yarn\n - name: Set Yarn version\n run: yarn policies set-version v1.22.22\n # We don't need to install all yarn deps to build native\n - name: Install cargo-cp-artifact\n run: npm install -g cargo-cp-artifact@0.1\n - name: Build native (with Python)\n env:\n PYO3_PYTHON: python3.11\n CARGO_BUILD_TARGET: x86_64-unknown-linux-gnu\n working-directory: ./packages/cubejs-backend-native\n run: yarn run native:build-debug-python\n - name: Store build artifact for dev image\n uses: actions/upload-artifact@v4\n with:\n name: "native-linux-x64-glibc-3.11.node" # this name is referenced below in docker-image-dev\n path: ./packages/cubejs-backend-native/index.node\n overwrite: true\n\n docker-image-dev:\n name: Release :dev image\n needs: [latest-tag-sha, build_native_linux]\n runs-on: ubuntu-24.04\n if: (needs['latest-tag-sha'].outputs.sha != github.sha)\n steps:\n - name: Check out the repo\n uses: actions/checkout@v4\n - name: Download backend-native artifact\n uses: actions/download-artifact@v4\n with:\n name: "native-linux-x64-glibc-3.11.node" # this name is referenced in above in native_linux\n path: ./packages/cubejs-backend-native/\n - name: Login to DockerHub\n uses: docker/login-action@v3\n with:\n username: ${{ secrets.DOCKERHUB_USERNAME }}\n password: ${{ secrets.DOCKERHUB_TOKEN }}\n - name: Set up QEMU\n uses: docker/setup-qemu-action@v3\n # current .dockerignore prevents use of native build\n - name: Unignore native from .dockerignore\n run: |\n grep -v -E "packages/cubejs-backend-native/((native)|(index.node))" .dockerignore > .dockerignore.tmp\n mv .dockerignore.tmp .dockerignore\n - name: Push to Docker Hub\n uses: docker/build-push-action@v6\n with:\n context: ./\n file: ./packages/cubejs-docker/dev.Dockerfile\n platforms: linux/amd64\n push: true\n tags: cubejs/cube:dev\n - name: Update repo description\n uses: peter-evans/dockerhub-description@v2\n with:\n username: ${{ secrets.DOCKERHUB_USERNAME }}\n password: ${{ secrets.DOCKERHUB_TOKEN }}\n repository: cubejs/cube\n readme-filepath: ./packages/cubejs-docker/README.md\n\n trigger-test-suites:\n name: Trigger test suites run\n runs-on: ubuntu-24.04\n needs: [docker-image-dev]\n timeout-minutes: 60\n steps:\n - name: Checkout\n uses: actions/checkout@v4\n - name: Dispatch event\n uses: actions/github-script@v7\n with:\n github-token: ${{ secrets.GH_TRIGGER_TOKEN }}\n script: |\n const prUrl = context.payload.pull_request ? context.payload.pull_request.html_url : '';\n const commitUrl = `https://github.com/${context.repo.owner}/${context.repo.repo}/commit/${context.sha}`;\n\n await github.rest.actions.createWorkflowDispatch({\n owner: 'cubedevinc',\n repo: 'sql-api-test-suite',\n workflow_id: 'test_and_run_test_suites.yml',\n ref: 'main',\n inputs: {\n 'cube-image': 'cubejs/cube:dev',\n 'source-repo': context.repo.repo,\n 'source-pr-url': prUrl,\n 'source-commit-url': commitUrl,\n 'initiator': '${{ github.actor }}'\n }\n })\n
dataset_sample\yaml\cube-js_cube\.github\workflows\master.yml
master.yml
YAML
5,644
0.8
0.018405
0.025316
react-lib
370
2024-11-06T18:37:35.613335
BSD-3-Clause
false
21cae50a420d1e0dcbbeb55866c1c90e
name: 'Post release'\non:\n workflow_dispatch:\n inputs:\n version:\n description: 'Version'\n required: true\n default: 'latest'\n workflow_run:\n workflows: [ "Release" ]\n types:\n - completed\n push:\n paths:\n - '.github/workflows/post-release.yml'\n branches:\n - 'master'\n\nenv:\n VERSION: ${{ github.event.inputs.version || 'latest' }}\n\n# touch to trigger\njobs:\n cli:\n runs-on: ubuntu-24.04\n name: 'E2E tests via CLI'\n timeout-minutes: 60\n strategy:\n fail-fast: false\n matrix:\n node-version: [22.x]\n steps:\n - name: Checkout\n uses: actions/checkout@v4\n - name: Install Rust\n uses: actions-rust-lang/setup-rust-toolchain@v1\n with:\n toolchain: 1.84.1\n # override: true # this is by default on\n rustflags: ""\n components: rustfmt\n target: x86_64-unknown-linux-gnu\n cache: false\n - name: Install Node.js ${{ matrix.node-version }}\n uses: actions/setup-node@v4\n with:\n node-version: ${{ matrix.node-version }}\n - name: Restore lerna\n uses: actions/cache@v4\n with:\n # npm cache files are stored in `~/.npm` on Linux/macOS\n path: |\n ~/.npm\n node_modules\n rust/cubestore/node_modules\n packages/*/node_modules\n key: ${{ runner.os }}-workspace-main-20.x-${{ hashFiles('**/yarn.lock') }}\n restore-keys: |\n ${{ runner.os }}-workspace-main-20.x-\n - name: Set Yarn version\n run: yarn policies set-version v1.22.22\n - name: Yarn install\n uses: nick-fields/retry@v3\n env:\n CUBESTORE_SKIP_POST_INSTALL: true\n with:\n max_attempts: 3\n retry_on: error\n retry_wait_seconds: 15\n timeout_minutes: 20\n command: yarn install --frozen-lockfile\n - name: Build client\n run: yarn build\n - name: Lerna tsc\n run: yarn tsc\n - name: Build cubejs-backend-native (without Python)\n run: yarn run native:build-release\n working-directory: ./packages/cubejs-backend-native\n - name: Birdbox\n env:\n CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}\n run: |\n cd packages/cubejs-testing/\n npx cubejs-cli@"$VERSION" create birdbox-test-project -d postgres\n export BIRDBOX_CUBEJS_VERSION="$VERSION"\n yarn run dataset:minimal\n yarn run birdbox:cli:postgresql\n - name: Slack Failure\n if: failure()\n uses: voxmedia/github-action-slack-notify-build@v1\n with:\n channel: oss-ci\n status: FAILED\n color: danger\n env:\n SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}\n\n docker:\n runs-on: ubuntu-24.04\n name: 'E2E tests via Docker'\n timeout-minutes: 60\n strategy:\n fail-fast: false\n matrix:\n target: ['postgresql', 'postgresql-cubestore', 'postgresql-pre-aggregations']\n steps:\n - name: Checkout\n uses: actions/checkout@v4\n - name: Install Node.js 22.x\n uses: actions/setup-node@v4\n with:\n node-version: 22.x\n - name: Restore lerna\n uses: actions/cache@v4\n with:\n # npm cache files are stored in `~/.npm` on Linux/macOS\n path: |\n ~/.npm\n node_modules\n rust/cubestore/node_modules\n packages/*/node_modules\n key: ${{ runner.os }}-workspace-main-20.x-${{ hashFiles('**/yarn.lock') }}\n restore-keys: |\n ${{ runner.os }}-workspace-main-20.x-\n - name: Set Yarn version\n run: yarn policies set-version v1.22.22\n - name: Yarn install\n uses: nick-fields/retry@v3\n env:\n CUBESTORE_SKIP_POST_INSTALL: true\n with:\n max_attempts: 3\n retry_on: error\n retry_wait_seconds: 15\n timeout_minutes: 20\n command: yarn install --frozen-lockfile\n - name: Build client\n run: yarn build\n - name: Lerna tsc\n run: yarn tsc\n - name: Birdbox\n run: |\n cd packages/cubejs-testing/\n export DEBUG=testcontainers\n export BIRDBOX_CUBEJS_VERSION="$VERSION"\n yarn run dataset:minimal\n yarn run birdbox:${{ matrix.target }}\n - name: Slack Failure\n if: failure()\n uses: voxmedia/github-action-slack-notify-build@v1\n with:\n channel: oss-ci\n status: FAILED\n color: danger\n env:\n SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}\n\n cypress:\n runs-on: ${{ matrix.os }}\n name: 'Cypress E2E tests via Docker'\n timeout-minutes: 60\n strategy:\n fail-fast: false\n matrix:\n browser: [chrome]\n include:\n - browser: chrome\n os: ubuntu-24.04\n container: cypress/browsers:node18.12.0-chrome107\n steps:\n - name: Checkout\n uses: actions/checkout@v4\n - name: Install Node.js 22.x\n uses: actions/setup-node@v4\n with:\n node-version: 22.x\n - name: Restore lerna\n uses: actions/cache@v4\n with:\n # npm cache files are stored in `~/.npm` on Linux/macOS\n path: |\n ~/.npm\n node_modules\n rust/cubestore/node_modules\n packages/*/node_modules\n key: ${{ runner.os }}-workspace-main-20.x-${{ hashFiles('**/yarn.lock') }}\n restore-keys: |\n ${{ runner.os }}-workspace-main-20.x-\n - name: Set Yarn version\n run: yarn policies set-version v1.22.22\n - name: Yarn install\n uses: nick-fields/retry@v3\n env:\n CUBESTORE_SKIP_POST_INSTALL: true\n with:\n max_attempts: 3\n retry_on: error\n retry_wait_seconds: 15\n timeout_minutes: 20\n command: yarn install --frozen-lockfile\n - name: Lerna tsc\n run: yarn tsc\n - name: Birdbox\n env:\n CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}\n run: |\n cd packages/cubejs-testing/\n export DEBUG=testcontainers\n export BIRDBOX_CYPRESS_BROWSER=${{ matrix.browser }}\n export BIRDBOX_CUBEJS_VERSION="$VERSION"\n yarn run cypress:install\n yarn run dataset:minimal\n yarn run cypress:birdbox\n - name: Slack Failure\n if: failure()\n uses: voxmedia/github-action-slack-notify-build@v1\n with:\n channel: oss-ci\n status: FAILED\n color: danger\n env:\n SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}\n
dataset_sample\yaml\cube-js_cube\.github\workflows\post-release.yml
post-release.yml
YAML
6,682
0.95
0.013514
0.022936
node-utils
811
2024-10-02T20:17:40.191278
Apache-2.0
false
16a00bdcff085271043b6acd837394cc
name: Pull Requests\non:\n pull_request_target:\n types: [opened]\n pull_request:\n types: [opened]\n\njobs:\n authorDetector:\n name: Detect PR's author\n runs-on: ubuntu-24.04\n steps:\n - name: Checkout Actions\n uses: actions/checkout@v4\n with:\n repository: 'cube-js/github-actions'\n path: ./actions\n ref: v5\n - name: Install Actions\n run: npm install --production --prefix ./actions\n - name: Detect author\n uses: ./actions/author-detector\n with:\n token: ${{secrets.GITHUB_TOKEN}}\n addCoreLabel: false\n communityLabel: pr:community\n
dataset_sample\yaml\cube-js_cube\.github\workflows\pr.yml
pr.yml
YAML
645
0.7
0
0
react-lib
226
2024-12-11T11:46:52.073999
MIT
false
b732a9d8ddafcb046b16e042da5e1353
name: Release\n\non:\n push:\n tags:\n - 'v*.*.*'\n - 'v*.*.*-*'\nenv:\n CARGO_INCREMENTAL: 0\n CARGO_NET_RETRY: 10\n RUSTUP_MAX_RETRIES: 10\n\njobs:\n npm:\n runs-on: ubuntu-24.04\n timeout-minutes: 30\n permissions:\n contents: write\n steps:\n - name: Checkout\n uses: actions/checkout@v4\n - name: Install Rust\n uses: actions-rust-lang/setup-rust-toolchain@v1\n with:\n toolchain: 1.84.1\n # override: true # this is by default on\n rustflags: ""\n components: rustfmt\n - name: Install Node.js 22.x\n uses: actions/setup-node@v4\n with:\n node-version: 22.x\n - name: Get yarn cache directory path\n id: yarn-cache-dir-path\n run: echo "dir=$(yarn cache dir)" >> "$GITHUB_OUTPUT"\n shell: bash\n - name: Restore yarn cache\n uses: actions/cache@v4\n with:\n path: ${{ steps.yarn-cache-dir-path.outputs.dir }}\n key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}\n restore-keys: |\n ${{ runner.os }}-yarn-\n - name: Set Yarn version\n run: yarn policies set-version v1.22.22\n - name: Yarn install\n uses: nick-fields/retry@v3\n env:\n CUBESTORE_SKIP_POST_INSTALL: true\n with:\n max_attempts: 3\n retry_on: error\n retry_wait_seconds: 15\n timeout_minutes: 20\n command: yarn install --frozen-lockfile\n - name: Build Core Client libraries\n run: yarn build\n - name: Build other packages\n run: yarn lerna run --concurrency 1 build\n env:\n NODE_OPTIONS: --max_old_space_size=4096\n - name: Set NPM token\n run: echo //registry.npmjs.org/:_authToken="$NPM_TOKEN" > ~/.npmrc\n env:\n NPM_TOKEN: ${{ secrets.NPM_TOKEN }}\n - name: NPM publish\n run: ./node_modules/.bin/lerna publish from-package --yes\n\n native_linux:\n # Please use minimal possible version of ubuntu, because it produces constraint on glibc\n runs-on: ubuntu-22.04\n timeout-minutes: 60\n name: Build native Linux ${{ matrix.node-version }} ${{ matrix.target }} Python ${{ matrix.python-version }}\n strategy:\n matrix:\n node-version: [22]\n python-version: ["3.9", "3.10", "3.11", "3.12", "fallback"]\n target: ["x86_64-unknown-linux-gnu", "aarch64-unknown-linux-gnu"]\n include:\n - target: x86_64-unknown-linux-gnu\n package_target_arch: x64\n package_target_platform: linux\n package_target_libc: glibc\n - target: aarch64-unknown-linux-gnu\n package_target_arch: arm64\n package_target_platform: linux\n package_target_libc: glibc\n fail-fast: false\n container:\n image: cubejs/rust-cross:${{ matrix.target }}-15082024${{ matrix.python-version != 'fallback' && format('-python-{0}', matrix.python-version) || '' }}\n permissions:\n contents: write\n steps:\n - name: Checkout\n uses: actions/checkout@v4\n - name: Install Rust\n uses: actions-rust-lang/setup-rust-toolchain@v1\n with:\n toolchain: 1.84.1\n # override: true # this is by default on\n rustflags: ""\n components: rustfmt\n target: ${{ matrix.target }}\n - name: Install Node.js ${{ matrix.node-version }}\n uses: actions/setup-node@v4\n with:\n node-version: ${{ matrix.node-version }}\n - name: Install Yarn\n run: npm install -g yarn\n - name: Set Yarn version\n run: yarn policies set-version v1.22.22\n # We don't need to install all yarn deps to build native\n - name: Install cargo-cp-artifact\n run: npm install -g cargo-cp-artifact@0.1\n - name: Build native (fallback)\n if: (matrix.python-version == 'fallback')\n env:\n CARGO_BUILD_TARGET: ${{ matrix.target }}\n run: cd packages/cubejs-backend-native && npm run native:build-release\n - name: Setup cross compilation\n if: (matrix.target == 'aarch64-unknown-linux-gnu')\n uses: allenevans/set-env@v4.0.0\n with:\n PYO3_CROSS_PYTHON_VERSION: ${{ matrix.python-version }}\n - name: Build native (with Python)\n if: (matrix.python-version != 'fallback')\n env:\n PYO3_PYTHON: python${{ matrix.python-version }}\n CARGO_BUILD_TARGET: ${{ matrix.target }}\n run: cd packages/cubejs-backend-native && npm run native:build-release-python\n - name: Archive release asset\n shell: bash\n run: |\n cd packages/cubejs-backend-native\n rm -rf native\n mkdir native\n cp index.node native/index.node\n tar czvf native.tar.gz native\n - name: Upload to Release\n uses: svenstaro/upload-release-action@v2\n with:\n repo_token: ${{ secrets.GITHUB_TOKEN }}\n file: packages/cubejs-backend-native/native.tar.gz\n # Example: native-linux-arm64-glibc.tar.gz\n asset_name: native-${{ matrix.package_target_platform }}-${{ matrix.package_target_arch }}-${{ matrix.package_target_libc }}-${{ matrix.python-version }}.tar.gz\n tag: ${{ github.ref }}\n overwrite: true\n\n native_macos:\n runs-on: ${{ matrix.os-version }}\n timeout-minutes: 90\n name: Build ${{ matrix.os-version }} ${{ matrix.target }} ${{ matrix.node-version }} Python ${{ matrix.python-version }}\n strategy:\n matrix:\n node-version: [22.x]\n os-version: ["macos-13"]\n target: ["x86_64-apple-darwin", "aarch64-apple-darwin"]\n python-version: ["3.9", "3.10", "3.11", "3.12", "fallback"]\n include:\n - target: x86_64-apple-darwin\n package_target_arch: x64\n package_target_platform: darwin\n package_target_libc: unknown\n tar_executable: gtar\n - target: aarch64-apple-darwin\n package_target_arch: arm64\n package_target_platform: darwin\n package_target_libc: unknown\n tar_executable: gtar\n exclude:\n # Disable python builds for aarch64 (not ready)\n - target: "aarch64-apple-darwin"\n python-version: "3.9"\n - target: "aarch64-apple-darwin"\n python-version: "3.10"\n - target: "aarch64-apple-darwin"\n python-version: "3.11"\n - target: "aarch64-apple-darwin"\n python-version: "3.12"\n fail-fast: false\n permissions:\n contents: write\n steps:\n - name: Checkout\n uses: actions/checkout@v4\n - name: Install Rust\n uses: actions-rust-lang/setup-rust-toolchain@v1\n with:\n toolchain: 1.84.1\n # override: true # this is by default on\n rustflags: ""\n components: rustfmt\n target: ${{ matrix.target }}\n - name: Install Python\n uses: actions/setup-python@v5\n if: (matrix.python-version != 'fallback')\n with:\n python-version: ${{ matrix.python-version }}\n - name: Install Node.js ${{ matrix.node-version }}\n uses: actions/setup-node@v4\n with:\n node-version: ${{ matrix.node-version }}\n - name: Set Yarn version\n run: yarn policies set-version v1.22.22\n # We don't need to install all yarn deps to build native\n - name: Install cargo-cp-artifact\n run: npm install -g cargo-cp-artifact@0.1\n - name: Build native (fallback)\n if: (matrix.python-version == 'fallback')\n run: cd packages/cubejs-backend-native && npm run native:build-release\n env:\n CARGO_BUILD_TARGET: ${{ matrix.target }}\n - name: Build native (with Python)\n if: (matrix.python-version != 'fallback')\n env:\n PYO3_PYTHON: python${{ matrix.python-version }}\n CARGO_BUILD_TARGET: ${{ matrix.target }}\n run: cd packages/cubejs-backend-native && npm run native:build-release-python\n - name: Archive release asset\n shell: bash\n run: |\n cd packages/cubejs-backend-native\n rm -rf native\n mkdir native\n cp index.node native/index.node\n ${{ matrix.tar_executable }} -czvf native.tar.gz native\n - name: Upload to Release\n uses: svenstaro/upload-release-action@v2\n with:\n repo_token: ${{ secrets.GITHUB_TOKEN }}\n file: packages/cubejs-backend-native/native.tar.gz\n # Example: native-linux-arm64-glibc.tar.gz\n asset_name: native-${{ matrix.package_target_platform }}-${{ matrix.package_target_arch }}-${{ matrix.package_target_libc }}-${{ matrix.python-version }}.tar.gz\n tag: ${{ github.ref }}\n overwrite: true\n\n native_windows:\n runs-on: ${{ matrix.os-version }}\n timeout-minutes: 90\n name: Build ${{ matrix.os-version }} ${{ matrix.node-version }} Python ${{ matrix.python-version }}\n strategy:\n matrix:\n node-version: [22.x]\n python-version: ["fallback"]\n os-version: [windows-2019]\n include:\n - os-version: windows-2019\n package_target_arch: x64\n package_target_platform: win32\n package_target_libc: unknown\n tar_executable: tar\n fail-fast: false\n permissions:\n contents: write\n steps:\n - name: Checkout\n uses: actions/checkout@v4\n - name: Disable rustup update (issue workaround for Windows)\n run: rustup set auto-self-update disable\n shell: bash\n - name: Install Rust\n uses: actions-rust-lang/setup-rust-toolchain@v1\n with:\n toolchain: 1.84.1\n # override: true # this is by default on\n rustflags: ""\n components: rustfmt\n - name: Install Python\n uses: actions/setup-python@v5\n if: (matrix.python-version != 'fallback')\n with:\n python-version: ${{ matrix.python-version }}\n - name: Install Node.js ${{ matrix.node-version }}\n uses: actions/setup-node@v4\n with:\n node-version: ${{ matrix.node-version }}\n - name: Set Yarn version\n run: yarn policies set-version v1.22.22\n # We don't need to install all yarn deps to build native\n - name: Install cargo-cp-artifact\n run: npm install -g cargo-cp-artifact@0.1\n - name: Build native (fallback)\n if: (matrix.python-version == 'fallback')\n run: cd packages/cubejs-backend-native && npm run native:build-release\n - name: Build native (with Python)\n if: (matrix.python-version != 'fallback')\n env:\n PYO3_PYTHON: python${{ matrix.python-version }}\n run: cd packages/cubejs-backend-native && npm run native:build-release-python\n - name: Archive release asset\n shell: bash\n run: |\n cd packages/cubejs-backend-native\n rm -rf native\n mkdir native\n cp index.node native/index.node\n ${{ matrix.tar_executable }} -czvf native.tar.gz native\n - name: Upload to Release\n uses: svenstaro/upload-release-action@v2\n with:\n repo_token: ${{ secrets.GITHUB_TOKEN }}\n file: packages/cubejs-backend-native/native.tar.gz\n # Example: native-linux-arm64-glibc.tar.gz\n asset_name: native-${{ matrix.package_target_platform }}-${{ matrix.package_target_arch }}-${{ matrix.package_target_libc }}-${{ matrix.python-version }}.tar.gz\n tag: ${{ github.ref }}\n overwrite: true\n\n docker-default:\n needs: [npm, cubestore_linux, native_linux, detect_branch]\n name: Debian docker image\n runs-on: ${{ matrix.os }}\n strategy:\n fail-fast: false\n matrix:\n include:\n - os: ubuntu-22.04\n target: x86_64-unknown-linux-gnu\n platforms: linux/amd64,linux/arm64\n timeout-minutes: 90\n steps:\n - name: Check out the repo\n uses: actions/checkout@v4\n - name: Repo metadata\n id: repo\n uses: actions/github-script@v7\n with:\n script: |\n const { data } = await github.rest.repos.get(context.repo)\n const reg = new RegExp('📊 ', 'ug');\n data.description = data.description.replace(reg, "")\n return data\n - name: Prepare\n id: prep\n run: |\n DOCKER_IMAGE=cubejs/cube\n VERSION=noop\n\n if [ "${{ github.event_name }}" = "schedule" ]; then\n VERSION=nightly\n elif [[ $GITHUB_REF == refs/tags/* ]]; then\n VERSION=${GITHUB_REF#refs/tags/}\n fi\n\n TAGS="${DOCKER_IMAGE}:${VERSION}"\n\n if [[ $VERSION =~ ^v[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]]; then\n MINOR=${VERSION%.*}\n MAJOR=${MINOR%.*}\n TAGS="$TAGS,${DOCKER_IMAGE}:${MINOR},${DOCKER_IMAGE}:${MAJOR}"\n fi\n\n if [ "${{ needs['detect_branch'].outputs.is_master }}" = "true" ]; then\n TAGS="$TAGS,${DOCKER_IMAGE}:latest"\n fi\n\n {\n echo "version=${VERSION}"\n echo "tags=${TAGS}"\n echo "created=$(date -u +'%Y-%m-%dT%H:%M:%SZ')"\n } >> "$GITHUB_OUTPUT"\n - name: Login to DockerHub\n uses: docker/login-action@v3\n with:\n username: ${{ secrets.DOCKERHUB_USERNAME }}\n password: ${{ secrets.DOCKERHUB_TOKEN }}\n - name: Set up QEMU\n uses: docker/setup-qemu-action@v3\n - name: Set up Docker Buildx\n uses: docker/setup-buildx-action@v3\n - name: Copy yarn.lock file\n run: cp yarn.lock packages/cubejs-docker\n - name: Push to Docker Hub\n uses: docker/build-push-action@v6\n with:\n context: ./packages/cubejs-docker\n file: ./packages/cubejs-docker/latest.Dockerfile\n platforms: ${{ matrix.platforms }}\n push: true\n tags: ${{ steps.prep.outputs.tags }}\n labels: |\n org.opencontainers.image.title=${{ fromJson(steps.repo.outputs.result).name }}\n org.opencontainers.image.description=${{ fromJson(steps.repo.outputs.result).description }}\n org.opencontainers.image.url=${{ fromJson(steps.repo.outputs.result).html_url }}\n org.opencontainers.image.source=${{ fromJson(steps.repo.outputs.result).clone_url }}\n org.opencontainers.image.version=${{ steps.prep.outputs.version }}\n org.opencontainers.image.created=${{ steps.prep.outputs.created }}\n org.opencontainers.image.revision=${{ github.sha }}\n org.opencontainers.image.licenses=${{ fromJson(steps.repo.outputs.result).license.spdx_id }}\n build-args: |\n IMAGE_VERSION=${{ steps.prep.outputs.version }}\n\n docker-debian-jdk:\n needs: [npm, cubestore_linux, native_linux, detect_branch]\n name: Debian with jdk docker image\n runs-on: ubuntu-24.04\n timeout-minutes: 30\n permissions:\n contents: write\n steps:\n - name: Check out the repo\n uses: actions/checkout@v4\n - name: Repo metadata\n id: repo\n uses: actions/github-script@v7\n with:\n script: |\n const { data } = await github.rest.repos.get(context.repo)\n const reg = new RegExp('📊 ', 'ug');\n data.description = data.description.replace(reg, "")\n return data\n - name: Prepare\n id: prep\n run: |\n DOCKER_IMAGE=cubejs/cube\n VERSION=noop\n\n if [ "${{ github.event_name }}" = "schedule" ]; then\n VERSION=nightly\n elif [[ $GITHUB_REF == refs/tags/* ]]; then\n VERSION=${GITHUB_REF#refs/tags/}\n fi\n\n TAGS="${DOCKER_IMAGE}:${VERSION}-jdk"\n\n if [[ $VERSION =~ ^v[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]]; then\n MINOR=${VERSION%.*}\n MAJOR=${MINOR%.*}\n TAGS="$TAGS,${DOCKER_IMAGE}:${MINOR}-jdk,${DOCKER_IMAGE}:${MAJOR}-jdk"\n elif [ "${{ github.event_name }}" = "push" ]; then\n TAGS="$TAGS,${DOCKER_IMAGE}:sha-${GITHUB_SHA::8}-jdk"\n fi\n\n if [ "${{ needs['detect_branch'].outputs.is_master }}" = "true" ]; then\n TAGS="$TAGS,${DOCKER_IMAGE}:jdk"\n fi\n\n {\n echo "version=${VERSION}"\n echo "tags=${TAGS}"\n echo "created=$(date -u +'%Y-%m-%dT%H:%M:%SZ')"\n } >> "$GITHUB_OUTPUT"\n - name: Login to DockerHub\n uses: docker/login-action@v3\n with:\n username: ${{ secrets.DOCKERHUB_USERNAME }}\n password: ${{ secrets.DOCKERHUB_TOKEN }}\n - name: Set up QEMU\n uses: docker/setup-qemu-action@v3\n - name: Copy yarn.lock file\n run: cp yarn.lock packages/cubejs-docker\n - name: Set up Docker Buildx\n uses: docker/setup-buildx-action@v3\n - name: Push to Docker Hub\n uses: docker/build-push-action@v6\n with:\n context: ./packages/cubejs-docker\n file: ./packages/cubejs-docker/latest-debian-jdk.Dockerfile\n platforms: linux/amd64\n push: true\n tags: ${{ steps.prep.outputs.tags }}\n labels: |\n org.opencontainers.image.title=${{ fromJson(steps.repo.outputs.result).name }}\n org.opencontainers.image.description=${{ fromJson(steps.repo.outputs.result).description }}\n org.opencontainers.image.url=${{ fromJson(steps.repo.outputs.result).html_url }}\n org.opencontainers.image.source=${{ fromJson(steps.repo.outputs.result).clone_url }}\n org.opencontainers.image.version=${{ steps.prep.outputs.version }}\n org.opencontainers.image.created=${{ steps.prep.outputs.created }}\n org.opencontainers.image.revision=${{ github.sha }}\n org.opencontainers.image.licenses=${{ fromJson(steps.repo.outputs.result).license.spdx_id }}\n build-args: |\n IMAGE_VERSION=${{ steps.prep.outputs.version }}\n\n docker-cubestore:\n name: Cube Store Docker\n runs-on: ${{ matrix.os }}\n needs: [detect_branch]\n strategy:\n fail-fast: false\n matrix:\n include:\n - os: ubuntu-24.04\n target: x86_64-unknown-linux-gnu\n platforms: linux/amd64\n build-args: WITH_AVX2=1\n postfix: ""\n tag: "latest"\n - os: ubuntu-24.04-arm\n target: aarch64-unknown-linux-gnu\n platforms: linux/arm64\n build-args: WITH_AVX2=0\n postfix: "-arm64v8"\n tag: "arm64v8"\n # Non AVX build\n - os: ubuntu-24.04\n target: x86_64-unknown-linux-gnu\n platforms: linux/amd64\n build-args: WITH_AVX2=0\n postfix: "-non-avx"\n tag: "non-avx"\n timeout-minutes: 60\n permissions:\n contents: write\n steps:\n - name: Check out the repo\n uses: actions/checkout@v4\n - name: Repo metadata\n id: repo\n uses: actions/github-script@v7\n with:\n script: |\n const { data } = await github.rest.repos.get(context.repo)\n const reg = new RegExp('📊 ', 'ug');\n data.description = data.description.replace(reg, "")\n return data\n - name: Prepare\n id: prep\n env:\n GITHUB_SHA: ${{ github.sha }}\n run: |\n DOCKER_IMAGE=cubejs/cubestore\n VERSION=noop\n\n if [ "${{ github.event_name }}" = "schedule" ]; then\n VERSION=nightly\n elif [[ $GITHUB_REF == refs/tags/* ]]; then\n VERSION=${GITHUB_REF#refs/tags/}\n fi\n\n TAGS="${DOCKER_IMAGE}:${VERSION}${{ matrix.postfix }}"\n\n if [[ $VERSION =~ ^v[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]]; then\n MINOR=${VERSION%.*}\n MAJOR=${MINOR%.*}\n TAGS="$TAGS,${DOCKER_IMAGE}:${MINOR}${{ matrix.postfix }},${DOCKER_IMAGE}:${MAJOR}${{ matrix.postfix }}"\n fi\n\n if [ "${{ needs['detect_branch'].outputs.is_master }}" = "true" ]; then\n TAGS="$TAGS,${DOCKER_IMAGE}:${{ matrix.tag }}"\n fi\n\n {\n echo "version=${VERSION}"\n echo "tags=${TAGS}"\n echo "created=$(date -u +'%Y-%m-%dT%H:%M:%SZ')"\n } >> "$GITHUB_OUTPUT"\n - name: Login to DockerHub\n uses: docker/login-action@v3\n with:\n username: ${{ secrets.DOCKERHUB_USERNAME }}\n password: ${{ secrets.DOCKERHUB_TOKEN }}\n - name: Set up Docker Buildx\n uses: docker/setup-buildx-action@v3\n - name: Push to Docker Hub\n uses: docker/build-push-action@v6\n with:\n context: ./rust/\n file: ./rust/cubestore/Dockerfile\n platforms: ${{ matrix.platforms }}\n build-args: ${{ matrix.build-args }}\n push: true\n tags: ${{ steps.prep.outputs.tags }}\n cache-from: type=gha\n cache-to: type=gha,mode=max\n labels: |\n org.opencontainers.image.title=${{ fromJson(steps.repo.outputs.result).name }}\n org.opencontainers.image.description=${{ fromJson(steps.repo.outputs.result).description }}\n org.opencontainers.image.url=${{ fromJson(steps.repo.outputs.result).html_url }}\n org.opencontainers.image.source=${{ fromJson(steps.repo.outputs.result).clone_url }}\n org.opencontainers.image.version=${{ steps.prep.outputs.version }}\n org.opencontainers.image.created=${{ steps.prep.outputs.created }}\n org.opencontainers.image.revision=${{ github.sha }}\n org.opencontainers.image.licenses=${{ fromJson(steps.repo.outputs.result).license.spdx_id }}\n - name: Update repo description\n uses: peter-evans/dockerhub-description@v2\n with:\n username: ${{ secrets.DOCKERHUB_USERNAME }}\n password: ${{ secrets.DOCKERHUB_TOKEN }}\n repository: cubejs/cubestore\n readme-filepath: ./rust/cubestore/README.md\n\n cubestore_linux:\n runs-on: ${{ matrix.os }}\n timeout-minutes: 90\n env:\n OPENSSL_STATIC: 1\n strategy:\n matrix:\n target:\n - x86_64-unknown-linux-gnu\n - x86_64-unknown-linux-musl\n - aarch64-unknown-linux-gnu\n include:\n - target: x86_64-unknown-linux-gnu\n os: ubuntu-24.04\n executable_name: cubestored\n strip: true\n compress: false\n - target: x86_64-unknown-linux-musl\n os: ubuntu-24.04\n executable_name: cubestored\n strip: true\n # cubestored: CantPackException: bad DT_HASH nbucket=0x344 len=0x1890\n compress: false\n - target: aarch64-unknown-linux-gnu\n os: ubuntu-24.04\n executable_name: cubestored\n # Unable to recognise the format of the input file `rust/cubestore/target/aarch64-unknown-linux-gnu/release/cubestored'\n strip: false\n # UPX is broken, issue https://github.com/cube-js/cube/issues/4474\n compress: false\n fail-fast: false\n container:\n image: cubejs/rust-cross:${{ matrix.target }}-15082024\n permissions:\n contents: write\n steps:\n - uses: actions/checkout@v4\n - name: Setup Rust toolchain\n uses: actions-rust-lang/setup-rust-toolchain@v1\n with:\n toolchain: nightly-2024-01-29\n target: ${{ matrix.target }}\n # override: true # this is by default on\n rustflags: ""\n components: rustfmt\n - uses: Swatinem/rust-cache@v2\n with:\n workspaces: ./rust/cubestore -> target\n prefix-key: v0-rust-cubestore-cross\n key: target-${{ matrix.target }}\n - name: Build with Cargo\n run: |\n cd rust/cubestore && cargo build --release --target=${{ matrix.target }} -p cubestore\n - name: Compress binaries\n uses: svenstaro/upx-action@v2\n if: ${{ matrix.compress }}\n with:\n file: rust/cubestore/target/${{ matrix.target }}/release/${{ matrix.executable_name }}\n args: --lzma\n strip: ${{ matrix.strip }}\n - name: Create folder for archive\n run: |\n mkdir cubestore-archive\n mkdir cubestore-archive/bin\n - name: Create archive for release\n run: |\n mv rust/cubestore/target/${{ matrix.target }}/release/${{ matrix.executable_name }} cubestore-archive/bin/${{ matrix.executable_name }}\n cd cubestore-archive\n tar -cvzf cubestored-${{ matrix.target }}.tar.gz ./*\n - name: Upload Binary to Release\n uses: svenstaro/upload-release-action@v2\n with:\n repo_token: ${{ secrets.GITHUB_TOKEN }}\n file: cubestore-archive/cubestored-${{ matrix.target }}.tar.gz\n asset_name: cubestored-${{ matrix.target }}.tar.gz\n tag: ${{ github.ref }}\n overwrite: true\n\n cubestore:\n runs-on: ${{ matrix.os }}\n timeout-minutes: 90\n env:\n RUSTFLAGS: '-Ctarget-feature=+crt-static'\n OPENSSL_STATIC: 1\n strategy:\n matrix:\n target:\n - x86_64-pc-windows-msvc\n - x86_64-apple-darwin\n - aarch64-apple-darwin\n include:\n - target: x86_64-pc-windows-msvc\n os: windows-2019\n executable_name: cubestored.exe\n strip: true\n # cubestored.exe: CantPackException: superfluous data between sections\n compress: false\n tar_executable: tar\n # Please use minimal possible version of macOS, because it produces constraint on libstdc++\n - target: x86_64-apple-darwin\n os: macos-13\n executable_name: cubestored\n # upx has been disabled because it is crashing for macOS Ventura or above! It was disabled on 2024-09-05.\n strip: false\n compress: false\n # bsd tar has a different format with Sparse files which breaks download script\n tar_executable: gtar\n - os: macos-14\n target: aarch64-apple-darwin\n executable_name: cubestored\n # upx has been disabled because it is crashing for macOS Ventura or above! It was disabled on 2024-09-05.\n strip: false\n compress: false\n # bsd tar has a different format with Sparse files which breaks download script\n tar_executable: gtar\n fail-fast: false\n permissions:\n contents: write\n steps:\n - uses: actions/checkout@v4\n - name: Disable rustup update (issue workaround for Windows)\n run: rustup set auto-self-update disable\n if: contains(runner.os, 'windows')\n shell: bash\n - name: Setup Rust toolchain\n uses: actions-rust-lang/setup-rust-toolchain@v1\n with:\n toolchain: nightly-2024-01-29\n target: ${{ matrix.target }}\n # override: true # this is by default on\n rustflags: ""\n components: rustfmt\n - uses: Swatinem/rust-cache@v2\n with:\n workspaces: ./rust/cubestore -> target\n prefix-key: v0-rust-cubestore-cross\n key: target-${{ matrix.target }}\n - uses: ilammy/msvc-dev-cmd@v1\n if: ${{ startsWith(matrix.os, 'windows') }}\n - name: Install OpenSSL for Windows\n if: ${{ startsWith(matrix.os, 'windows') }}\n run: vcpkg integrate install; vcpkg install openssl:x64-windows\n - name: Instal LLVM for Windows\n if: ${{ startsWith(matrix.os, 'windows') }}\n run: choco install -y --force llvm --version 18.1.6\n - name: Set Env Variables for Windows\n uses: allenevans/set-env@v4.0.0\n if: ${{ startsWith(matrix.os, 'windows') }}\n with:\n OPENSSL_DIR: 'C:/vcpkg/packages/openssl_x64-windows'\n # This paths are required to work with static linking\n OPENSSL_LIB_DIR: 'C:/vcpkg/packages/openssl_x64-windows/lib'\n OPENSSL_INCLUDE_DIR: 'C:/vcpkg/packages/openssl_x64-windows/include'\n LIBCLANG_PATH: 'C:\Program Files\LLVM\bin'\n - name: Build with Cargo\n run: |\n cd rust/cubestore && cargo build --release --target=${{ matrix.target }} -p cubestore\n - name: Compress binaries\n uses: svenstaro/upx-action@v2\n if: ${{ matrix.compress }}\n with:\n file: rust/cubestore/target/${{ matrix.target }}/release/${{ matrix.executable_name }}\n args: --lzma\n strip: ${{ matrix.strip }}\n - name: Create folder for archive\n run: |\n mkdir cubestore-archive\n mkdir cubestore-archive/bin\n - name: Copy/paste OpenSSL to Archive (hotfix for Windows)\n if: ${{ startsWith(matrix.os, 'windows') }}\n run: cp C:/vcpkg/packages/openssl_x64-windows/bin/*.dll cubestore-archive/bin\n - name: Create archive for release\n run: |\n mv rust/cubestore/target/${{ matrix.target }}/release/${{ matrix.executable_name }} cubestore-archive/bin/${{ matrix.executable_name }}\n cd cubestore-archive\n ${{ matrix.tar_executable }} -cvzf cubestored-${{ matrix.target }}.tar.gz ./*\n - name: Upload Binary to Release\n uses: svenstaro/upload-release-action@v2\n with:\n repo_token: ${{ secrets.GITHUB_TOKEN }}\n file: cubestore-archive/cubestored-${{ matrix.target }}.tar.gz\n asset_name: cubestored-${{ matrix.target }}.tar.gz\n tag: ${{ github.ref }}\n overwrite: true\n\n trigger-test-suites:\n name: Trigger test suites run\n runs-on: ubuntu-24.04\n needs: [docker-default]\n timeout-minutes: 15\n steps:\n - name: Checkout\n uses: actions/checkout@v4\n - name: Dispatch event\n uses: actions/github-script@v7\n with:\n github-token: ${{ secrets.GH_TRIGGER_TOKEN }}\n script: |\n const prUrl = context.payload.pull_request ? context.payload.pull_request.html_url : '';\n const commitUrl = `https://github.com/${context.repo.owner}/${context.repo.repo}/commit/${context.sha}`;\n\n await github.rest.actions.createWorkflowDispatch({\n owner: 'cubedevinc',\n repo: 'sql-api-test-suite',\n workflow_id: 'test_and_run_test_suites.yml',\n ref: 'main',\n inputs: {\n 'cube-image': 'cubejs/cube:latest',\n 'source-repo': context.repo.repo,\n 'source-pr-url': prUrl,\n 'source-commit-url': commitUrl,\n 'initiator': '${{ github.actor }}'\n }\n })\n\n detect_branch:\n runs-on: ubuntu-24.04\n outputs:\n is_master: ${{ steps.detect_branch.outputs.is_master }}\n branch: ${{ steps.detect_branch.outputs.branch }}\n steps:\n - name: Checkout\n uses: actions/checkout@v4\n - name: Detect branch name\n id: detect_branch\n run: |\n # Git & GitHub (for now) doesn't provide an easy/stable way to detect branch name from tag.\n echo "branch=master" >> "$GITHUB_OUTPUT"\n echo "is_master=true" >> "$GITHUB_OUTPUT"\n\n trigger-repo-sync:\n name: Trigger runtime repo\n runs-on: ubuntu-24.04\n needs: [docker-default, detect_branch]\n timeout-minutes: 15\n steps:\n - name: Checkout\n uses: actions/checkout@v4\n - name: Trigger runtime\n uses: actions/github-script@v7\n with:\n github-token: ${{ secrets.GH_TRIGGER_TOKEN }}\n script: |\n const tagName = process.env.GITHUB_REF.replace('refs/tags/', '');\n const branchName = '${{ needs['detect_branch'].outputs.branch }}';\n\n await github.rest.actions.createWorkflowDispatch({\n owner: 'cubedevinc',\n repo: 'cube-runtime',\n workflow_id: 'sync.yml',\n ref: 'master',\n inputs: {\n 'tag': tagName,\n 'branch': branchName,\n }\n })\n
dataset_sample\yaml\cube-js_cube\.github\workflows\publish.yml
publish.yml
YAML
31,898
0.95
0.047847
0.032258
awesome-app
162
2024-12-18T13:22:54.785455
GPL-3.0
false
a22edb71e0b83f934c76e6bbd1c61ba6
name: Build native\n\non:\n push:\n paths:\n - '.github/workflows/rust-cubesql.yml'\n - 'packages/cubejs-backend-native/**'\n - 'rust/cubenativeutils/**'\n - 'rust/cubesqlplanner/**'\n - 'rust/cubesql/**'\n branches:\n - 'master'\n pull_request:\n paths:\n - '.github/workflows/rust-cubesql.yml'\n - 'packages/cubejs-backend-native/**'\n - 'rust/cubenativeutils/**'\n - 'rust/cubesqlplanner/**'\n - 'rust/cubesql/**'\n\njobs:\n lint:\n runs-on: ubuntu-24.04\n timeout-minutes: 20\n name: Check fmt/clippy\n container:\n image: cubejs/rust-cross:x86_64-unknown-linux-gnu-15082024\n\n steps:\n - name: Checkout\n uses: actions/checkout@v4\n - name: Install Rust\n uses: actions-rust-lang/setup-rust-toolchain@v1\n with:\n toolchain: 1.84.1\n # override: true # this is by default on\n rustflags: ""\n components: rustfmt, clippy\n cache: false\n - uses: Swatinem/rust-cache@v2\n with:\n workspaces: ./rust/cubesql -> target\n # default key\n key: cubesql-${{ runner.OS }}-x86_64-unknown-linux-gnu\n shared-key: cubesql-${{ runner.OS }}-x86_64-unknown-linux-gnu\n - name: Lint CubeSQL\n run: cd rust/cubesql && cargo fmt --all -- --check\n - name: Lint Native\n run: cd packages/cubejs-backend-native && cargo fmt --all -- --check\n - name: Lint cubenativeutils\n run: cd rust/cubenativeutils && cargo fmt --all -- --check\n - name: Lint cubesqlplanner\n run: cd rust/cubesqlplanner && cargo fmt --all -- --check\n - name: Clippy CubeSQL\n run: cd rust/cubesql && cargo clippy --locked --workspace --all-targets --keep-going -- -D warnings\n - name: Clippy Native\n run: cd packages/cubejs-backend-native && cargo clippy --locked --workspace --all-targets --keep-going -- -D warnings\n - name: Clippy Native (with Python)\n run: cd packages/cubejs-backend-native && cargo clippy --locked --workspace --all-targets --keep-going --features python -- -D warnings\n\n unit:\n # We use host instead of cross container, because it's much faster\n runs-on: ubuntu-24.04\n timeout-minutes: 60\n name: Unit (Rewrite Engine)\n\n steps:\n - name: Checkout\n uses: actions/checkout@v4\n with:\n # pulls all commits (needed for codecov)\n fetch-depth: 2\n - uses: Swatinem/rust-cache@v2\n with:\n workspaces: ./rust/cubesql -> target\n # default key\n key: cubesql-${{ runner.OS }}-x86_64-unknown-linux-gnu\n shared-key: cubesql-${{ runner.OS }}-x86_64-unknown-linux-gnu\n - name: Install lld\n run: |\n # ubuntu 24.04 has lld-18\n sudo apt-get update && sudo apt install -y lld\n - name: Install cargo-llvm-cov@0.6.10\n uses: baptiste0928/cargo-install@v3\n with:\n crate: cargo-llvm-cov\n version: "0.6.10"\n - name: Unit tests (Rewrite Engine)\n env:\n CUBESQL_TESTING_CUBE_TOKEN: ${{ secrets.CUBESQL_TESTING_CUBE_TOKEN }}\n CUBESQL_TESTING_CUBE_URL: ${{ secrets.CUBESQL_TESTING_CUBE_URL }}\n CUBESQL_SQL_PUSH_DOWN: true\n CUBESQL_REWRITE_CACHE: true\n CUBESQL_REWRITE_TIMEOUT: 60\n run: |\n cd rust/cubesql\n cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info\n - name: Upload code coverage\n uses: codecov/codecov-action@v5\n with:\n token: ${{ secrets.CODECOV_TOKEN }}\n files: ./rust/cubesql/lcov.info\n verbose: true\n flags: cubesql\n fail_ci_if_error: false\n\n native_linux:\n needs: [lint]\n # Please use minimal possible version of ubuntu, because it produces constraint on glibc\n runs-on: ubuntu-22.04\n timeout-minutes: 60\n name: Build Linux GNU ${{ matrix.node-version }}.x ${{ matrix.target }} with Python ${{ matrix.python-version }}\n strategy:\n matrix:\n # Current used version + 1 LTS\n # TODO: Add 24 after it's been released (don't forget to uncomment excludes below!)\n node-version: [22]\n python-version: ["3.9", "3.10", "3.11", "3.12", "fallback"]\n target: ["x86_64-unknown-linux-gnu", "aarch64-unknown-linux-gnu"]\n # minimize number of jobs\n exclude:\n# TODO: uncomment after adding v24\n# - node-version: 22\n# target: "aarch64-unknown-linux-gnu"\n - python-version: 3.10\n target: "aarch64-unknown-linux-gnu"\n - python-version: 3.11\n target: "aarch64-unknown-linux-gnu"\n fail-fast: false\n container:\n image: cubejs/rust-cross:${{ matrix.target }}-15082024${{ matrix.python-version != 'fallback' && format('-python-{0}', matrix.python-version) || '' }}\n\n steps:\n - name: Checkout\n uses: actions/checkout@v4\n - name: Install Rust\n uses: actions-rust-lang/setup-rust-toolchain@v1\n with:\n toolchain: 1.84.1\n # override: true # this is by default on\n rustflags: ""\n components: rustfmt\n target: ${{ matrix.target }}\n cache: false\n - uses: Swatinem/rust-cache@v2\n with:\n workspaces: ./rust/cubesql -> target\n key: cubesql-${{ matrix.target }}\n shared-key: cubesql-${{ matrix.target }}\n - name: Install Node.js ${{ matrix.node-version }}\n uses: actions/setup-node@v4\n with:\n node-version: ${{ matrix.node-version }}\n - name: Install Yarn\n run: npm install -g yarn\n - name: Set Yarn version\n run: yarn policies set-version v1.22.22\n - name: Get yarn cache directory path\n id: yarn-cache-dir-path\n run: echo "dir=$(yarn cache dir)" >> "$GITHUB_OUTPUT"\n - name: Restore yarn cache\n uses: actions/cache@v4\n with:\n path: ${{ steps.yarn-cache-dir-path.outputs.dir }}\n key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}\n restore-keys: |\n ${{ runner.os }}-yarn-\n - name: Yarn install\n uses: nick-fields/retry@v3\n env:\n CUBESTORE_SKIP_POST_INSTALL: true\n with:\n max_attempts: 3\n retry_on: error\n retry_wait_seconds: 15\n timeout_minutes: 20\n command: yarn install --frozen-lockfile\n - name: Lerna tsc\n run: yarn tsc\n - name: Build native (fallback)\n if: (matrix.python-version == 'fallback')\n env:\n CARGO_BUILD_TARGET: ${{ matrix.target }}\n working-directory: ./packages/cubejs-backend-native\n run: yarn run native:build-debug\n - name: Setup cross compilation\n if: (matrix.target == 'aarch64-unknown-linux-gnu')\n uses: allenevans/set-env@v4.0.0\n with:\n PYO3_CROSS_PYTHON_VERSION: ${{ matrix.python-version }}\n - name: Build native (with Python)\n if: (matrix.python-version != 'fallback')\n env:\n PYO3_PYTHON: python${{ matrix.python-version }}\n CARGO_BUILD_TARGET: ${{ matrix.target }}\n working-directory: ./packages/cubejs-backend-native\n run: yarn run native:build-debug-python\n - name: Test native (GNU only)\n if: (matrix.target == 'x86_64-unknown-linux-gnu')\n env:\n CUBESQL_STREAM_MODE: true\n CUBEJS_NATIVE_INTERNAL_DEBUG: true\n working-directory: ./packages/cubejs-backend-native\n run: yarn run test:unit\n - name: Run E2E Smoke testing over whole Cube (GNU only)\n if: (matrix.target == 'x86_64-unknown-linux-gnu')\n env:\n CUBEJS_NATIVE_INTERNAL_DEBUG: true\n working-directory: ./packages/cubejs-testing\n run: yarn smoke:cubesql\n\n native_macos:\n needs: [lint]\n runs-on: ${{ matrix.os-version }}\n timeout-minutes: 60\n name: Build ${{ matrix.os-version }} ${{ matrix.target }} ${{ matrix.node-version }} with Python ${{ matrix.python-version }}\n\n strategy:\n matrix:\n # We do not need to test under all versions, we do it under linux\n node-version: [22.x]\n os-version: ["macos-13"]\n target: ["x86_64-apple-darwin", "aarch64-apple-darwin"]\n include:\n - target: x86_64-apple-darwin\n python-version: "3.9"\n - target: x86_64-apple-darwin\n python-version: "3.10"\n - target: x86_64-apple-darwin\n python-version: "3.11"\n - target: x86_64-apple-darwin\n python-version: "3.12"\n - target: x86_64-apple-darwin\n python-version: "fallback"\n - target: aarch64-apple-darwin\n python-version: "fallback"\n fail-fast: false\n\n steps:\n - name: Checkout\n uses: actions/checkout@v4\n - name: Install Rust\n uses: actions-rust-lang/setup-rust-toolchain@v1\n with:\n toolchain: 1.84.1\n # override: true # this is by default on\n rustflags: ""\n components: rustfmt\n target: ${{ matrix.target }}\n - name: Install Python\n uses: actions/setup-python@v5\n if: (matrix.python-version != 'fallback')\n with:\n python-version: ${{ matrix.python-version }}\n - name: Install Node.js ${{ matrix.node-version }}\n uses: actions/setup-node@v4\n with:\n node-version: ${{ matrix.node-version }}\n - name: Set Yarn version\n run: yarn policies set-version v1.22.22\n - name: Get yarn cache directory path\n id: yarn-cache-dir-path\n run: echo "dir=$(yarn cache dir)" >> "$GITHUB_OUTPUT"\n shell: bash\n - name: Restore yarn cache\n uses: actions/cache@v4\n with:\n path: ${{ steps.yarn-cache-dir-path.outputs.dir }}\n key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}\n restore-keys: |\n ${{ runner.os }}-yarn-\n - name: Yarn install\n uses: nick-fields/retry@v3\n env:\n CUBESTORE_SKIP_POST_INSTALL: true\n with:\n max_attempts: 3\n retry_on: error\n retry_wait_seconds: 15\n timeout_minutes: 20\n command: yarn install --frozen-lockfile\n - name: Lerna tsc\n run: yarn tsc\n - name: Build native (fallback)\n if: (matrix.python-version == 'fallback')\n env:\n CUBESQL_STREAM_MODE: true\n CUBEJS_NATIVE_INTERNAL_DEBUG: true\n CARGO_BUILD_TARGET: ${{ matrix.target }}\n run: cd packages/cubejs-backend-native && yarn run native:build\n - name: Build native (with Python)\n if: (matrix.python-version != 'fallback')\n env:\n PYO3_PYTHON: python${{ matrix.python-version }}\n CARGO_BUILD_TARGET: ${{ matrix.target }}\n run: cd packages/cubejs-backend-native && yarn run native:build-debug-python\n - name: Tests\n # We cannot test arm64 on x64\n if: (matrix.target == 'x86_64-apple-darwin')\n env:\n CUBESQL_STREAM_MODE: true\n CUBEJS_NATIVE_INTERNAL_DEBUG: true\n run: cd packages/cubejs-backend-native && yarn run test:unit\n\n native_windows:\n needs: [lint]\n runs-on: ${{ matrix.os-version }}\n timeout-minutes: 60\n name: Build ${{ matrix.os-version }} ${{ matrix.node-version }} with Python ${{ matrix.python-version }}\n\n strategy:\n matrix:\n # We do not need to test under all versions, we do it under linux\n node-version: [22.x]\n os-version: [windows-2019]\n python-version: ["fallback"]\n fail-fast: false\n\n steps:\n - name: Checkout\n uses: actions/checkout@v4\n - name: Disable rustup update (issue workaround for Windows)\n run: rustup set auto-self-update disable\n shell: bash\n - name: Install Rust\n uses: actions-rust-lang/setup-rust-toolchain@v1\n with:\n toolchain: 1.84.1\n # override: true # this is by default on\n rustflags: ""\n components: rustfmt\n - name: Install Python\n uses: actions/setup-python@v5\n if: (matrix.python-version != 'fallback')\n with:\n python-version: ${{ matrix.python-version }}\n - name: Install Node.js ${{ matrix.node-version }}\n uses: actions/setup-node@v4\n with:\n node-version: ${{ matrix.node-version }}\n - name: Set Yarn version\n run: yarn policies set-version v1.22.22\n - name: Get yarn cache directory path\n id: yarn-cache-dir-path\n run: echo "dir=$(yarn cache dir)" >> "$GITHUB_OUTPUT"\n shell: bash\n - name: Restore yarn cache\n uses: actions/cache@v4\n with:\n path: ${{ steps.yarn-cache-dir-path.outputs.dir }}\n key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}\n restore-keys: |\n ${{ runner.os }}-yarn-\n - name: Yarn install\n uses: nick-fields/retry@v3\n env:\n CUBESTORE_SKIP_POST_INSTALL: true\n with:\n max_attempts: 3\n retry_on: error\n retry_wait_seconds: 15\n timeout_minutes: 20\n command: yarn install --frozen-lockfile\n - name: Lerna tsc\n run: yarn tsc\n - name: Build native (fallback)\n if: (matrix.python-version == 'fallback')\n env:\n CUBESQL_STREAM_MODE: true\n CUBEJS_NATIVE_INTERNAL_DEBUG: true\n run: cd packages/cubejs-backend-native && yarn run native:build\n - name: Build native (with Python)\n if: (matrix.python-version != 'fallback')\n env:\n PYO3_PYTHON: python${{ matrix.python-version }}\n run: cd packages/cubejs-backend-native && yarn run native:build-debug-python\n - name: Tests\n env:\n CUBESQL_STREAM_MODE: true\n CUBEJS_NATIVE_INTERNAL_DEBUG: true\n run: cd packages/cubejs-backend-native && yarn run test:unit\n
dataset_sample\yaml\cube-js_cube\.github\workflows\rust-cubesql.yml
rust-cubesql.yml
YAML
13,877
0.8
0.036745
0.05163
python-kit
716
2024-03-03T00:02:14.360916
Apache-2.0
false
2b8ce518d7e9b8c710ab67bcfbd4427d
name: Rust\n\non:\n push:\n paths:\n - '.github/workflows/rust-cubestore.yml'\n - 'rust/cubestore/**'\n branches-ignore:\n - master\n pull_request:\n paths:\n - '.github/workflows/rust-cubestore.yml'\n - 'rust/cubestore/**'\n\nenv:\n CARGO_INCREMENTAL: 0\n CARGO_NET_RETRY: 10\n RUSTUP_MAX_RETRIES: 10\n\njobs:\n debian:\n name: Debian Rust ${{ matrix.rust }}\n # 22.04 has gcc 11, new binutils (ld)\n runs-on: ubuntu-22.04\n timeout-minutes: 90\n strategy:\n fail-fast: false\n matrix:\n rust: [nightly-2024-01-29]\n container:\n image: cubejs/rust-builder:bookworm-llvm-18\n env:\n RUST: ${{ matrix.rust }}\n steps:\n - name: Prepare directories\n # See TMPDIR comment below\n run: mkdir /__w/tmp\n - name: Checkout\n uses: actions/checkout@v4\n - name: Install Rust\n uses: actions-rust-lang/setup-rust-toolchain@v1\n with:\n toolchain: ${{ matrix.rust }}\n # override: true # this is by default on\n rustflags: ""\n components: rustfmt\n - uses: Swatinem/rust-cache@v2\n with:\n workspaces: ./rust/cubestore -> target\n # We should use a separate key for testing to pass disk space limitations\n shared-key: cubestore-testing\n key: ubuntu-22.04\n - name: Run cargo fmt cubestore\n run: |\n cargo fmt --manifest-path rust/cubestore/cubestore/Cargo.toml -- --check\n - name: Run cargo fmt cubehll\n run: |\n cargo fmt --manifest-path rust/cubestore/cubehll/Cargo.toml -- --check\n - name: Run cargo build\n run: |\n cargo build --manifest-path rust/cubestore/Cargo.toml\n - name: Run cargo test\n env:\n # LocalDirRemoteFs expect that std::env::temp_dir and its local dir is on same FS, to use `rename`\n # On Unix it's controlled by TMPDIR\n # When using `container` in GHA checkout will be located in `/__w`, and that's a separate mount from `/tmp`\n TMPDIR: /__w/tmp\n run: |\n cargo test --manifest-path rust/cubestore/Cargo.toml\n\n docker-image-latest:\n name: Build only :latest image\n runs-on: ${{ matrix.os }}\n strategy:\n fail-fast: false\n matrix:\n include:\n - os: ubuntu-24.04\n target: x86_64-unknown-linux-gnu\n platforms: linux/amd64\n build-args: WITH_AVX2=1\n - os: ubuntu-24.04-arm\n target: aarch64-unknown-linux-gnu\n platforms: linux/arm64\n build-args: WITH_AVX2=0\n timeout-minutes: 60\n if: github.ref != 'refs/heads/master'\n steps:\n - name: Checkout\n uses: actions/checkout@v4\n - name: Set up Docker Buildx\n uses: docker/setup-buildx-action@v3\n - name: Build only\n uses: docker/build-push-action@v6\n with:\n context: ./rust/\n file: ./rust/cubestore/Dockerfile\n platforms: ${{ matrix.platforms }}\n build-args: ${{ matrix.build-args }}\n push: false\n cache-from: type=gha\n cache-to: type=gha,mode=max\n\n cubestore:\n runs-on: ${{ matrix.os }}\n timeout-minutes: 90\n env:\n RUSTFLAGS: '-Ctarget-feature=+crt-static'\n OPENSSL_STATIC: 1\n strategy:\n matrix:\n target:\n - x86_64-pc-windows-msvc\n - x86_64-apple-darwin\n - aarch64-apple-darwin\n include:\n - os: windows-2019\n target: x86_64-pc-windows-msvc\n executable_name: cubestored.exe\n strip: true\n # cubestored.exe: CantPackException: superfluous data between sections\n compress: false\n # Please use minimal possible version of macOS, because it produces constraint on libstdc++\n - os: macos-13\n target: x86_64-apple-darwin\n executable_name: cubestored\n # upx has been disabled because it is crashing for macOS Ventura or above! It was disabled on 2024-09-05.\n strip: false\n compress: false\n - os: macos-14\n target: aarch64-apple-darwin\n executable_name: cubestored\n # upx has been disabled because it is crashing for macOS Ventura or above! It was disabled on 2024-09-05.\n strip: false\n compress: false\n fail-fast: false\n steps:\n - uses: actions/checkout@v4\n - name: Disable rustup update (issue workaround for Windows)\n run: rustup set auto-self-update disable\n if: contains(runner.os, 'windows')\n shell: bash\n - uses: Swatinem/rust-cache@v2\n with:\n workspaces: ./rust/cubestore -> target\n prefix-key: v0-rust-cubestore-cross\n key: target-${{ matrix.target }}\n - uses: ilammy/msvc-dev-cmd@v1\n if: ${{ startsWith(matrix.os, 'windows') }}\n - name: Install OpenSSL for Windows\n if: ${{ startsWith(matrix.os, 'windows') }}\n run: vcpkg integrate install; vcpkg install openssl:x64-windows\n - name: Instal LLVM for Windows\n if: ${{ startsWith(matrix.os, 'windows') }}\n run: choco install -y --force llvm --version 18.1.6\n - name: Set Env Variables for Windows\n uses: allenevans/set-env@v3.0.0\n if: ${{ startsWith(matrix.os, 'windows') }}\n with:\n OPENSSL_DIR: 'C:/vcpkg/packages/openssl_x64-windows'\n # This paths are required to work with static linking\n OPENSSL_LIB_DIR: 'C:/vcpkg/packages/openssl_x64-windows/lib'\n OPENSSL_INCLUDE_DIR: 'C:/vcpkg/packages/openssl_x64-windows/include'\n LIBCLANG_PATH: 'C:\Program Files\LLVM\bin'\n - name: Build with Cargo\n run: |\n cd rust/cubestore && cargo build --release --target=${{ matrix.target }} -p cubestore\n - name: Compress binaries\n uses: svenstaro/upx-action@v2\n if: ${{ matrix.compress }}\n with:\n file: rust/cubestore/target/${{ matrix.target }}/release/${{ matrix.executable_name }}\n args: --lzma\n strip: ${{ matrix.strip }}\n - name: Create folder for archive\n run: |\n mkdir cubestore-archive\n mkdir cubestore-archive/bin\n - name: Copy/paste OpenSSL to Archive (hotfix for Windows)\n if: ${{ startsWith(matrix.os, 'windows') }}\n run: cp C:/vcpkg/packages/openssl_x64-windows/bin/*.dll cubestore-archive/bin\n - name: Create archive for release\n run: |\n mv rust/cubestore/target/${{ matrix.target }}/release/${{ matrix.executable_name }} cubestore-archive/bin/${{ matrix.executable_name }}\n cd cubestore-archive\n tar -cvzf cubestored-${{ matrix.target }}.tar.gz ./*\n - uses: actions/upload-artifact@v4\n with:\n path: cubestore-archive/cubestored-${{ matrix.target }}.tar.gz\n name: cubestored-${{ matrix.target }}.tar.gz\n retention-days: 1\n\n cubestore_linux:\n runs-on: ${{ matrix.os }}\n timeout-minutes: 90\n env:\n OPENSSL_STATIC: 1\n strategy:\n matrix:\n target:\n - x86_64-unknown-linux-gnu\n - x86_64-unknown-linux-musl\n - aarch64-unknown-linux-gnu\n include:\n # Please use minimal possible version of ubuntu, because it produces constraint on glibc\n - os: ubuntu-22.04\n target: x86_64-unknown-linux-gnu\n executable_name: cubestored\n strip: true\n compress: false\n - os: ubuntu-22.04\n target: x86_64-unknown-linux-musl\n executable_name: cubestored\n strip: true\n # cubestored: CantPackException: bad DT_HASH nbucket=0x344 len=0x1890\n compress: false\n - os: ubuntu-22.04\n target: aarch64-unknown-linux-gnu\n executable_name: cubestored\n # Unable to recognise the format of the input file `rust/cubestore/target/aarch64-unknown-linux-gnu/release/cubestored'\n strip: false\n # UPX is broken, issue https://github.com/cube-js/cube/issues/4474\n compress: false\n fail-fast: false\n container:\n image: cubejs/rust-cross:${{ matrix.target }}-15082024\n steps:\n - uses: actions/checkout@v4\n - name: Setup Rust toolchain\n uses: actions-rust-lang/setup-rust-toolchain@v1\n with:\n toolchain: nightly-2024-01-29\n target: ${{ matrix.target }}\n # override: true # this is by default on\n rustflags: ""\n components: rustfmt\n - uses: Swatinem/rust-cache@v2\n with:\n workspaces: ./rust/cubestore -> target\n prefix-key: v0-rust-cubestore-cross\n key: target-${{ matrix.target }}\n - name: Build with Cargo\n run: |\n cd rust/cubestore && cargo build --release --target=${{ matrix.target }} -p cubestore\n - name: Compress binaries\n uses: svenstaro/upx-action@v2\n if: ${{ matrix.compress }}\n with:\n file: rust/cubestore/target/${{ matrix.target }}/release/${{ matrix.executable_name }}\n args: --lzma\n strip: ${{ matrix.strip }}\n - name: Create folder for archive\n run: |\n mkdir cubestore-archive\n mkdir cubestore-archive/bin\n - name: Create archive for release\n run: |\n mv rust/cubestore/target/${{ matrix.target }}/release/${{ matrix.executable_name }} cubestore-archive/bin/${{ matrix.executable_name }}\n cd cubestore-archive\n tar -cvzf cubestored-${{ matrix.target }}.tar.gz ./*\n - uses: actions/upload-artifact@v4\n with:\n path: cubestore-archive/cubestored-${{ matrix.target }}.tar.gz\n name: cubestored-${{ matrix.target }}.tar.gz\n retention-days: 1\n
dataset_sample\yaml\cube-js_cube\.github\workflows\rust-cubestore.yml
rust-cubestore.yml
YAML
9,764
0.95
0.079245
0.065637
react-lib
481
2024-08-01T21:40:34.099649
Apache-2.0
false
42da5375be53c5da4c11c895f9924ccf
name: Lint CI Workflows\n\non:\n push:\n branches: [ master ]\n paths:\n - .github/workflows/**\n pull_request:\n paths:\n - .github/workflows/**\n\njobs:\n lint:\n name: Lint workflows yaml\n runs-on: ubuntu-latest\n\n steps:\n - name: Checkout\n uses: actions/checkout@v4\n - name: Download actionlint\n id: get_actionlint\n run: bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)\n shell: bash\n - name: Check workflow files\n run: ${{ steps.get_actionlint.outputs.executable }} -color\n shell: bash\n
dataset_sample\yaml\cube-js_cube\.github\workflows\workflow-lint.yml
workflow-lint.yml
YAML
617
0.8
0
0
awesome-app
434
2023-09-29T01:19:20.105933
GPL-3.0
false
bdf3ed9f4a88fcaf256b127c6ccafb3c
version: '2.2'\n\nservices:\n cube:\n image: cubejs/cube:latest\n ports:\n - 4000:4000\n - 3000:3000\n env_file: .env\n volumes:\n - .:/cube/conf
dataset_sample\yaml\cube-js_cube\examples\advanced-pre-aggregations-workshop\docker-compose.yml
docker-compose.yml
YAML
163
0.7
0
0
awesome-app
193
2024-09-21T21:17:34.457792
MIT
false
967a6cf3f6bc1593c2cf0a295a994639
service: event-collection\n\nprovider:\n name: aws\n runtime: nodejs8.10\n\n iamRoleStatements:\n - Effect: "Allow"\n Action:\n - "kinesis:PutRecord"\n Resource:\n - "*"\n\nfunctions:\n collect:\n handler: handler.collect\n events:\n - http:\n path: collect\n method: post\n cors: true\n
dataset_sample\yaml\cube-js_cube\examples\aws-web-analytics\event-collection\serverless.yml
serverless.yml
YAML
335
0.85
0
0
awesome-app
865
2025-03-30T17:19:21.893092
MIT
false
c230a5f2210c7e8ab039365f52fb43ea
\nversion: '2.2'\n\nservices:\n cube:\n image: cubejs/cube:v0.26.38\n ports:\n - 4000:4000 # Cube.js API and Developer Playground\n - 3000:3000 # Dashboard app, if created\n env_file: .env\n volumes:\n - .:/cube/conf\n # We ignore Cube.js deps, because they are built-in inside the official Docker image\n - .empty:/cube/conf/node_modules/@cubejs-backend/\n
dataset_sample\yaml\cube-js_cube\examples\bigquery-public-datasets\docker-compose.yml
docker-compose.yml
YAML
383
0.8
0.071429
0.083333
python-kit
815
2023-07-16T18:40:14.164339
BSD-3-Clause
false
b855870d8e7221ac32fb52604622b652
version: '2.2'\n\nservices:\n cube:\n image: cubejs/cube:latest\n ports:\n - 4000:4000\n - 3000:3000\n env_file: .env\n volumes:\n - .:/cube/conf
dataset_sample\yaml\cube-js_cube\examples\building-a-data-app-with-cube-workshop\docker-compose.yml
docker-compose.yml
YAML
163
0.7
0
0
react-lib
709
2024-09-07T04:42:46.112132
GPL-3.0
false
967a6cf3f6bc1593c2cf0a295a994639
version: '2.2'\n\nservices:\n cube:\n image: cubejs/cube:latest\n ports:\n - 4000:4000\n - 3000:3000\n env_file: .env\n volumes:\n - .:/cube/conf
dataset_sample\yaml\cube-js_cube\examples\building-an-open-source-data-stack-with-clickhouse-and-cube-workshop\docker-compose.yml
docker-compose.yml
YAML
163
0.7
0
0
vue-tools
18
2024-10-15T22:03:47.407425
GPL-3.0
false
967a6cf3f6bc1593c2cf0a295a994639
version: '2.2'\n\nservices:\n cube:\n image: nginx:latest\n ports:\n - 4000:4000\n volumes:\n - ./nginx:/etc/nginx/conf.d\n depends_on:\n - cube_api_1\n - cube_api_2\n\n cube_api_1:\n restart: always\n image: cubejs/cube:v0.31.67\n environment:\n - CUBEJS_DB_TYPE=postgres\n - CUBEJS_DB_HOST=demo-db-examples.cube.dev\n - CUBEJS_DB_PORT=5432\n - CUBEJS_DB_NAME=ecom\n - CUBEJS_DB_USER=cube\n - CUBEJS_DB_PASS=12345\n - CUBEJS_CUBESTORE_HOST=cubestore_router\n # - CUBEJS_CACHE_AND_QUEUE_DRIVER=cubestore\n - CUBEJS_REDIS_URL=redis://redis:6379\n - CUBEJS_API_SECRET=SECRET\n - CUBEJS_LOG_LEVEL=info\n volumes:\n - .:/cube/conf\n depends_on:\n - cubestore_router\n - cube_refresh_worker\n - redis\n \n cube_api_2:\n restart: always\n image: cubejs/cube:v0.31.67\n environment:\n - CUBEJS_DB_TYPE=postgres\n - CUBEJS_DB_HOST=demo-db-examples.cube.dev\n - CUBEJS_DB_PORT=5432\n - CUBEJS_DB_NAME=ecom\n - CUBEJS_DB_USER=cube\n - CUBEJS_DB_PASS=12345\n - CUBEJS_CUBESTORE_HOST=cubestore_router\n # - CUBEJS_CACHE_AND_QUEUE_DRIVER=cubestore\n - CUBEJS_REDIS_URL=redis://redis:6379\n - CUBEJS_API_SECRET=SECRET\n - CUBEJS_LOG_LEVEL=info\n volumes:\n - .:/cube/conf\n depends_on:\n - cubestore_router\n - cube_refresh_worker\n - redis\n\n cube_refresh_worker:\n restart: always\n image: cubejs/cube:v0.31.67\n environment:\n - CUBEJS_DB_TYPE=postgres\n - CUBEJS_DB_HOST=demo-db-examples.cube.dev\n - CUBEJS_DB_PORT=5432\n - CUBEJS_DB_NAME=ecom\n - CUBEJS_DB_USER=cube\n - CUBEJS_DB_PASS=12345\n - CUBEJS_CUBESTORE_HOST=cubestore_router\n # - CUBEJS_CACHE_AND_QUEUE_DRIVER=cubestore\n - CUBEJS_REDIS_URL=redis://redis:6379\n - CUBEJS_API_SECRET=SECRET\n - CUBEJS_LOG_LEVEL=info\n - CUBEJS_REFRESH_WORKER=true\n volumes:\n - .:/cube/conf\n depends_on:\n - cubestore_router\n - redis\n\n cubestore_router:\n restart: always\n image: cubejs/cubestore:v0.31.67-arm64v8\n ports:\n - 3306:3306\n environment:\n - CUBESTORE_WORKERS=cubestore_worker_1:10001,cubestore_worker_2:10002\n - CUBESTORE_REMOTE_DIR=/cube/data\n - CUBESTORE_META_PORT=9999\n - CUBESTORE_SERVER_NAME=cubestore_router:9999\n volumes:\n - .cubestore:/cube/data\n\n cubestore_worker_1:\n restart: always\n image: cubejs/cubestore:v0.31.67-arm64v8\n environment:\n - CUBESTORE_WORKERS=cubestore_worker_1:10001,cubestore_worker_2:10002\n - CUBESTORE_SERVER_NAME=cubestore_worker_1:10001\n - CUBESTORE_WORKER_PORT=10001\n - CUBESTORE_REMOTE_DIR=/cube/data\n - CUBESTORE_META_ADDR=cubestore_router:9999\n volumes:\n - .cubestore:/cube/data\n depends_on:\n - cubestore_router\n\n cubestore_worker_2:\n restart: always\n image: cubejs/cubestore:v0.31.67-arm64v8\n environment:\n - CUBESTORE_WORKERS=cubestore_worker_1:10001,cubestore_worker_2:10002\n - CUBESTORE_SERVER_NAME=cubestore_worker_2:10002\n - CUBESTORE_WORKER_PORT=10002\n - CUBESTORE_REMOTE_DIR=/cube/data\n - CUBESTORE_META_ADDR=cubestore_router:9999\n volumes:\n - .cubestore:/cube/data\n depends_on:\n - cubestore_router\n\n redis:\n image: bitnami/redis:latest\n ports:\n - 6379:6379\n environment:\n - ALLOW_EMPTY_PASSWORD=yes\n logging:\n driver: none\n
dataset_sample\yaml\cube-js_cube\examples\bye-redis\docker-compose.yml
docker-compose.yml
YAML
3,428
0.8
0
0.025
awesome-app
772
2023-07-28T22:00:12.990676
Apache-2.0
false
26475c98795505775915f37c1b4d973c
cubes:\n - name: Orders\n sql: SELECT * FROM public.orders\n\n measures:\n - name: count\n type: count\n\n dimensions:\n - name: created_at\n sql: created_at\n type: time
dataset_sample\yaml\cube-js_cube\examples\bye-redis\schema\Orders.yml
Orders.yml
YAML
190
0.7
0
0
vue-tools
378
2023-12-15T13:14:37.657767
BSD-3-Clause
false
4f4e5fec677196dc2082020075ac4385
\nversion: '2.2'\n\nservices:\n cube:\n image: cubejs/cube:v0.26.16\n ports:\n - 4000:4000 # Cube.js API and Developer Playground\n - 3000:3000 # Dashboard app, if created\n env_file: .env\n volumes:\n - .:/cube/conf\n # We ignore Cube.js deps, because they are built-in inside the official Docker image\n - .empty:/cube/conf/node_modules/@cubejs-backend/\n
dataset_sample\yaml\cube-js_cube\examples\clickhouse-dashboard\docker-compose.yml
docker-compose.yml
YAML
383
0.8
0.071429
0.083333
vue-tools
98
2023-09-13T12:37:12.459351
GPL-3.0
false
75d93686636ea18caa2b60dacecfaa84
version: '2.2'\n\nservices:\n cube:\n image: cubejs/cube:latest\n ports:\n - 4001:4000\n - 3001:3000\n environment:\n - CUBEJS_REFRESH_WORKER=false\n - CUBEJS_ROLLUP_ONLY=true\n # - CUBEJS_DEV_MODE=true\n\n - CUBEJS_DB_TYPE=bigquery\n - CUBEJS_DB_BQ_PROJECT_ID=${CUBEJS_DB_BQ_PROJECT_ID}\n - CUBEJS_DB_BQ_CREDENTIALS=${CUBEJS_DB_BQ_CREDENTIALS}\n - CUBEJS_DB_EXPORT_BUCKET=${CUBEJS_DB_EXPORT_BUCKET}\n\n - CUBEJS_EXT_DB_TYPE=cubestore\n - CUBEJS_EXT_DB_HOST=cubestore\n - CUBEJS_EXT_DB_PORT=3030\n\n - CUBEJS_REDIS_URL=redis://redis:6379\n \n - CUBEJS_API_SECRET=SECRET\n volumes:\n - .:/cube/conf\n depends_on:\n - refresh_worker\n - cubestore\n - redis\n\n refresh_worker:\n image: cubejs/cube:latest\n environment:\n - CUBEJS_REFRESH_WORKER=true\n\n - CUBEJS_DB_TYPE=bigquery\n - CUBEJS_DB_BQ_PROJECT_ID=${CUBEJS_DB_BQ_PROJECT_ID}\n - CUBEJS_DB_BQ_CREDENTIALS=${CUBEJS_DB_BQ_CREDENTIALS}\n - CUBEJS_DB_EXPORT_BUCKET=${CUBEJS_DB_EXPORT_BUCKET}\n\n - CUBEJS_EXT_DB_TYPE=cubestore\n - CUBEJS_EXT_DB_HOST=cubestore\n - CUBEJS_EXT_DB_PORT=3030\n\n - CUBEJS_REDIS_URL=redis://redis:6379\n \n - CUBEJS_API_SECRET=SECRET\n volumes:\n - .:/cube/conf\n depends_on:\n - redis\n - cubestore_worker_1\n - cubestore_worker_2\n - cubestore_worker_3\n - cubestore_worker_4\n\n cubestore:\n image: cubejs/cubestore:latest\n environment:\n - CUBESTORE_WORKERS=cubestore_worker_1:10001,cubestore_worker_2:10002,cubestore_worker_3:10003,cubestore_worker_4:10004\n - CUBESTORE_REMOTE_DIR=/cube/data\n - CUBESTORE_META_PORT=9999\n - CUBESTORE_SERVER_NAME=cubestore:9999\n volumes:\n - .cubestore:/cube/data\n\n cubestore_worker_1:\n image: cubejs/cubestore:latest\n environment:\n - CUBESTORE_WORKERS=cubestore_worker_1:10001,cubestore_worker_2:10002,cubestore_worker_3:10003,cubestore_worker_4:10004\n - CUBESTORE_SERVER_NAME=cubestore_worker_1:10001\n - CUBESTORE_WORKER_PORT=10001\n - CUBESTORE_REMOTE_DIR=/cube/data\n - CUBESTORE_META_ADDR=cubestore:9999\n volumes:\n - .cubestore:/cube/data\n depends_on:\n - cubestore\n\n cubestore_worker_2:\n image: cubejs/cubestore:latest\n environment:\n - CUBESTORE_WORKERS=cubestore_worker_1:10001,cubestore_worker_2:10002,cubestore_worker_3:10003,cubestore_worker_4:10004\n - CUBESTORE_SERVER_NAME=cubestore_worker_2:10002\n - CUBESTORE_WORKER_PORT=10002\n - CUBESTORE_REMOTE_DIR=/cube/data\n - CUBESTORE_META_ADDR=cubestore:9999\n volumes:\n - .cubestore:/cube/data\n depends_on:\n - cubestore\n\n cubestore_worker_3:\n image: cubejs/cubestore:latest\n environment:\n - CUBESTORE_WORKERS=cubestore_worker_1:10001,cubestore_worker_2:10002,cubestore_worker_3:10003,cubestore_worker_4:10004\n - CUBESTORE_SERVER_NAME=cubestore_worker_3:10003\n - CUBESTORE_WORKER_PORT=10003\n - CUBESTORE_REMOTE_DIR=/cube/data\n - CUBESTORE_META_ADDR=cubestore:9999\n volumes:\n - .cubestore:/cube/data\n depends_on:\n - cubestore\n\n cubestore_worker_4:\n image: cubejs/cubestore:latest\n environment:\n - CUBESTORE_WORKERS=cubestore_worker_1:10001,cubestore_worker_2:10002,cubestore_worker_3:10003,cubestore_worker_4:10004\n - CUBESTORE_SERVER_NAME=cubestore_worker_4:10004\n - CUBESTORE_WORKER_PORT=10004\n - CUBESTORE_REMOTE_DIR=/cube/data\n - CUBESTORE_META_ADDR=cubestore:9999\n volumes:\n - .cubestore:/cube/data\n depends_on:\n - cubestore\n\n redis:\n image: bitnami/redis:latest\n environment:\n - ALLOW_EMPTY_PASSWORD=yes\n logging:\n driver: none
dataset_sample\yaml\cube-js_cube\examples\cubestore-benchmark\cubejs-cubestore\docker-compose.yml
docker-compose.yml
YAML
3,698
0.8
0
0.009091
react-lib
188
2025-03-03T03:46:29.592579
Apache-2.0
false
a1b98f0b23d9f80869ff4e303d9c1aac
version: '2.2'\n\nservices:\n cube:\n image: cubejs/cube:latest\n ports:\n - 4002:4000\n - 3002:3000\n environment:\n - CUBEJS_REFRESH_WORKER=false\n - CUBEJS_ROLLUP_ONLY=true\n # - CUBEJS_DEV_MODE=true\n\n - CUBEJS_DB_TYPE=bigquery\n - CUBEJS_DB_BQ_PROJECT_ID=${CUBEJS_DB_BQ_PROJECT_ID}\n - CUBEJS_DB_BQ_CREDENTIALS=${CUBEJS_DB_BQ_CREDENTIALS}\n - CUBEJS_DB_EXPORT_BUCKET=${CUBEJS_DB_EXPORT_BUCKET}\n\n - CUBEJS_EXT_DB_TYPE=postgres\n - CUBEJS_EXT_DB_HOST=postgres\n - CUBEJS_EXT_DB_PORT=5432\n - CUBEJS_EXT_DB_NAME=postgres\n - CUBEJS_EXT_DB_USER=postgres\n - CUBEJS_EXT_DB_PASS=postgres\n\n - CUBEJS_REDIS_URL=redis://redis:6379\n \n - CUBEJS_API_SECRET=SECRET\n volumes:\n - .:/cube/conf\n depends_on:\n - refresh_worker\n - postgres\n - redis\n\n refresh_worker:\n image: cubejs/cube:latest\n environment:\n - CUBEJS_REFRESH_WORKER=true\n\n - CUBEJS_DB_TYPE=bigquery\n - CUBEJS_DB_BQ_PROJECT_ID=${CUBEJS_DB_BQ_PROJECT_ID}\n - CUBEJS_DB_BQ_CREDENTIALS=${CUBEJS_DB_BQ_CREDENTIALS}\n - CUBEJS_DB_EXPORT_BUCKET=${CUBEJS_DB_EXPORT_BUCKET}\n\n - CUBEJS_EXT_DB_TYPE=postgres\n - CUBEJS_EXT_DB_HOST=postgres\n - CUBEJS_EXT_DB_PORT=5432\n - CUBEJS_EXT_DB_NAME=postgres\n - CUBEJS_EXT_DB_USER=postgres\n - CUBEJS_EXT_DB_PASS=postgres\n\n - CUBEJS_REDIS_URL=redis://redis:6379\n \n - CUBEJS_API_SECRET=SECRET\n volumes:\n - .:/cube/conf\n depends_on:\n - postgres\n - redis\n\n postgres:\n image: postgres:latest\n environment:\n POSTGRES_USER: postgres\n POSTGRES_PASSWORD: postgres\n PGDATA: /data/postgres\n volumes:\n - .postgres:/data/postgres\n\n redis:\n image: bitnami/redis:latest\n environment:\n - ALLOW_EMPTY_PASSWORD=yes\n logging:\n driver: none
dataset_sample\yaml\cube-js_cube\examples\cubestore-benchmark\cubejs-postgres\docker-compose.yml
docker-compose.yml
YAML
1,855
0.8
0
0.015625
python-kit
890
2024-06-12T16:27:42.074189
Apache-2.0
false
c6b2291a7c28a617ca182a87b7291b70
service: event-analytics-example-backend\n\npackage:\n exclude:\n - secrets.yml\n\ncustom:\n secrets: ${file(secrets.yml):${self:provider.stage}}\n\nprovider:\n stage: ${opt:stage, 'dev'}\n name: aws\n runtime: nodejs8.10\n iamRoleStatements:\n - Effect: "Allow"\n Action:\n - "sns:*"\n - "athena:*"\n - "s3:*"\n - "glue:*"\n Resource:\n - "*"\n# When you uncomment vpc please make sure lambda has access to internet: https://medium.com/@philippholly/aws-lambda-enable-outgoing-internet-access-within-vpc-8dd250e11e12\n vpc:\n securityGroupIds:\n - "${self:custom.secrets.SECURITY_GROUP_IDS}" # Your DB and Redis security groups here\n subnetIds:\n - "${self:custom.secrets.SUBNET_IDS}" # Your DB and Redis subnets here\n environment:\n CUBEJS_AWS_REGION: "${self:custom.secrets.CUBEJS_AWS_REGION}"\n CUBEJS_AWS_S3_OUTPUT_LOCATION: "${self:custom.secrets.CUBEJS_AWS_S3_OUTPUT_LOCATION}"\n CUBEJS_DB_TYPE: "${self:custom.secrets.CUBEJS_DB_TYPE}"\n CUBEJS_API_SECRET: "${self:custom.secrets.CUBEJS_API_SECRET}"\n CUBEJS_REDIS_URL: "${self:custom.secrets.REDIS_URL}"\n CUBEJS_APP: "${self:service.name}-${self:provider.stage}"\n NODE_ENV: "${self:provider.stage}"\n CUBEJS_API_URL:\n Fn::Join:\n - ""\n - - "https://"\n - Ref: "ApiGatewayRestApi"\n - ".execute-api."\n - Ref: "AWS::Region"\n - ".amazonaws.com/${self:provider.stage}"\n AWS_ACCOUNT_ID:\n Fn::Join:\n - ""\n - - Ref: "AWS::AccountId"\n\nfunctions:\n cubejs:\n handler: cube.api\n timeout: 30\n events:\n - http:\n path: /\n method: GET\n - http:\n path: /{proxy+}\n method: ANY\n cubejsProcess:\n handler: cube.process\n timeout: 630\n events:\n - sns: "${self:service.name}-${self:provider.stage}-process"\n\nplugins:\n - serverless-express\n
dataset_sample\yaml\cube-js_cube\examples\event-analytics\backend\serverless.yml
serverless.yml
YAML
1,883
0.95
0
0.015873
node-utils
594
2025-02-18T19:16:27.507680
MIT
false
eda407d869439c7e7b433135ee50561f
version: '2.2'\n\nservices:\n cube:\n image: cubejs/cube:latest\n ports:\n - 4000:4000\n - 3000:3000\n env_file: .env\n volumes:\n - .:/cube/conf\n
dataset_sample\yaml\cube-js_cube\examples\external-rollups\docker-compose.yml
docker-compose.yml
YAML
164
0.7
0
0
vue-tools
585
2024-09-06T09:06:01.120121
MIT
false
15880afee89334c043ed66bfe5576755
version: '2.2'\n\nservices:\n cube:\n image: cubejs/cube:dev\n ports:\n - 4000:4000\n environment:\n - CUBEJS_DEV_MODE=true\n volumes:\n - .:/cube/conf
dataset_sample\yaml\cube-js_cube\examples\github-commits-stats\docker-compose.yml
docker-compose.yml
YAML
169
0.7
0
0
awesome-app
618
2025-04-07T01:35:27.312739
GPL-3.0
false
14a65017fd4cec2c75dd7b3035f9970e
name: 'github_commit_stats'\nversion: '1.0.0'\nconfig-version: 2\n\nprofile: 'default'\n\nmodel-paths: ["models"]
dataset_sample\yaml\cube-js_cube\examples\github-commits-stats\dbt\dbt_project.yml
dbt_project.yml
YAML
107
0.7
0
0
vue-tools
844
2023-10-22T03:38:34.137348
MIT
false
50d8358ab0fcd77fc9c99ff1c433f499
version: 2\n\nmetrics:\n - name: commits_count\n label: Commits Count\n model: ref('commits')\n description: "A count metric for commits"\n\n type: count\n\n timestamp: timestamp\n time_grains: [day, week, month, year]\n\n dimensions:\n - author_domain\n - author_name\n\n - name: users_count\n label: Users Count\n model: ref('commits')\n description: "A count metric for users"\n\n type: count_distinct\n sql: author_id\n\n timestamp: timestamp\n time_grains: [day, week, month, year]\n\n dimensions:\n - author_domain
dataset_sample\yaml\cube-js_cube\examples\github-commits-stats\dbt\models\schema.yml
schema.yml
YAML
553
0.7
0.068966
0
vue-tools
199
2024-08-25T17:15:48.031976
BSD-3-Clause
false
5e9bcd2dccf023659816b1176fb2ba2e
version: '2.2'\nservices:\n cube:\n image: cubejs/cube:latest\n ports:\n - 4000:4000\n - 3000:3000\n env_file: .env\n volumes:\n - .:/cube/conf\n
dataset_sample\yaml\cube-js_cube\examples\google-charts-moma\docker-compose.yml
docker-compose.yml
YAML
163
0.7
0
0
node-utils
47
2024-11-09T21:48:39.063865
MIT
false
d7770b26223ad9dea140f3fa2abe5624
###########\n## Uncomment this workflow job to enable deployment automation\n###########\n# # Demo Deployment automation\n\n# name: My Cube.js App\n# on:\n# push:\n# paths:\n# - '**'\n# branches:\n# - 'master'\n# jobs:\n# deploy:\n# name: Deploy My Cube.js App\n# runs-on: ubuntu-latest\n# timeout-minutes: 30\n# steps:\n# - name: Checkout\n# uses: actions/checkout@v2\n# - name: Use Node.js 14.x\n# uses: actions/setup-node@v1\n# with:\n# node-version: 14.x\n# - run: npm install\n# - name: Deploy to Cube Cloud\n# run: npx cubejs-cli deploy --token $CUBE_CLOUD_DEPLOY_AUTH\n# env:\n# CUBE_CLOUD_DEPLOY_AUTH: fb153ad68fe20100280c405cd76a5c7c\n# # CUBE_CLOUD_DEPLOY_AUTH: ${{ secrets.CUBE_CLOUD_DEPLOY_AUTH }} # Add env var to GitHub actions secrets!!\n
dataset_sample\yaml\cube-js_cube\examples\introduction-to-cube-cloud-workshop\.github\workflows\deploy-cube-cloud.yml
deploy-cube-cloud.yml
YAML
857
0.8
0
1
awesome-app
476
2024-09-08T17:37:35.108662
GPL-3.0
false
e258a73e623a48b08100f6691131da7f
version: '2.2'\n\nservices:\n materialize:\n image: materialize/materialized:v0.26.1\n ports:\n - 6875:6875\n\n seed:\n image: jbergknoff/postgresql-client\n volumes:\n - .:/seed\n entrypoint: ["sh", "seed/seed.sh"]\n depends_on:\n - materialize\n\n cube:\n image: cubejs/cube:latest\n ports:\n - 4000:4000\n environment:\n - CUBEJS_DEV_MODE=true\n - CUBEJS_DB_TYPE=materialize\n - CUBEJS_DB_HOST=materialize\n - CUBEJS_DB_PORT=6875\n - CUBEJS_DB_NAME=materialize\n - CUBEJS_DB_USER=materialize\n - CUBEJS_API_SECRET=SECRET\n volumes:\n - .:/cube/conf\n depends_on:\n - seed
dataset_sample\yaml\cube-js_cube\examples\materialize\docker-compose.yml
docker-compose.yml
YAML
644
0.7
0
0
node-utils
329
2024-11-06T12:16:47.202452
BSD-3-Clause
false
14d819e9a30452415a6de5e828aaca50
\nversion: '2.2'\n\nservices:\n cube:\n image: cubejs/cube:v0.26.49\n ports:\n - 4000:4000 # Cube.js API and Developer Playground\n - 3000:3000 # Dashboard app, if created\n env_file: .env\n volumes:\n - .:/cube/conf\n # We ignore Cube.js deps, because they are built-in inside the official Docker image\n - .empty:/cube/conf/node_modules/@cubejs-backend/\n
dataset_sample\yaml\cube-js_cube\examples\multi-tenant-analytics\docker-compose.yml
docker-compose.yml
YAML
383
0.8
0.071429
0.083333
awesome-app
759
2023-12-10T09:29:52.898137
Apache-2.0
false
20bdd33d0f25d3bff5d2c757bb6442f3
version: '2.2'\n\nservices:\n cube:\n image: cubejs/cube:latest\n ports:\n - 4000:4000\n - 3000:3000\n env_file: .env\n volumes:\n - .:/cube/conf
dataset_sample\yaml\cube-js_cube\examples\multitenancy-workshop\docker-compose.yml
docker-compose.yml
YAML
163
0.7
0
0
react-lib
427
2024-09-09T03:20:07.820594
MIT
false
967a6cf3f6bc1593c2cf0a295a994639