commit
stringlengths
40
40
old_file
stringlengths
4
264
new_file
stringlengths
4
264
old_contents
stringlengths
0
4.24k
new_contents
stringlengths
1
5.44k
subject
stringlengths
14
778
message
stringlengths
15
9.92k
lang
stringclasses
277 values
license
stringclasses
13 values
repos
stringlengths
5
127k
20f2e6b54385b864958ded704b2c5d81b82c9b1f
data/default_ingest_attributes.yml
data/default_ingest_attributes.yml
# # values to use if these are not specified in the ingest # rights: 'All rights reserved (no additional license for public reuse)' publisher: <%= GenericWork::DEFAULT_PUBLISHER %> institution: <%= GenericWork::DEFAULT_INSTITUTION %> license: <%= GenericWork::DEFAULT_LICENSE %> # # the admin notes for informational purposes # admin_notes: 'Thesis originally deposited on LIBRA1_CREATE_DATE in version 1.28 of Libra. This thesis was migrated to Libra2 on CURRENT_DATE.' # # the default embargo type if we cannot determine one # # enable for new ingests (jefferson trust items, ILL) # disable for masters & doctoral theses #default_embargo_type: <%= Hydra::AccessControls::AccessRight::VISIBILITY_TEXT_VALUE_AUTHENTICATED %> # # apply the specified embargo period; should be one of: # 6_months, 1_year, 2_year, 5_year, forever (130 years) # # enable for new ingests (jefferson trust items, ILL) # disable for masters & doctoral theses #force_embargo_period: forever
# # values to use if these are not specified in the ingest # rights: 'All rights reserved (no additional license for public reuse)' publisher: <%= GenericWork::DEFAULT_PUBLISHER %> institution: <%= GenericWork::DEFAULT_INSTITUTION %> license: <%= GenericWork::DEFAULT_LICENSE %> # # the admin notes for informational purposes # admin_notes: 'Thesis originally deposited on LIBRA1_CREATE_DATE in version 1.28 of Libra. This thesis was migrated to Libra2 on CURRENT_DATE.' # # the default embargo type if we cannot determine one # # enable for new ingests (jefferson trust items, ILL) # disable for masters & doctoral theses default_embargo_type: <%= Hydra::AccessControls::AccessRight::VISIBILITY_TEXT_VALUE_AUTHENTICATED %> # # apply the specified embargo period; should be one of: # 6_months, 1_year, 2_year, 5_year, forever (130 years) # # enable for new ingests (jefferson trust items, ILL) # disable for masters & doctoral theses force_embargo_period: forever
Update default ingest as no more migration, just new bulk ingest
Update default ingest as no more migration, just new bulk ingest
YAML
apache-2.0
uvalib/Libra2,uvalib/Libra2,uvalib/Libra2,uvalib/Libra2,uvalib/Libra2
8729363e0f6c6ab42c146ee4cb69d2c4dd484269
azure-pipelines.yml
azure-pipelines.yml
trigger: - master jobs: - job: Linux pool: vmImage: 'ubuntu-18.04' steps: - script: sudo apt-get update --fix-missing - script: sudo apt-get install -y libgl1-mesa-dev libgles2-mesa-dev libopenal-dev libasound2-dev libxxf86vm-dev libxi-dev libxcursor-dev libxrandr-dev libxss-dev - script: | cd samples make -j2 displayName: 'make' - job: Windows pool: vmImage: 'vs2017-win2016' steps: - task: MSBuild@1 inputs: solution: samples/samples.vcxproj configuration: Release - job: macOS pool: vmImage: 'macOS-10.14' steps: - script: | cd samples make -j2 displayName: 'make'
trigger: - master jobs: - job: Linux pool: vmImage: 'ubuntu-18.04' steps: - script: sudo apt-get update --fix-missing - script: sudo apt-get install -y libgl1-mesa-dev libgles2-mesa-dev libopenal-dev libasound2-dev libxxf86vm-dev libxi-dev libxcursor-dev libxrandr-dev libxss-dev - script: | cd samples make -j2 displayName: 'make' - job: Windows pool: vmImage: 'vs2017-win2016' steps: - task: MSBuild@1 inputs: solution: samples/samples.vcxproj configuration: Release - job: macOS pool: vmImage: 'macOS-10.15' steps: - script: | cd samples make -j2 displayName: 'make'
Increment the macOS version for Azure
Increment the macOS version for Azure
YAML
unlicense
elnormous/ouzel,elnormous/ouzel,elnormous/ouzel
7487d84b634952f1eef1c6130516c61a271c1503
azure-pipelines.yml
azure-pipelines.yml
# ASP.NET # Build and test ASP.NET projects. # Add steps that publish symbols, save build artifacts, deploy, and more: # https://docs.microsoft.com/azure/devops/pipelines/apps/aspnet/build-aspnet-4 pool: vmImage: 'VS2017-Win2016' variables: solution: '**/*.sln' buildPlatform: 'Any CPU' buildConfiguration: 'Release' steps: - task: NuGetToolInstaller@0 - task: NuGetCommand@2 inputs: restoreSolution: '$(solution)' - task: VSBuild@1 inputs: solution: '$(solution)' msbuildArgs: '/p:DeployOnBuild=true /p:WebPublishMethod=Package /p:PackageAsSingleFile=true /p:SkipInvalidConfigurations=true /p:PackageLocation="$(build.artifactStagingDirectory)"' platform: '$(buildPlatform)' configuration: '$(buildConfiguration)' - task: VSTest@2 inputs: testAssemblyVer2: | **\$(BuildConfiguration)\*test*.dll !**\obj\** platform: '$(buildPlatform)' configuration: '$(buildConfiguration)' - task: PublishSymbols@2 displayName: 'Publish symbols path' inputs: SearchPattern: '**\bin\**\*.pdb' PublishSymbols: false continueOnError: true - task: PublishBuildArtifacts@1 displayName: 'Publish Artifact' inputs: PathtoPublish: '$(build.artifactstagingdirectory)' ArtifactName: '$(Parameters.ArtifactName)'
# ASP.NET # Build and test ASP.NET projects. # Add steps that publish symbols, save build artifacts, deploy, and more: # https://docs.microsoft.com/azure/devops/pipelines/apps/aspnet/build-aspnet-4 pool: vmImage: 'VS2017-Win2016' variables: solution: '**/*.sln' buildPlatform: 'Any CPU' buildConfiguration: 'Release' artifactname: 'planetpowershell' steps: - task: NuGetToolInstaller@0 - task: NuGetCommand@2 inputs: restoreSolution: '$(solution)' - task: VSBuild@1 inputs: solution: '$(solution)' msbuildArgs: '/p:DeployOnBuild=true /p:WebPublishMethod=Package /p:PackageAsSingleFile=true /p:SkipInvalidConfigurations=true /p:PackageLocation="$(build.artifactStagingDirectory)"' platform: '$(buildPlatform)' configuration: '$(buildConfiguration)' - task: VSTest@2 inputs: testAssemblyVer2: | **\$(BuildConfiguration)\*test*.dll !**\obj\** platform: '$(buildPlatform)' configuration: '$(buildConfiguration)' - task: PublishSymbols@2 displayName: 'Publish symbols path' inputs: SearchPattern: '**\bin\**\*.pdb' PublishSymbols: false continueOnError: true - task: PublishBuildArtifacts@1 displayName: 'Publish Artifact' inputs: PathtoPublish: '$(build.artifactstagingdirectory)' ArtifactName: '$(artifactname)'
Update Artifact name, fix whitespace
Update Artifact name, fix whitespace
YAML
mit
planetpowershell/planetpowershell,planetpowershell/planetpowershell,planetpowershell/planetpowershell,planetpowershell/planetpowershell
c7d705a0b7fe8f2f463d31a9e8cdc31f138da281
azure-pipelines.yml
azure-pipelines.yml
trigger: - master pool: vmImage: 'windows-latest' variables: Major: 4 Minor: 0 BuildConfiguration: 'Release' name: $(Major).$(Minor).$(BuildID) steps: - checkout: self submodules: true - task: UseDotNet@2 inputs: packageType: 'sdk' version: '3.1.301' includePreviewVersions: true - task: DotNetCoreCLI@2 inputs: command: 'build' feedsToUse: 'select' versioningScheme: byBuildNumber arguments: '--configuration $(BuildConfiguration) -p:Version=$(Build.BuildNumber);FileVersion=$(Build.BuildNumber)' - task: CmdLine@2 inputs: script: 'iscc /Q "Setup Script.iss"' - task: PublishBuildArtifacts@1 inputs: PathtoPublish: 'ServerStaging' ArtifactName: 'artifact' publishLocation: 'Container'
trigger: - master pool: vmImage: 'windows-latest' variables: Major: 4 Minor: 0 BuildConfiguration: 'Release' name: $(Major).$(Minor).$(BuildID) steps: - checkout: self submodules: true - task: UseDotNet@2 inputs: packageType: 'sdk' version: '3.1.302' includePreviewVersions: true - task: DotNetCoreCLI@2 inputs: command: 'build' feedsToUse: 'select' versioningScheme: byBuildNumber arguments: '--configuration $(BuildConfiguration) -p:Version=$(Build.BuildNumber);FileVersion=$(Build.BuildNumber)' - task: CmdLine@2 inputs: script: 'iscc /Q "Setup Script.iss"' - task: PublishBuildArtifacts@1 inputs: PathtoPublish: 'ServerStaging' ArtifactName: 'artifact' publishLocation: 'Container'
Update .net core sdk to latest
Update .net core sdk to latest
YAML
mit
mscrivo/ootd
578d736488ec4b70897ff9440e07db7b88a9dee5
roles/taiga-webserver/tasks/ssl-signed.yml
roles/taiga-webserver/tasks/ssl-signed.yml
--- - name: deploy SSL private key become: true become_user: taiga copy: dest: "{{ _taiga_ssl_key_path }}" mode: "0640" content: "{{ taiga_webserver_ssl_key }}" tags: - config - front-config - name: deploy SSL certificate become: true become_user: taiga copy: dest: "{{ _taiga_ssl_certificate_path }}" mode: "0644" content: "{{ taiga_webserver_ssl_certificate }}" tags: - config - front-config
--- - name: deploy SSL private key become: true become_user: taiga copy: dest: "{{ _taiga_ssl_key_path }}" mode: "0640" content: "{{ taiga_ssl_key }}" tags: - config - front-config - name: deploy SSL certificate become: true become_user: taiga copy: dest: "{{ _taiga_ssl_certificate_path }}" mode: "0644" content: "{{ taiga_ssl_certificate }}" tags: - config - front-config
Fix non-selfsigned SSL certificate deployment
Fix non-selfsigned SSL certificate deployment Commit 15d15366efb7a6715f7bd8e03f13f25c67b9b38c introduced this change and missed two variable renames.
YAML
agpl-3.0
fghaas/taiga-ansible
06c1e835b27239a40a38cd59237566b943cd823d
scripts/roles/cikit-jenkins/vars/main.yml
scripts/roles/cikit-jenkins/vars/main.yml
--- jenkins_dest: /opt/jenkins jenkins_lib: /var/lib/jenkins jenkins: package: "http://pkg.jenkins-ci.org/debian/binary/jenkins_2.50_all.deb" repo: "deb http://pkg.jenkins.io/debian-stable binary/" key: "https://pkg.jenkins.io/debian/jenkins-ci.org.key" dependencies: - openjdk-7-jre - openjdk-7-jdk - git - curl - daemon cli: "{{ jenkins_dest }}/jenkins-cli.jar" updates: "{{ jenkins_dest }}/updates_jenkins.json"
--- jenkins_dest: /opt/jenkins jenkins_lib: /var/lib/jenkins jenkins: package: "http://pkg.jenkins-ci.org/debian/binary/jenkins_2.54_all.deb" repo: "deb http://pkg.jenkins.io/debian-stable binary/" key: "https://pkg.jenkins.io/debian/jenkins-ci.org.key" dependencies: - openjdk-7-jre - openjdk-7-jdk - git - curl - daemon cli: "{{ jenkins_dest }}/jenkins-cli.jar" updates: "{{ jenkins_dest }}/updates_jenkins.json"
Update Jenkins version to 2.54
[CIKit] Update Jenkins version to 2.54
YAML
apache-2.0
BR0kEN-/cikit,BR0kEN-/cikit,BR0kEN-/cikit,BR0kEN-/cikit,BR0kEN-/cikit
905a30bed57f383224bf523545130107ca09bdc4
config/jobs/kubernetes-sigs/service-apis/service-apis-config.yaml
config/jobs/kubernetes-sigs/service-apis/service-apis-config.yaml
presubmits: kubernetes-sigs/service-apis: - name: pull-service-apis-build annotations: testgrid-dashboards: sig-network-service-apis testgrid-tab-name: build decorate: true path_alias: sigs.k8s.io/service-apis always_run: true skip_report: false spec: containers: - image: golang:1.13 command: - make
presubmits: kubernetes-sigs/service-apis: - name: pull-service-apis-build annotations: testgrid-dashboards: sig-network-service-apis testgrid-tab-name: build labels: preset-dind-enabled: "true" decorate: true path_alias: sigs.k8s.io/service-apis always_run: true skip_report: false spec: containers: - image: gcr.io/k8s-testimages/kubekins-e2e:v20191017-ac4b4b5-master command: # generic runner script, handles DIND, bazelrc for caching, etc. - runner.sh args: - make # docker-in-docker needs privileged mode securityContext: privileged: true
Enable docker on service-apis jobs
Enable docker on service-apis jobs
YAML
apache-2.0
BenTheElder/test-infra,cjwagner/test-infra,jessfraz/test-infra,dims/test-infra,brahmaroutu/test-infra,BenTheElder/test-infra,kubernetes/test-infra,jessfraz/test-infra,pwittrock/test-infra,cjwagner/test-infra,dims/test-infra,jessfraz/test-infra,cjwagner/test-infra,michelle192837/test-infra,cblecker/test-infra,jessfraz/test-infra,jessfraz/test-infra,ixdy/kubernetes-test-infra,monopole/test-infra,kubernetes/test-infra,fejta/test-infra,monopole/test-infra,michelle192837/test-infra,ixdy/kubernetes-test-infra,pwittrock/test-infra,fejta/test-infra,fejta/test-infra,brahmaroutu/test-infra,fejta/test-infra,BenTheElder/test-infra,brahmaroutu/test-infra,pwittrock/test-infra,michelle192837/test-infra,ixdy/kubernetes-test-infra,kubernetes/test-infra,michelle192837/test-infra,fejta/test-infra,jessfraz/test-infra,brahmaroutu/test-infra,cblecker/test-infra,monopole/test-infra,dims/test-infra,kubernetes/test-infra,pwittrock/test-infra,cblecker/test-infra,ixdy/kubernetes-test-infra,kubernetes/test-infra,pwittrock/test-infra,BenTheElder/test-infra,BenTheElder/test-infra,cblecker/test-infra,michelle192837/test-infra,cblecker/test-infra,cjwagner/test-infra,dims/test-infra,dims/test-infra,fejta/test-infra,michelle192837/test-infra,cjwagner/test-infra,brahmaroutu/test-infra,kubernetes/test-infra,monopole/test-infra,monopole/test-infra,BenTheElder/test-infra,cjwagner/test-infra,ixdy/kubernetes-test-infra,dims/test-infra,cblecker/test-infra,monopole/test-infra,brahmaroutu/test-infra
6f4dbce599b7f20db87b28bc8a39019a54a5d294
templates/install/ansible/roles/project/tasks/main.yml
templates/install/ansible/roles/project/tasks/main.yml
--- - name: Create project namespace shell: oc new-project {{ namespace }} --description="EnMasse Infrastructure" register: namespace_exists failed_when: namespace_exists.stderr != '' and 'already exists' not in namespace_exists.stderr changed_when: namespace_exists.rc == 0
--- - name: Create project namespace shell: oc new-project {{ namespace }} --description="EnMasse Infrastructure" register: namespace_exists failed_when: namespace_exists.stderr != '' and 'already exists' not in namespace_exists.stderr changed_when: namespace_exists.rc == 0 - name: Select project namespace shell: oc project {{ namespace }}
Make sure project namespace is selected in the event it already exists
Make sure project namespace is selected in the event it already exists
YAML
apache-2.0
jenmalloy/enmasse,EnMasseProject/enmasse,EnMasseProject/enmasse,EnMasseProject/enmasse,jenmalloy/enmasse,jenmalloy/enmasse,jenmalloy/enmasse,jenmalloy/enmasse,jenmalloy/enmasse,jenmalloy/enmasse,EnMasseProject/enmasse,EnMasseProject/enmasse,EnMasseProject/enmasse,EnMasseProject/enmasse
652542f004f473a98b2ecf362ff8019b049b3bb4
packages/gs/gstreamer.yaml
packages/gs/gstreamer.yaml
homepage: http://projects.haskell.org/gtk2hs/ changelog-type: '' hash: 4b3032d9ca1e3b9e0f85d94622335f000ec00cc65bebaee9623fb717d70d9ad5 test-bench-deps: {} maintainer: gtk2hs-users@lists.sourceforge.net synopsis: Binding to the GStreamer open source multimedia framework. changelog: '' basic-deps: bytestring: -any base: ! '>=3 && <5' glib: ! '>=0.12.5.0 && <0.13' array: -any mtl: -any directory: -any all-versions: - '0.11.0' - '0.11.1' - '0.12.0' - '0.12.1' - '0.12.1.1' - '0.12.1.2' - '0.12.5.0' author: Peter Gavin, Axel Simon latest: '0.12.5.0' description-type: haddock description: ! 'This package provides a wrapper around the GStreamer C library. GStreamer is a library for constructing graphs of media-handling components. The applications it supports range from simple Ogg/Vorbis playback, audio/video streaming to complex audio (mixing) and video (non-linear editing) processing.' license-name: LGPL-2.1
homepage: http://projects.haskell.org/gtk2hs/ changelog-type: '' hash: e4552cc645778981e21ec8d129c7c4634c40731ac471125f54ddb854ee23ae96 test-bench-deps: {} maintainer: gtk2hs-users@lists.sourceforge.net synopsis: Binding to the GStreamer open source multimedia framework. changelog: '' basic-deps: bytestring: -any base: ! '>=3 && <5' glib: ! '>=0.13 && <0.14' array: -any mtl: -any directory: -any all-versions: - '0.11.0' - '0.11.1' - '0.12.0' - '0.12.1' - '0.12.1.1' - '0.12.1.2' - '0.12.5.0' - '0.12.8' author: Peter Gavin, Axel Simon latest: '0.12.8' description-type: haddock description: ! 'This package provides a wrapper around the GStreamer C library. GStreamer is a library for constructing graphs of media-handling components. The applications it supports range from simple Ogg/Vorbis playback, audio/video streaming to complex audio (mixing) and video (non-linear editing) processing.' license-name: LGPL-2.1
Update from Hackage at 2016-05-22T15:19:20+0000
Update from Hackage at 2016-05-22T15:19:20+0000
YAML
mit
commercialhaskell/all-cabal-metadata
0b8a971f31abca25b6a58c9ce25fcae3810e399e
packages/ha/hashflare.yaml
packages/ha/hashflare.yaml
homepage: https://github.com/nbrk/hashflare changelog-type: '' hash: a6f690f635b12064b1176286f46e129a99d2b6707e54460ea9a6edb6fd969606 test-bench-deps: {} maintainer: nbrk@linklevel.net synopsis: A library for working with HashFlare.io contracts and hashrates changelog: '' basic-deps: base: ! '>=4.8 && <4.9' simple-money: ! '>=0.2.0.0' containers: ! '>=0.5 && <0.6' all-versions: - '0.1.0.0' author: Nikolay Burkov latest: '0.1.0.0' description-type: haddock description: ! 'Library that models HashFlare.io cloud mining service''s accounts, contracts and mining hashrates. Simple linear projections of the account''s balance (increase in profits over time) can be easily modelled by provided combinators.' license-name: BSD2
homepage: '' changelog-type: '' hash: accd8a66c743cbd6580182c1a85916dd6422d67a1587b7e2927849cd53e38f9a test-bench-deps: {} maintainer: nbrk@linklevel.net synopsis: A library for working with HashFlare.io contracts and hashrates changelog: '' basic-deps: base: ! '>=4.8 && <5.1' simple-money: ! '>=0.2.0.0' containers: ! '>=0.5 && <0.6' all-versions: - '0.1.0.0' author: Nikolay Burkov latest: '0.1.0.0' description-type: haddock description: ! 'Library that models HashFlare.io cloud mining service''s accounts, contracts and mining hashrates. Simple linear projections of the account''s balance (increase in profits over time) can be easily modelled by provided combinators.' license-name: BSD2
Update from Hackage at 2017-01-21T00:05:06Z
Update from Hackage at 2017-01-21T00:05:06Z
YAML
mit
commercialhaskell/all-cabal-metadata
409f598fd3d5729b13f8f17d9c8b4ada69dff2e9
.gitlab-ci.yml
.gitlab-ci.yml
image: fedora:latest variables: DEPENDENCIES: chrpath vala gtk-doc gobject-introspection-devel libxml2-devel libsoup-devel glib2-devel gtk3-devel liboauth-devel totem-pl-parser-devel meson redhat-rpm-config gcc gcc-c++ glibc-devel build_stable: before_script: - dnf update -y --nogpgcheck - dnf install -y --nogpgcheck $DEPENDENCIES script: - meson . _build --prefix=/usr - ninja -C _build - ninja -C _build install - ninja -C _build test build_no_optional_libs: before_script: - dnf update -y --nogpgcheck - dnf install -y --nogpgcheck $DEPENDENCIES script: - meson . _build --prefix=/usr -Denable-grl-net=false -Denable-grl-pls=false - ninja -C _build - ninja -C _build install - ninja -C _build test
image: fedora:latest variables: DEPENDENCIES: chrpath vala gtk-doc gobject-introspection-devel libxml2-devel libsoup-devel glib2-devel gtk3-devel liboauth-devel totem-pl-parser-devel meson redhat-rpm-config gcc gcc-c++ glibc-devel build_stable: before_script: - dnf update -y --nogpgcheck - dnf install -y --nogpgcheck $DEPENDENCIES script: - meson . _build --prefix=/usr - ninja -C _build - ninja -C _build install - ninja -C _build test build_no_optional_libs: before_script: - dnf update -y --nogpgcheck - dnf install -y --nogpgcheck $DEPENDENCIES script: - meson . _build --prefix=/usr -Denable-grl-net=true -Denable-grl-pls=true - ninja -C _build - ninja -C _build install - ninja -C _build test
Build and run tests against grl-net and grl-pls
ci: Build and run tests against grl-net and grl-pls
YAML
lgpl-2.1
GNOME/grilo,GNOME/grilo
08b280f027a52a5364069a84deade5671724b5d1
.gitlab-ci.yml
.gitlab-ci.yml
before_script: - | apt-key adv -q --batch --yes --keyserver keyserver.ubuntu.com --recv-keys AA12E97F0881517F && add-apt-repository 'deb https://static.redox-os.org/toolchain/apt ./' && apt-get update -qq && apt-get purge -qq binutils-doc && apt-get install -qq build-essential nasm pkg-config fuse libfuse-dev genisoimage syslinux realpath x86-64-unknown-redox-gcc && modprobe fuse && chmod 666 /dev/fuse && chown root:$USER /etc/fuse.conf && curl https://sh.rustup.rs -sSf | sh build: script: - make ci
before_script: - | apt-get install -qq build-essential gnupg nasm pkg-config fuse libfuse-dev genisoimage syslinux realpath && apt-key adv -q --batch --yes --keyserver keyserver.ubuntu.com --recv-keys AA12E97F0881517F && add-apt-repository 'deb https://static.redox-os.org/toolchain/apt ./' && apt-get update -qq && apt-get purge -qq binutils-doc && apt-get install -qq x86-64-unknown-redox-gcc && modprobe fuse && chmod 666 /dev/fuse && chown root:$USER /etc/fuse.conf && curl https://sh.rustup.rs -sSf | sh build: script: - make ci
Install dependencies for apt-key before adding toolchain repo
Install dependencies for apt-key before adding toolchain repo
YAML
mit
jackpot51/redox,jackpot51/redox,redox-os/redox,jackpot51/redox
8b97313c8498980bd3abf72adf8a3d6243720b89
.gitlab-ci.yml
.gitlab-ci.yml
before_script: - angr-test sync hard local: script: "angr-test cle" tags: - "angr" angr: script: "angr-test angr" tags: - "angr" fidget: script: "angr-test fidget" tags: - "angr" angrop: script: "angr-test angrop" tags: - "angr" cle_lint: script: "angr-test lint" tags: - "angr" docs: script: "angr-test docs" tags: - "angr"
before_script: - angr-test sync hard local: script: "angr-test cle" tags: - "angr" angr: script: "angr-test angr" tags: - "angr" fidget: script: "angr-test fidget" tags: - "angr" angrop: script: "angr-test angrop" tags: - "angr" tracer: script: "angr-test tracer" tags: - "angr" cle_lint: script: "angr-test lint" tags: - "angr" docs: script: "angr-test docs" tags: - "angr"
Add cle reverse dependencies tests
Add cle reverse dependencies tests
YAML
bsd-2-clause
chubbymaggie/cle,angr/cle
65dd4bca8c37c7df5bb806cda008a2c03104d3ae
.github/workflows/merge-dependabot-upgrades.yml
.github/workflows/merge-dependabot-upgrades.yml
# See https://github.com/ridedott/merge-me-action/ # This workflow automates merges from patches sent by Dependabot, and # only by dependabot, once the other CI workflows pass name: Auto-merge Dependabot PRs on: workflow_run: types: - completed workflows: - "Continuous Integration" jobs: merge-me: name: Auto-merge Dependabot PRs runs-on: ubuntu-latest steps: - name: Auto-Merge if: ${{ github.event.workflow_run.conclusion == 'success' }} uses: ridedott/merge-me-action@v2.9.79 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} MERGE_METHOD: MERGE
# See https://github.com/ridedott/merge-me-action/ # This workflow automates merges from patches sent by Dependabot, and # only by dependabot, once the other CI workflows pass name: Auto-merge Dependabot PRs on: workflow_run: types: - completed workflows: - "Continuous Integration" jobs: merge-me: name: Auto-merge Dependabot PRs runs-on: ubuntu-latest steps: - name: Auto-Merge if: ${{ github.event.workflow_run.conclusion == 'success' }} uses: ridedott/merge-me-action@v2.9.80 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} MERGE_METHOD: MERGE
Bump ridedott/merge-me-action from 2.9.79 to 2.9.80
Bump ridedott/merge-me-action from 2.9.79 to 2.9.80
YAML
mit
Ocramius/DoctrineBatchUtils
1e24fed0a92cada371a56bcbb7ec9f0354cab985
.gitlab-ci.yml
.gitlab-ci.yml
variables: CI_SCRIPTS_DIR: "./ci" gift-gala: script: - MATLAB_EXE=/Applications/MATLAB_R2015b.app/bin/matlab - MATLAB_SCRIPT=$(pwd)/matlab/CIBuildAndTest.m - "$CI_SCRIPTS_DIR/test-mac.sh $MATLAB_EXE $MATLAB_SCRIPT" tags: - gift-gala - gift-mac - matlab-r2015b - cuda gift-adelie: script: - "$CI_SCRIPTS_DIR/test-linux.sh" tags: - gift-adelie - gift-linux - matlab - cuda gift-skylight: script: - set PATH=%PATH%;C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin - "call .\\ci\\test-win.bat" tags: - gift-skylight - gift-win64 - matlab - cuda
variables: CI_SCRIPTS_DIR: "./ci" gift-gala: script: - MATLAB_EXE=/Applications/MATLAB_R2016b.app/bin/matlab - MATLAB_SCRIPT=$(pwd)/matlab/CIBuildAndTest.m - XCODE_EXE=/Applications/Xcode7.3.1.app/Contents/Developer - env DEVELOPER_DIR=$XCODE_EXE $CI_SCRIPTS_DIR/test-mac.sh $MATLAB_EXE $MATLAB_SCRIPT tags: - gift-gala - gift-mac - matlab-r2016b - cuda7 gift-adelie: script: - "$CI_SCRIPTS_DIR/test-linux.sh" tags: - gift-adelie - gift-linux - matlab - cuda gift-skylight: script: - set PATH=%PATH%;C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin - "call .\\ci\\test-win.bat" tags: - gift-skylight - gift-win64 - matlab - cuda
Update test build to Xcode 7.3.1, Matlab R2016b, Cuda 7.5
Update test build to Xcode 7.3.1, Matlab R2016b, Cuda 7.5
YAML
bsd-3-clause
gift-surg/SlicSeg,gift-surg/SlicSeg,gift-surg/SlicSeg
589378fecd155dc09bc422a2cf416da0f5a13568
.gitlab-ci.yml
.gitlab-ci.yml
# Test job template .test_template: &test_definition stage: test script: - bundle install --jobs $(nproc) --without docs --path vendor - bundle exec rake tests - bundle exec rake spec # Test with version present on Debian Stretch test:puppet4.8: image: ruby:2.3 variables: PUPPET_VERSION: "~> 4.8.2" FACTER_VERSION: '~> 2.4.6' HIERA_VERSION: '~> 3.2.0' <<: *test_definition # Test with version present on Debian Buster test:puppet5.5: image: ruby:2.5 variables: PUPPET_VERSION: "~> 5.5.10" FACTER_VERSION: '~> 3.11.0' <<: *test_definition # Build and deploy docs on GitLab Pages pages: image: debian:stable stage: deploy script: - apt-get update && apt-get install -y puppet-strings puppet - puppet strings generate - mv doc public only: - master artifacts: paths: - public
# Test job template .test_template: &test_definition stage: test script: - bundle install --jobs $(nproc) --without docs --path vendor - bundle exec rake tests - bundle exec rake spec # Test with version present on Debian Buster test:puppet5.5: image: ruby:2.5 variables: PUPPET_VERSION: "~> 5.5.10" FACTER_VERSION: '~> 3.11.0' <<: *test_definition # Test with the latest Puppet release test:puppetlatest: <<: *test_definition # Build and deploy docs on GitLab Pages pages: image: debian:stable stage: deploy script: - apt-get update && apt-get install -y puppet-strings puppet - puppet strings generate - mv doc public only: - master artifacts: paths: - public
Drop puppet 4.8 and test against the latest puppet release in the CI
Drop puppet 4.8 and test against the latest puppet release in the CI
YAML
agpl-3.0
duritong/puppet-tor,duritong/puppet-tor
dc83e7e24054277129bfd71569f629516dc99e3c
blueprints/modular/showcase.yaml
blueprints/modular/showcase.yaml
title: Showcase '@extends': default form: fields: tabs: fields: advanced: fields: columns: fields: column1: fields: name: default: modular/showcase '@data-options': '\Grav\Common\Page\Pages::modularTypes' overrides: fields: header.template: default: modular/showcase '@data-options': '\Grav\Common\Page\Pages::modularTypes' buttons: type: tab title: Buttons fields: header.buttons: name: buttons type: list label: Buttons fields: .text: type: text label: Text .url: type: text label: URL .primary: type: toggle label: Primary highlight: 1 options: 1: Yes 0: No validate: type: bool
title: Showcase '@extends': default form: fields: tabs: fields: advanced: fields: columns: fields: column1: fields: name: default: modular/showcase '@data-options': '\Grav\Common\Page\Pages::modularTypes' overrides: fields: header.template: default: modular/showcase '@data-options': '\Grav\Common\Page\Pages::modularTypes' buttons: type: tab title: Buttons fields: header.buttons: name: buttons type: list label: Buttons fields: .text: type: text label: Text .url: type: text label: URL .primary: type: toggle label: Primary highlight: 1 default: 1 options: 1: 'Yes' 0: 'No' validate: type: bool
Fix for Showcase blueprint and PECL Yaml parser
Fix for Showcase blueprint and PECL Yaml parser
YAML
mit
getgrav/grav-theme-antimatter,getgrav/grav-theme-antimatter,getgrav/grav-theme-antimatter,getgrav/grav-theme-antimatter
19259069bd050c19811b79a0878640abfc39eed2
ciongke/sinker_deployment.yaml
ciongke/sinker_deployment.yaml
apiVersion: extensions/v1beta1 kind: Deployment metadata: name: sinker labels: app: sinker spec: replicas: 1 template: metadata: labels: app: sinker spec: containers: - name: sinker image: gcr.io/kubernetes-jenkins-pull/sinker:0.0 restartPolicy: Never
apiVersion: extensions/v1beta1 kind: Deployment metadata: name: sinker labels: app: sinker spec: replicas: 1 template: metadata: labels: app: sinker spec: containers: - name: sinker image: gcr.io/kubernetes-jenkins-pull/sinker:0.0
Fix sinker restart policy. It's a deployment!
Fix sinker restart policy. It's a deployment!
YAML
apache-2.0
dchen1107/test-infra,brahmaroutu/test-infra,monopole/test-infra,michelle192837/test-infra,mikedanese/test-infra,gmarek/test-infra,cjwagner/test-infra,kubernetes/test-infra,krousey/test-infra,brahmaroutu/test-infra,gmarek/test-infra,piosz/test-infra,dims/test-infra,nlandolfi/test-infra-1,spxtr/test-infra,mtaufen/test-infra,shyamjvs/test-infra,kargakis/test-infra,BenTheElder/test-infra,brahmaroutu/test-infra,mtaufen/test-infra,krzyzacy/test-infra,gmarek/test-infra,dchen1107/test-infra,cjwagner/test-infra,krousey/test-infra,jlowdermilk/test-infra,lavalamp/test-infra,michelle192837/test-infra,cblecker/test-infra,mtaufen/test-infra,kubernetes/test-infra,madhusudancs/test-infra,madhusudancs/test-infra,rmmh/kubernetes-test-infra,BenTheElder/test-infra,jessfraz/test-infra,jlowdermilk/test-infra,spxtr/test-infra,mtaufen/test-infra,mikedanese/test-infra,mindprince/test-infra,pwittrock/test-infra,mindprince/test-infra,ixdy/kubernetes-test-infra,krousey/test-infra,brahmaroutu/test-infra,foxish/test-infra,ixdy/kubernetes-test-infra,jlowdermilk/test-infra,rmmh/kubernetes-test-infra,BenTheElder/test-infra,spxtr/test-infra,mikedanese/test-infra,fejta/test-infra,shashidharatd/test-infra,dims/test-infra,shyamjvs/test-infra,BenTheElder/test-infra,rmmh/kubernetes-test-infra,ixdy/kubernetes-test-infra,monopole/test-infra,brahmaroutu/test-infra,krousey/test-infra,michelle192837/test-infra,foxish/test-infra,shyamjvs/test-infra,michelle192837/test-infra,madhusudancs/test-infra,grodrigues3/test-infra,cblecker/test-infra,krzyzacy/test-infra,michelle192837/test-infra,krzyzacy/test-infra,jessfraz/test-infra,jessfraz/test-infra,monopole/test-infra,fejta/test-infra,cblecker/test-infra,foxish/test-infra,fejta/test-infra,dims/test-infra,mindprince/test-infra,jlowdermilk/test-infra,cblecker/test-infra,fejta/test-infra,shashidharatd/test-infra,pwittrock/test-infra,kewu1992/test-infra,shashidharatd/test-infra,michelle192837/test-infra,jessfraz/test-infra,dchen1107/test-infra,kargakis/test-infra,kewu1992/test-infra,lavalamp/test-infra,madhusudancs/test-infra,piosz/test-infra,dchen1107/test-infra,abgworrall/test-infra,monopole/test-infra,mikedanese/test-infra,piosz/test-infra,ixdy/kubernetes-test-infra,cjwagner/test-infra,piosz/test-infra,cjwagner/test-infra,nlandolfi/test-infra-1,grodrigues3/test-infra,spxtr/test-infra,grodrigues3/test-infra,shyamjvs/test-infra,dims/test-infra,foxish/test-infra,shyamjvs/test-infra,shashidharatd/test-infra,dchen1107/test-infra,rmmh/kubernetes-test-infra,BenTheElder/test-infra,shyamjvs/test-infra,grodrigues3/test-infra,pwittrock/test-infra,kubernetes/test-infra,pwittrock/test-infra,krzyzacy/test-infra,kubernetes/test-infra,madhusudancs/test-infra,monopole/test-infra,jlowdermilk/test-infra,kubernetes/test-infra,kargakis/test-infra,mindprince/test-infra,gmarek/test-infra,kargakis/test-infra,cjwagner/test-infra,cjwagner/test-infra,jessfraz/test-infra,nlandolfi/test-infra-1,fejta/test-infra,jessfraz/test-infra,krousey/test-infra,krzyzacy/test-infra,fejta/test-infra,monopole/test-infra,nlandolfi/test-infra-1,abgworrall/test-infra,lavalamp/test-infra,mtaufen/test-infra,krzyzacy/test-infra,BenTheElder/test-infra,kewu1992/test-infra,lavalamp/test-infra,spxtr/test-infra,dims/test-infra,abgworrall/test-infra,abgworrall/test-infra,cblecker/test-infra,cblecker/test-infra,mindprince/test-infra,lavalamp/test-infra,nlandolfi/test-infra-1,kubernetes/test-infra,kewu1992/test-infra,gmarek/test-infra,shashidharatd/test-infra,pwittrock/test-infra,kewu1992/test-infra,abgworrall/test-infra,kargakis/test-infra,foxish/test-infra,kargakis/test-infra,brahmaroutu/test-infra,ixdy/kubernetes-test-infra,grodrigues3/test-infra,mikedanese/test-infra,piosz/test-infra,lavalamp/test-infra,jlowdermilk/test-infra,rmmh/kubernetes-test-infra,dims/test-infra
6578c35bf0e249f6e988a0cf21c3c3732404c447
packages/ke/keera-hails-reactive-gtk.yaml
packages/ke/keera-hails-reactive-gtk.yaml
homepage: http://www.keera.es/blog/community/ changelog-type: '' hash: ad4cbcaacbd2e242e58723f1b7e848a2271ed7b185ab3f6ee2768afdc0510215 test-bench-deps: {} maintainer: ivan.perez@keera.es synopsis: Haskell on Gtk rails - Reactive Fields for Gtk widgets changelog: '' basic-deps: keera-hails-reactivevalues: -any base: ! '>=4 && <5' gtk-helpers: -any mtl: -any gtk: -any transformers: -any all-versions: - '0.0.3.5' - '0.0.3.6' author: Ivan Perez latest: '0.0.3.6' description-type: haddock description: '' license-name: BSD3
homepage: http://www.keera.es/blog/community/ changelog-type: '' hash: a0dfc0461193c650372e7381462da2c021a7489274149e13ab752697c0c5bba2 test-bench-deps: {} maintainer: ivan.perez@keera.es synopsis: Haskell on Gtk rails - Reactive Fields for Gtk widgets changelog: '' basic-deps: keera-hails-reactivevalues: -any base: ! '>=4 && <5' gtk-helpers: -any mtl: -any gtk: -any transformers: -any all-versions: - '0.0.3.5' - '0.0.3.6' - '0.1' author: Ivan Perez latest: '0.1' description-type: haddock description: '' license-name: BSD3
Update from Hackage at 2015-08-13T06:38:29+0000
Update from Hackage at 2015-08-13T06:38:29+0000
YAML
mit
commercialhaskell/all-cabal-metadata
ee0745dfd4cc39b743576658438017b180de6abf
playbooks/roles/clear-nexus-vlans/tasks/main.yaml
playbooks/roles/clear-nexus-vlans/tasks/main.yaml
- name: Copy script to workspace copy: src: "clear_nexus_vlans.py" dest: "{{ workspace }}/clear_nexus_vlans.py" - name: Ensure nexus switch is in known_hosts known_hosts: name: "{{ nexus_ip }}" key: "{{ lookup('pipe', 'ssh-keyscan -t rsa %s' % nexus_ip) }}" - name: Clear the claimed VLANs on the Nexus interfaces command: "python {{ workspace }}/clear_nexus_vlans.py {{ nexus_ip }} {{ nexus_user }} {{ nexus_password }} {{ item }} {{ minvlan }} {{ maxvlan }}" with_items: "{{ nexus_interfaces }}"
- name: Copy script to workspace copy: src: "clear_nexus_vlans.py" dest: "{{ workspace }}/clear_nexus_vlans.py" - name: ssh-keyscan the nexus switch command: "ssh-keyscan -t rsa {{ nexus_ip }}" register: nexus_keyscan_result - name: Ensure nexus switch is in known_hosts known_hosts: name: "{{ nexus_ip }}" key: "{{ nexus_keyscan_result.stdout }}" - name: Clear the claimed VLANs on the Nexus interfaces command: "python {{ workspace }}/clear_nexus_vlans.py {{ nexus_ip }} {{ nexus_user }} {{ nexus_password }} {{ item }} {{ minvlan }} {{ maxvlan }}" with_items: "{{ nexus_interfaces }}"
Use command instead of lookup in clear-nexus-vlans
Use command instead of lookup in clear-nexus-vlans
YAML
apache-2.0
CiscoSystems/project-config-third-party,CiscoSystems/project-config-third-party
46914f064eeb4891da1f8990d3777f87a726613c
config/locale_task_config.yaml
config/locale_task_config.yaml
--- yaml_strings_to_extract: db/fixtures/miq_product_features.*: - name - description db/fixtures/miq_report_formats.*: - description db/fixtures/notification_types.*: - message product/charts/layouts/*.yaml: - title product/charts/layouts/*/*.yaml: - title product/compare/*.yaml: - headers - group - menu_name - title product/reports/*/*.*: - headers - menu_name - title product/timelines/miq_reports/*.*: - title - name - headers
--- yaml_strings_to_extract: db/fixtures/miq_product_features{.yml,.yaml,/*.yml,/*.yaml}: - name - description db/fixtures/miq_report_formats.*: - description db/fixtures/notification_types.*: - message product/charts/layouts/*.yaml: - title product/charts/layouts/*/*.yaml: - title product/compare/*.yaml: - headers - group - menu_name - title product/reports/*/*.*: - headers - menu_name - title product/timelines/miq_reports/*.*: - title - name - headers
Expand i18n yaml extraction for miq_product_feature pluggability
Expand i18n yaml extraction for miq_product_feature pluggability
YAML
apache-2.0
agrare/manageiq,agrare/manageiq,gmcculloug/manageiq,NickLaMuro/manageiq,aufi/manageiq,djberg96/manageiq,jrafanie/manageiq,kbrock/manageiq,andyvesel/manageiq,lpichler/manageiq,lpichler/manageiq,mzazrivec/manageiq,pkomanek/manageiq,branic/manageiq,yaacov/manageiq,jvlcek/manageiq,juliancheal/manageiq,chessbyte/manageiq,pkomanek/manageiq,borod108/manageiq,tinaafitz/manageiq,yaacov/manageiq,jvlcek/manageiq,syncrou/manageiq,gmcculloug/manageiq,kbrock/manageiq,jrafanie/manageiq,pkomanek/manageiq,djberg96/manageiq,mkanoor/manageiq,juliancheal/manageiq,jameswnl/manageiq,agrare/manageiq,jvlcek/manageiq,branic/manageiq,romanblanco/manageiq,borod108/manageiq,andyvesel/manageiq,jameswnl/manageiq,hstastna/manageiq,billfitzgerald0120/manageiq,mzazrivec/manageiq,syncrou/manageiq,skateman/manageiq,juliancheal/manageiq,andyvesel/manageiq,skateman/manageiq,ManageIQ/manageiq,lpichler/manageiq,billfitzgerald0120/manageiq,tinaafitz/manageiq,d-m-u/manageiq,skateman/manageiq,kbrock/manageiq,hstastna/manageiq,aufi/manageiq,mzazrivec/manageiq,gmcculloug/manageiq,borod108/manageiq,mzazrivec/manageiq,djberg96/manageiq,NickLaMuro/manageiq,romanblanco/manageiq,juliancheal/manageiq,pkomanek/manageiq,d-m-u/manageiq,lpichler/manageiq,jameswnl/manageiq,mkanoor/manageiq,mkanoor/manageiq,djberg96/manageiq,hstastna/manageiq,hstastna/manageiq,jameswnl/manageiq,romanblanco/manageiq,NickLaMuro/manageiq,mkanoor/manageiq,yaacov/manageiq,yaacov/manageiq,jrafanie/manageiq,kbrock/manageiq,chessbyte/manageiq,ManageIQ/manageiq,aufi/manageiq,agrare/manageiq,jvlcek/manageiq,branic/manageiq,syncrou/manageiq,jrafanie/manageiq,d-m-u/manageiq,ManageIQ/manageiq,branic/manageiq,tinaafitz/manageiq,billfitzgerald0120/manageiq,gmcculloug/manageiq,syncrou/manageiq,ManageIQ/manageiq,chessbyte/manageiq,borod108/manageiq,tinaafitz/manageiq,chessbyte/manageiq,andyvesel/manageiq,skateman/manageiq,billfitzgerald0120/manageiq,NickLaMuro/manageiq,romanblanco/manageiq,d-m-u/manageiq,aufi/manageiq
87776a14841df472a1bfcf2fb2d8d9d08af4e40a
aws/stringer-cd.yaml
aws/stringer-cd.yaml
language: python python: - 2.7 env: global: before_install: - pip install awscli install: - pip install -r requirements.txt before_script: script: after_success:
AWSTemplateFormatVersion: "2010-09-09" Description: The code deployment application. Parameters: ServiceRole: Default: INPUT_IAM Description: IAM service role for code deploy Type: String ApplicationName: Default: stringer-app Type: String EC2TagKey: Default: owner Type: String EC2TagValue: Default: kalab Type: String Resources: Application: Type: 'AWS::CodeDeploy::Application' Properties: ApplicationName: Ref: ApplicationName DeploymentGroup: Type: 'AWS::CodeDeploy::DeploymentGroup' Properties: ApplicationName: Ref: Application DeploymentConfigName: CodeDeployDefault.OneAtATime AutoRollbackConfiguration: Enabled: 'false' DeploymentGroupName: wordsum Ec2TagFilters: - Key: Ref: EC2TagKey Value: Ref: EC2TagValue Type: KEY_AND_VALUE ServiceRoleArn: Ref: ServiceRole
Write the CF template for the code-deploy. Need to test. Publish for time and life.
Write the CF template for the code-deploy. Need to test. Publish for time and life.
YAML
apache-2.0
kalaboster/stringer,kalaboster/stringer
e3a54feeea5d4d12bac0238258678887a1a6e39f
data/discovery/register/jobcentre.yaml
data/discovery/register/jobcentre.yaml
fields: - "jobcentre" - "name" - "address" - "postcode" phase: "discovery" register: "jobcentre" registry: "department-for-work-pensions" text: "Job Centre Offices"
fields: - "jobcentre" - "name" - "address" - "postcode" phase: "discovery" register: "jobcentre" registry: "department-for-work-pensions" text: "Jobcentre Offices"
Rename "Job Centre Offices" to "Jobcentre Offices"
Rename "Job Centre Offices" to "Jobcentre Offices"
YAML
mit
openregister/registry-data
8db9fb0bdc6c6ac0abcb014606da5bfb40176b46
tests/Fixtures/FileConfigurations/resources.yml
tests/Fixtures/FileConfigurations/resources.yml
resources: 'ApiPlatform\Core\Tests\Fixtures\TestBundle\Entity\Dummy': ~ 'ApiPlatform\Core\Tests\Fixtures\TestBundle\Entity\FileConfigDummy': shortName: 'thedummyshortname' description: 'Dummy resource' itemOperations: my_op_name: method: 'GET' my_other_op_name: method: 'POST' collectionOperations: my_collection_op: method: 'POST' path: 'the/collection/path' attributes: normalization_context: groups: ['default'] denormalization_context: groups: ['default'] hydra_context: '@type': 'hydra:Operation' '@hydra:title': 'File config Dummy' iri: 'someirischema' properties: 'foo': description: 'The dummy foo' readable: true writable: true readableLink: false writableLink: false required: true attributes: 'foo': ['Foo'] 'bar': 0: ['Bar'] 'baz': 'Baz' 'baz': 'Baz' 'name': description: 'The dummy name'
resources: 'ApiPlatform\Core\Tests\Fixtures\TestBundle\Entity\Dummy': ~ 'ApiPlatform\Core\Tests\Fixtures\TestBundle\Entity\FileConfigDummy': shortName: 'thedummyshortname' description: 'Dummy resource' itemOperations: my_op_name: method: 'GET' my_other_op_name: method: 'POST' collectionOperations: my_collection_op: method: 'POST' path: 'the/collection/path' attributes: normalization_context: groups: ['default'] denormalization_context: groups: ['default'] hydra_context: '@type': 'hydra:Operation' '@hydra:title': 'File config Dummy' iri: 'someirischema' properties: 'foo': description: 'The dummy foo' readable: true writable: true readableLink: false writableLink: false required: true attributes: 'foo': ['Foo'] 'bar': '0': ['Bar'] 'baz': 'Baz' 'baz': 'Baz' 'name': description: 'The dummy name'
Fix yaml file, key should be quoted
Fix yaml file, key should be quoted
YAML
mit
soyuka/core,meyerbaptiste/core,jdeniau/DunglasApiBundle,teohhanhui/api-platform-core,meyerbaptiste/core,api-platform/core,vincentchalamon/core,jdeniau/DunglasApiBundle,teohhanhui/api-platform-core,soyuka/core,soyuka/DunglasApiBundle,api-platform/core,meyerbaptiste/core,vincentchalamon/core,leesiongchan/DunglasApiBundle,teohhanhui/DunglasApiBundle,jdeniau/DunglasApiBundle,soyuka/core,vincentchalamon/core,meyerbaptiste/core,soyuka/core,teohhanhui/api-platform-core,vincentchalamon/core,jdeniau/DunglasApiBundle,teohhanhui/api-platform-core,api-platform/core,ahlee2326/DunglasApiBundle,api-platform/core
4a80ccf7cb253c1a69eb75ede3c658a614dcf231
recipes/tifffile/meta.yaml
recipes/tifffile/meta.yaml
package: name: tifffile version: 0.3.1 source: git_rev: v0.3.1 git_url: https://github.com/blink1073/tifffile build: number: 1 requirements: build: - python - setuptools - numpy x.x run: - python - numpy x.x test: imports: - tifffile about: home: https://github.com/blink1073/tifffile license: BSD License summary: 'Read and write image data from and to TIFF files.'
package: name: tifffile version: 0.7.0 source: git_rev: v0.7.0 git_url: https://github.com/blink1073/tifffile build: number: 1 requirements: build: - python - setuptools - numpy x.x run: - python - numpy x.x test: imports: - tifffile about: home: https://github.com/blink1073/tifffile license: BSD License summary: 'Read and write image data from and to TIFF files.'
Build tifffile from github source
Build tifffile from github source
YAML
bsd-3-clause
NSLS-II/auto-build-tagged-recipes,NSLS-II/lightsource2-recipes,NSLS-II/auto-build-tagged-recipes,NSLS-II/lightsource2-recipes,NSLS-II/lightsource2-recipes,NSLS-II/lightsource2-recipes
4ca574cde1968d7410d18cfab4a3f20c7dd3831a
.github/workflows/gradle-wrapper-validation.yml
.github/workflows/gradle-wrapper-validation.yml
name: "Validate Gradle Wrapper" on: [push, pull_request] permissions: contents: read jobs: validation: name: "Validation" runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: gradle/wrapper-validation-action@v1
name: "Validate Gradle Wrapper" on: [push, pull_request] permissions: contents: read jobs: validation: name: "Validation" runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: gradle/wrapper-validation-action@v1
Use actions/checkout@v3 for Gradle Wrapper Validation Action
Use actions/checkout@v3 for Gradle Wrapper Validation Action See gh-29198
YAML
apache-2.0
spring-projects/spring-framework,spring-projects/spring-framework,spring-projects/spring-framework,spring-projects/spring-framework,spring-projects/spring-framework,spring-projects/spring-framework,spring-projects/spring-framework
d809a4ec89453595b7ba24557f82b60ba1bf1a94
src/Bonnes/AdressesBundle/Resources/config/services.yml
src/Bonnes/AdressesBundle/Resources/config/services.yml
parameters: # bonnes_adresses.example.class: Bonnes\AdressesBundle\Example services: adresses.admin: class: Bonnes\AdressesBundle\Admin\AdresseAdmin tags: - { name: sonata.admin, manager_type: doctrine_mongodb, group: "Adresses", label: "Adresses" } arguments: [null, Bonnes\AdressesBundle\Document\Adresse, null] adressestype.admin: class: Bonnes\AdressesBundle\Admin\AdresseTypeAdmin tags: - { name: sonata.admin, manager_type: doctrine_mongodb, group: "Adresses", label: "Adresses Type" } arguments: [null, Bonnes\AdressesBundle\Document\AdresseType, null] my.sitemap.listener: class: Bonnes\AdressesBundle\EventListener\SitemapListener arguments: [@router, @doctrine_mongodb] tags: [{name: "presta.sitemap.listener"}] twig.extension.text: class: Twig_Extensions_Extension_Text tags: - { name: twig.extension }
parameters: # bonnes_adresses.example.class: Bonnes\AdressesBundle\Example services: adresses.admin: class: Bonnes\AdressesBundle\Admin\AdresseAdmin tags: - { name: sonata.admin, manager_type: doctrine_mongodb, group: "Adresses", label: "Adresses" } arguments: [null, Bonnes\AdressesBundle\Document\Adresse, null] my.sitemap.listener: class: Bonnes\AdressesBundle\EventListener\SitemapListener arguments: [@router, @doctrine_mongodb] tags: [{name: "presta.sitemap.listener"}] twig.extension.text: class: Twig_Extensions_Extension_Text tags: - { name: twig.extension }
Remove last piece of AdresseType
Remove last piece of AdresseType
YAML
mit
lologhi/desBonnesAdresses,lologhi/desBonnesAdresses,lologhi/desBonnesAdresses
6f0b306938b8fcf20e2848876bc8abc8ae68e496
kubeadm.yaml
kubeadm.yaml
kind: MasterConfiguration apiVersion: kubeadm.k8s.io/v1alpha1 controllerManagerExtraArgs: horizontal-pod-autoscaler-use-rest-clients: "true" horizontal-pod-autoscaler-sync-period: "10s" node-monitor-grace-period: "10s" apiServerExtraArgs: runtime-config: "api/all=true" feature-gates: "TaintBasedEvictions=true" kubernetesVersion: "stable-1.7"
apiVersion: kubeadm.k8s.io/v1alpha1 kind: MasterConfiguration controllerManagerExtraArgs: horizontal-pod-autoscaler-use-rest-clients: "true" horizontal-pod-autoscaler-sync-period: "10s" node-monitor-grace-period: "10s" apiServerExtraArgs: runtime-config: "api/all=true" kubernetesVersion: "stable-1.7"
Remove the TaintBasedEvictions alpha feature
Remove the TaintBasedEvictions alpha feature
YAML
mit
luxas/kubeadm-workshop,luxas/kubeadm-workshop
2bc780b833fb60d27dae66d3b5d2fd49b0e6ae23
boskos/variants.yaml
boskos/variants.yaml
variants: boskos: COMPONENT: boskos SUBDIR: '' reaper: COMPONENT: reaper SUBDIR: reaper janitor: COMPONENT: janitor SUBDIR: janitor aws-janitor: COMPONENT: aws-janitor SUBDIR: ../maintenance/aws-janitor # why?
variants: boskos: COMPONENT: boskos SUBDIR: '' reaper: COMPONENT: reaper SUBDIR: reaper janitor: COMPONENT: janitor SUBDIR: janitor metrics: COMPONENT: metrics SUBDIR: metrics aws-janitor: COMPONENT: aws-janitor SUBDIR: ../maintenance/aws-janitor # why?
Add missing boskos metrics image.
Add missing boskos metrics image.
YAML
apache-2.0
cblecker/test-infra,dims/test-infra,cjwagner/test-infra,brahmaroutu/test-infra,cjwagner/test-infra,kubernetes/test-infra,pwittrock/test-infra,brahmaroutu/test-infra,kubernetes/test-infra,pwittrock/test-infra,jessfraz/test-infra,michelle192837/test-infra,krzyzacy/test-infra,kubernetes/test-infra,monopole/test-infra,michelle192837/test-infra,kubernetes/test-infra,brahmaroutu/test-infra,monopole/test-infra,krzyzacy/test-infra,fejta/test-infra,brahmaroutu/test-infra,BenTheElder/test-infra,brahmaroutu/test-infra,monopole/test-infra,jessfraz/test-infra,BenTheElder/test-infra,lavalamp/test-infra,lavalamp/test-infra,jessfraz/test-infra,BenTheElder/test-infra,dims/test-infra,brahmaroutu/test-infra,michelle192837/test-infra,cblecker/test-infra,fejta/test-infra,dims/test-infra,dims/test-infra,krzyzacy/test-infra,cblecker/test-infra,jessfraz/test-infra,BenTheElder/test-infra,krzyzacy/test-infra,ixdy/kubernetes-test-infra,monopole/test-infra,cblecker/test-infra,krzyzacy/test-infra,lavalamp/test-infra,fejta/test-infra,BenTheElder/test-infra,kubernetes/test-infra,michelle192837/test-infra,fejta/test-infra,fejta/test-infra,pwittrock/test-infra,monopole/test-infra,monopole/test-infra,ixdy/kubernetes-test-infra,ixdy/kubernetes-test-infra,dims/test-infra,cjwagner/test-infra,lavalamp/test-infra,jessfraz/test-infra,lavalamp/test-infra,cjwagner/test-infra,cjwagner/test-infra,cblecker/test-infra,cblecker/test-infra,ixdy/kubernetes-test-infra,michelle192837/test-infra,michelle192837/test-infra,cjwagner/test-infra,pwittrock/test-infra,pwittrock/test-infra,krzyzacy/test-infra,ixdy/kubernetes-test-infra,lavalamp/test-infra,fejta/test-infra,dims/test-infra,kubernetes/test-infra,BenTheElder/test-infra,jessfraz/test-infra
7c81d0add5202b42496a9e1c2fcdc2ef95d8dadc
deployment/monitoring/prometheus/prometheus.yml
deployment/monitoring/prometheus/prometheus.yml
global: scrape_interval: 15s evaluation_interval: 15s scrape_configs: - job_name: 'prometheus' static_configs: - targets: ['localhost:9090'] - job_name: 'node' static_configs: - targets: ['localhost:9100', 'sb-staging:9100', 'sb-prod:9100'] - job_name: 'app_server' static_configs: - targets: ['sb-staging:80', 'sb-prod:9100']
global: scrape_interval: 15s evaluation_interval: 15s scrape_configs: - job_name: 'prometheus' static_configs: - targets: ['localhost:9090'] - job_name: 'node' static_configs: - targets: ['localhost:9100', 'sb-staging:9100', 'sb-prod:9100'] - job_name: 'app_server' static_configs: - targets: ['sb-staging:80', 'sb-prod:80']
Fix port on metrics from webserver.
Fix port on metrics from webserver.
YAML
mit
ShieldBattery/ShieldBattery,ShieldBattery/ShieldBattery,ShieldBattery/ShieldBattery,ShieldBattery/ShieldBattery,ShieldBattery/ShieldBattery
67ce367f43647d5766ccf3fdb107588f059e1f28
elasticsearch-1/manifests/elasticsearch-rc.yaml
elasticsearch-1/manifests/elasticsearch-rc.yaml
apiVersion: v1 kind: ReplicationController metadata: name: elasticsearch labels: provider: elasticsearch-1 heritage: helm spec: replicas: 1 selector: provider: elasticsearch-1 template: metadata: name: elasticsearch-1 labels: provider: elasticsearch-1 spec: containers: - name: elasticsearch image: elasticsearch:1.7 ports: - containerPort: 9200 - containerPort: 9300
apiVersion: v1 kind: ReplicationController metadata: name: elasticsearch labels: provider: elasticsearch-1 heritage: helm spec: replicas: 1 selector: provider: elasticsearch-1 template: metadata: name: elasticsearch labels: provider: elasticsearch-1 spec: containers: - name: elasticsearch image: elasticsearch:1.7 ports: - containerPort: 9200 - containerPort: 9300
Revert "fix(elasticsearch-1): name pod properly for tests"
Revert "fix(elasticsearch-1): name pod properly for tests" This reverts commit 6ad73f9bb07913cd61f99fbd0e97f3f9d23efd1a.
YAML
apache-2.0
sd2k/charts,eicnix/charts,rimusz/helm-charts,trobert2/charts-1,grugnog/charts,sd2k/charts,barklyprotects/charts,ledor473/charts,escardin/charts,smelchior/charts,barklyprotects/charts,viglesiasce/charts,kachkaev/charts,cafebazaar/charts,grugnog/charts,trobert2/charts-1,escardin/charts,jainishshah17/charts,DevOpsify/charts,sstarcher/charts,kachkaev/charts,eicnix/charts,sd2k/charts,jainishshah17/charts,GaneshSPatil/charts,escardin/charts,barklyprotects/charts,pfeodrippe/charts,DevOpsify/charts,GaneshSPatil/charts,mehdy/charts,mlaccetti/charts,rimusz/helm-charts,krallistic/charts,mluedke/charts,krallistic/charts,trobert2/charts-1,smileisak/charts,caiwenhao/charts,viglesiasce/charts,samisms/charts,helm/charts,mluedke/charts,jainishshah17/charts,ledor473/charts,pfeodrippe/charts,DevOpsify/charts,caiwenhao/charts,sstarcher/charts,rimusz/helm-charts,kachkaev/charts,GaneshSPatil/charts,helm/charts,samisms/charts,samisms/charts,ledor473/charts,helm/charts,mluedke/charts,sstarcher/charts,smileisak/charts,smelchior/charts,pfeodrippe/charts,DevOpsify/charts,viglesiasce/charts,grugnog/charts,GaneshSPatil/charts,lachie83/charts,smelchior/charts,oleh-ozimok/charts,eicnix/charts,pfeodrippe/charts,krallistic/charts,smileisak/charts,oleh-ozimok/charts,plytro/charts,lachie83/charts,plytro/charts,lachie83/charts,caiwenhao/charts,sd2k/charts,mlaccetti/charts,lachie83/charts,rimusz/helm-charts,helm/charts,oleh-ozimok/charts,mlaccetti/charts
75b0007ede285625595fa271634e338c4f16c6c2
conda.recipe/meta.yaml
conda.recipe/meta.yaml
package: name: "hydromath" version: {{ environ['GIT_DESCRIBE_TAG'][1:] }} build: number: {{ environ.get('GIT_DESCRIBE_NUMBER', 0) }} source: git_url: https://github.com/amacd31/hydromath_py.git git_rev: master requirements: build: - python x.x - libhydromath # [unix] - cffi run: - python x.x - libhydromath # [unix] - cffi
package: name: "hydromath" version: {{ environ['GIT_DESCRIBE_TAG'][1:] }} build: number: {{ environ.get('GIT_DESCRIBE_NUMBER', 0) }} source: git_url: ../ requirements: build: - python x.x - libhydromath # [unix] - cffi run: - python x.x - libhydromath # [unix] - cffi
Use relative git_url instead of remote git url
Use relative git_url instead of remote git url
YAML
bsd-3-clause
amacd31/hydromath_py,amacd31/hydromath_py
cd50b6b15709f8412d4d51586ad31fa56b159eb5
config/influxdb.yml
config/influxdb.yml
development: database: 'twb' username: root password: root production: database: 'twb' username: root password: root test: database: 'twb' username: root password: root
development: database: 'botnbot' username: root password: root production: database: 'botnbot' username: root password: root test: database: 'botnbot' username: root password: root
Change database name to botnbot
Change database name to botnbot
YAML
apache-2.0
frocher/bnb_nexus,frocher/bnb_nexus,frocher/bnb_nexus
9f2d04892edde9a204c8c638310a729c0852b161
ansible/roles/elasticsearch/tasks/install.deb.yml
ansible/roles/elasticsearch/tasks/install.deb.yml
--- - name: elasticsearch-install | Add repository keys apt_key: keyserver="{{item.server}}" id="{{item.key}}" state=present with_items: "{{ elasticsearch_apt_repo_keys }}" - name: elasticsearch-install | Add repositories apt_repository: repo="{{item}}" update_cache=yes with_items: "{{ elasticsearch_apt_repos }}" - name: elasticsearch-install | Check for Elasticsearch already installed stat: path={{elasticsearch_home}}/lib/elasticsearch-{{elasticsearch_version}}.jar register: version_exists - name: elasticsearch-install | Download deb get_url: url={{elasticsearch_download_url}}/elasticsearch-{{elasticsearch_version}}.deb dest=/tmp/elasticsearch-{{elasticsearch_version}}.deb mode=0440 when: not version_exists.stat.exists - name: elasticsearch-install | Install Elasticsearch apt: deb=/tmp/elasticsearch-{{elasticsearch_version}}.deb dpkg_options=force-confnew when: not version_exists.stat.exists - name: elasticsearch-install | Setup passlib apt: pkg=python-passlib when: elasticsearch_proxy_auth
--- - name: elasticsearch-install | Add repository keys apt_key: keyserver="{{item.server}}" id="{{item.key}}" state=present with_items: "{{ elasticsearch_apt_repo_keys }}" - name: elasticsearch-install | Add repositories apt_repository: repo="{{item}}" update_cache=yes with_items: "{{ elasticsearch_apt_repos }}" - name: elasticsearch-install | Check for Elasticsearch already installed stat: path={{elasticsearch_home}}/lib/elasticsearch-{{elasticsearch_version}}.jar register: version_exists - name: elasticsearch-install | Download deb (legacy) get_url: url={{elasticsearch_download_url}}/elasticsearch-{{elasticsearch_version}}.deb dest=/tmp/elasticsearch-{{elasticsearch_version}}.deb mode=0440 when: not version_exists.stat.exists and not elasticsearch_version == "7.1.1" - name: elasticsearch-install | Install Elasticsearch (legacy) apt: deb=/tmp/elasticsearch-{{elasticsearch_version}}.deb dpkg_options=force-confnew when: not version_exists.stat.exists and not elasticsearch_version == "7.1.1" - name: add apt key for elastic (modern) apt_key: url="https://artifacts.elastic.co/GPG-KEY-elasticsearch" state=present notify: elasticsearch restart when: not version_exists.stat.exists and elasticsearch_version == "7.1.1" - name: add elastic 7 apt source list (modern) copy: content="deb https://artifacts.elastic.co/packages/7.x/apt stable main" dest="/etc/apt/sources.list.d/elastic-7.x.list" notify: elasticsearch restart when: not version_exists.stat.exists and elasticsearch_version == "7.1.1" - name: elasticsearch-install | Install Elasticsearch (modern) apt: name="elasticsearch" state=latest when: not version_exists.stat.exists and elasticsearch_version == "7.1.1" - name: elasticsearch-install | Setup passlib apt: pkg=python-passlib when: elasticsearch_proxy_auth
Install modern elasticsearch when previous doesn't exist or elasticsearch_version is customised
Install modern elasticsearch when previous doesn't exist or elasticsearch_version is customised Signed-off-by: Peter Ansell <aaf1ec639befe0a570b950d5d6cbd0c6638a063e@yahoo.com>
YAML
apache-2.0
AtlasOfLivingAustralia/ala-install,AtlasOfLivingAustralia/ala-install,AtlasOfLivingAustralia/ala-install,AtlasOfLivingAustralia/ala-install,AtlasOfLivingAustralia/ala-install
48ea4e0191c43c81d930a8918293f0b05378976d
.config/beets/config.yaml
.config/beets/config.yaml
directory: ~/music/beetsdir library: ~/.beets.db plugins: missing duplicates fetchart embedart zero convert chroma info play discogs random fuzzy import: copy: yes log: ~/.beetsimports.log fuzzy: threshold: 0.8 prefix: "?" fetchart: enforce_ratio: no minwidth: 500 zero: fields: albumartist_sort artist_sort comments genre update_database: true convert: dest: /tmp/ never_convert_lossy_files: yes formats: ipod: command: ffmpeg -v warning -analyzeduration 100000000 -i $source -vn -c:a alac -ar 48000 -sample_fmt s16p $dest extension: m4a opus: ffmpeg -i $source -y -vn -acodec libopus -ab 128k $dest aac: extension: m4a command: ffmpeg -i $source -vn -c:a libfdk_aac -vbr 5 $dest mp3: ffmpeg -i $source -y -vn -c:a libmp3lame $dest play: warning_threshold: no raw: yes command: ds vlc --one-instance --playlist-enqueue --started-from-file -ZL
directory: ~/music/beetsdir library: ~/.beets.db asciify_path: yes plugins: missing duplicates fetchart embedart zero convert chroma info play discogs random fuzzy import: copy: yes log: ~/.beetsimports.log fuzzy: threshold: 0.8 prefix: "?" fetchart: enforce_ratio: no minwidth: 500 zero: fields: albumartist_sort artist_sort comments genre update_database: true convert: dest: /tmp/ never_convert_lossy_files: yes formats: ipod: command: ffmpeg -v warning -analyzeduration 100000000 -i $source -vn -c:a alac -ar 48000 -sample_fmt s16p $dest extension: m4a opus: ffmpeg -i $source -y -vn -acodec libopus -ab 128k $dest aac: extension: m4a command: ffmpeg -i $source -vn -c:a libfdk_aac -vbr 5 $dest mp3: ffmpeg -i $source -y -vn -c:a libmp3lame $dest play: warning_threshold: no raw: yes command: ds vlc --one-instance --playlist-enqueue --started-from-file -ZL
Revert "beets: do not asciify paths"
Revert "beets: do not asciify paths" This reverts commit a91dd3d13935e20f8fbbb788c6d6effdd0dac11a.
YAML
unlicense
nathdwek/dotfiles,nathdwek/dotfiles
704e4ac16f69aa9f8f46961d611fefa595801bc1
src/main/resources/plugin.yml
src/main/resources/plugin.yml
name: ${project.name} version: ${project.version} main: nl.rutgerkok.blocklocker.impl.BlockLockerPluginImpl author: Rutger Kok load: startup permissions: blocklocker.protect: description: "Protect containers and doors." default: true blocklocker.bypass: description: "Bypass someone else's protection." default: op blocklocker.reload: description: "Reload the plugin using /blocklocker reload." default: op commands: blocklocker: description: "Edit a sign on your protection." permission: "blocklocker.protect" usage: "/<command> <lineNumber> <value>"
name: ${project.name} version: ${project.version} main: nl.rutgerkok.blocklocker.impl.BlockLockerPluginImpl author: Rutger Kok load: startup permissions: blocklocker.protect: description: "Protect containers and doors." default: true blocklocker.bypass: description: "Bypass someone else's protection." default: op blocklocker.reload: description: "Reload the plugin using /blocklocker reload." default: op commands: blocklocker: description: "Edit a sign on your protection." permission: "blocklocker.protect" usage: "/<command> <lineNumber> <value>" aliases: "bl"
Add /bl alias for /blocklocker
Add /bl alias for /blocklocker
YAML
mit
rutgerkok/BlockLocker
08fc72f3522739f9588a9ac5f34e30d6baf6db43
.github/workflows/php.yml
.github/workflows/php.yml
name: Build on: [push, pull_request] jobs: build: runs-on: ubuntu-latest strategy: fail-fast: false matrix: php: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0'] name: PHP ${{ matrix.php }} steps: - uses: actions/checkout@v1 - name: Install PHP uses: shivammathur/setup-php@master with: php-version: ${{ matrix.php }} - name: Report PHP version run: php -v - name: Validate composer.json and composer.lock run: composer validate - name: Get Composer Cache Directory id: composer-cache run: echo "::set-output name=dir::$(composer config cache-files-dir)" - name: Cache dependencies uses: actions/cache@v1 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ matrix.php }}-composer-${{ hashFiles('**/composer.lock') }} restore-keys: ${{ matrix.php }}-composer- - name: Update dependencies run: composer update --prefer-dist --no-progress --no-suggest - name: Run test suite run: ./vendor/bin/phpunit --coverage-clover clover.xml - name: Run coverage service env: COVERALLS_RUN_LOCALLY: 1 COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} run: ./vendor/bin/php-coveralls --coverage_clover=./clover.xml -v
name: Build on: [push, pull_request] jobs: build: runs-on: ubuntu-latest strategy: fail-fast: false matrix: php: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0'] name: PHP ${{ matrix.php }} environment: Build steps: - uses: actions/checkout@v1 - name: Install PHP uses: shivammathur/setup-php@master with: php-version: ${{ matrix.php }} - name: Report PHP version run: php -v - name: Validate composer.json and composer.lock run: composer validate - name: Get Composer Cache Directory id: composer-cache run: echo "::set-output name=dir::$(composer config cache-files-dir)" - name: Cache dependencies uses: actions/cache@v1 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ matrix.php }}-composer-${{ hashFiles('**/composer.lock') }} restore-keys: ${{ matrix.php }}-composer- - name: Update dependencies run: composer update --prefer-dist --no-progress --no-suggest - name: Run test suite run: ./vendor/bin/phpunit --coverage-clover clover.xml - name: Run coverage service env: COVERALLS_RUN_LOCALLY: 1 COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} run: ./vendor/bin/php-coveralls --coverage_clover=./clover.xml -v
Update Github Actions environment to Build for secrets.
Update Github Actions environment to Build for secrets.
YAML
mit
nubs/random-name-generator
c7ac5491b84b19faede8e9922a6ad98a5568d56a
.github/workflows/maven.yml
.github/workflows/maven.yml
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time # For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven name: Java CI with Maven on: [push] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Set up JDK 16 uses: actions/setup-java@v3 with: java-version: '16' distribution: 'temurin' cache: maven - name: Build with Maven run: mvn -B package --file pom.xml echo "::set-output name=releaseName::`ls home/runner/work/SubTools/SubTools/SubSort/target/subsort-*.jar | awk -F '(/|.jar)' '{print $8}'`" - name: Upload jar if: success() uses: actions/upload-artifact@v3 with: name: ${{ steps.buildRelease.outputs.releaseName }} path: "home/runner/work/SubTools/SubTools/SubSort/target/subsort-*.jar"
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time # For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven name: Java CI with Maven on: [push] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Set up JDK 16 uses: actions/setup-java@v3 with: java-version: '16' distribution: 'temurin' cache: maven - name: Build with Maven run: mvn -B package --file pom.xml
Revert "upload artifact after build"
Revert "upload artifact after build" This reverts commit 83983870bdd6afb408904cf662e9ebfa6e965db3.
YAML
mit
phdelodder/SubTools
ff693ab0b7d8c1c20e3b4bdb0c9de547f7504abd
titan-dist/src/assembly/static/conf/remote-objects.yaml
titan-dist/src/assembly/static/conf/remote-objects.yaml
hosts: [localhost] port: 8182 serializer: { className: org.apache.tinkerpop.gremlin.driver.ser.GryoMessageSerializerV1d0}
hosts: [localhost] port: 8182 serializer: { className: org.apache.tinkerpop.gremlin.driver.ser.GryoMessageSerializerV1d0, config: { custom: [com.thinkaurelius.titan.graphdb.relations.RelationIdentifier] }}
Update config with titan-specific serialization option.
Update config with titan-specific serialization option. This will allow the remote console to work properly when using this configuration.
YAML
apache-2.0
CYPP/titan,CYPP/titan,pluradj/titan,dylanht/titan,elubow/titan,thinkaurelius/titan,samanalysis/titan,englishtown/titan,pluradj/titan,CYPP/titan,mbrukman/titan,englishtown/titan,dylanht/titan,banjiewen/titan,dylanht/titan,samanalysis/titan,graben1437/titan,englishtown/titan,graben1437/titan,banjiewen/titan,englishtown/titan,samanalysis/titan,mbrukman/titan,pluradj/titan,CYPP/titan,mbrukman/titan,samanalysis/titan,mbrukman/titan,thinkaurelius/titan,amcp/titan,banjiewen/titan,elubow/titan,elubow/titan,pluradj/titan,thinkaurelius/titan,amcp/titan,thinkaurelius/titan,amcp/titan,mbrukman/titan,elubow/titan,graben1437/titan,amcp/titan,banjiewen/titan,graben1437/titan,dylanht/titan
e3b20a21e6c3f9b711c8f400844600d90051bdf7
config/locales/voc.en.yml
config/locales/voc.en.yml
en: voc: cancel: "Cancel" close: "Close" confirm: "Are you sure?" delete: "Delete" edit: "Edit" login: "Sign in" save: "Save changes" register: "Sign up" terms: "Terms of Service" update: "Update" messages: noauth: "requires authentication"
en: voc: cancel: "Cancel" close: "Close" confirm: "Are you sure?" delete: "Delete" edit: "Edit" login: "Sign in" save: "Save changes" register: "Sign up" terms: "Terms of Service" update: "Update" messages: noauth: "You must be signed in to do this."
Apply review suggestion from @raccube
Apply review suggestion from @raccube Co-authored-by: Karina Kwiatek <a279f78642aaf231facf94ac593d2ad2fd791699@users.noreply.github.com>
YAML
agpl-3.0
Retrospring/retrospring,Retrospring/retrospring,Retrospring/retrospring,Retrospring/retrospring,Retrospring/retrospring
ad2df2f0e7ef3deeb6ef047dc2c836421d75b3d3
hieradata/common/roles/metric.yaml
hieradata/common/roles/metric.yaml
--- include: default: - profile::openstack::metric - profile::openstack::openrc - profile::logging::rsyslog::client openstack_version: 'queens' #FIXME memcached::max_memory: '20%' profile::base::common::packages: 'python-openstackclient': {} 'openstack-selinux': {} 'python-memcached': {} # gnocchi::manage_memcache_package are broken profile::openstack::metric::manage_firewall: true profile::openstack::metric::manage_wsgi: true profile::openstack::metric::firewall_extras: source: "%{::network_trp1}/%{::netmask_trp1}" profile::openstack::openrc::password: "%{hiera('gnocchi_api_password')}" profile::openstack::openrc::username: 'gnocchi' profile::openstack::openrc::project_name: 'services' # Enable extra yum repo profile::base::yumrepo::repo_hash: rdo-release: ensure: present exclude: 'mariadb*' mariadb: ensure: present epel: # should be absent when using RDO, but whitelist can also work ensure: present includepkgs: 'htop bash-completion-extras'
--- include: default: - profile::openstack::metric - profile::openstack::openrc - profile::logging::rsyslog::client openstack_version: 'queens' #FIXME memcached::max_memory: '20%' profile::base::common::packages: 'python-openstackclient': {} 'openstack-selinux': {} 'python-memcached': {} # gnocchi::manage_memcache_package are broken profile::openstack::metric::manage_firewall: true profile::openstack::metric::manage_wsgi: true profile::openstack::metric::firewall_extras: source: "%{::network_trp1}/%{::netmask_trp1}" profile::openstack::openrc::password: "%{hiera('gnocchi_api_password')}" profile::openstack::openrc::username: 'gnocchi' profile::openstack::openrc::project_name: 'services' # Enable extra yum repo profile::base::yumrepo::repo_hash: rdo-release: ensure: present epel: # should be absent when using RDO, but whitelist can also work ensure: present includepkgs: 'htop bash-completion-extras'
Revert switch of mariadb repo, delaying the switchover until after the queens upgrade
Revert switch of mariadb repo, delaying the switchover until after the queens upgrade
YAML
apache-2.0
norcams/himlar,raykrist/himlar,norcams/himlar,mikaeld66/himlar,mikaeld66/himlar,norcams/himlar,TorLdre/himlar,norcams/himlar,raykrist/himlar,norcams/himlar,tanzr/himlar,TorLdre/himlar,mikaeld66/himlar,tanzr/himlar,TorLdre/himlar,mikaeld66/himlar,tanzr/himlar,TorLdre/himlar,raykrist/himlar,raykrist/himlar,TorLdre/himlar,tanzr/himlar,mikaeld66/himlar,tanzr/himlar,raykrist/himlar
fcd3c81898cac81d9c95ac19f14e32f3930647c0
metadata/open.com.permissionsmanager.yml
metadata/open.com.permissionsmanager.yml
Categories: - Security License: GPL-3.0-only AuthorName: Sultanahamer SourceCode: https://github.com/sultanahamer/PermissionsManager IssueTracker: https://github.com/sultanahamer/PermissionsManager/issues Changelog: https://github.com/sultanahamer/PermissionsManager/blob/HEAD/CHANGELOG AutoName: PermissionsManager RepoType: git Repo: https://github.com/sultanahamer/PermissionsManager Builds: - versionName: '3.0' versionCode: 3 commit: v3.0 subdir: app gradle: - yes - versionName: '4.0' versionCode: 4 commit: 267a69b7162d199198a83fb4d4fb851648804922 subdir: app sudo: - apt-get update || apt-get update - apt-get install -y openjdk-11-jdk-headless - update-alternatives --auto java gradle: - yes prebuild: echo 'android { lintOptions { abortOnError false } }' >> build.gradle AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: '4.0' CurrentVersionCode: 4
Categories: - Security License: GPL-3.0-only AuthorName: Sultanahamer SourceCode: https://github.com/sultanahamer/PermissionsManager IssueTracker: https://github.com/sultanahamer/PermissionsManager/issues Changelog: https://github.com/sultanahamer/PermissionsManager/blob/HEAD/CHANGELOG AutoName: PermissionsManager RepoType: git Repo: https://github.com/sultanahamer/PermissionsManager Builds: - versionName: '3.0' versionCode: 3 commit: v3.0 subdir: app gradle: - yes - versionName: '4.0' versionCode: 4 commit: 267a69b7162d199198a83fb4d4fb851648804922 subdir: app sudo: - apt-get update || apt-get update - apt-get install -y openjdk-11-jdk-headless - update-alternatives --auto java gradle: - yes prebuild: echo 'android { lintOptions { abortOnError false } }' >> build.gradle - versionName: '5.0' versionCode: 5 commit: d874fa330703de3c284457e3ff4349079b446dbf subdir: app sudo: - apt-get update || apt-get update - apt-get install -y openjdk-11-jdk-headless - update-alternatives --auto java gradle: - yes prebuild: echo 'android { lintOptions { abortOnError false } }' >> build.gradle AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: '5.0' CurrentVersionCode: 5
Update PermissionsManager to 5.0 (5)
Update PermissionsManager to 5.0 (5)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
8cadcdb8d199ce23a3b50c2695a113fdce23e008
metadata/it.danieleverducci.ojo.yml
metadata/it.danieleverducci.ojo.yml
Categories: - Security - Multimedia - Connectivity License: GPL-3.0-only AuthorName: Daniele Verducci AuthorEmail: daniele.verducci@gmail.com SourceCode: https://github.com/penguin86/ojo IssueTracker: https://github.com/penguin86/ojo/issues Name: Ojo RTSP IP Camera viewer AutoName: Ojo RepoType: git Repo: https://github.com/penguin86/ojo.git Builds: - versionName: 0.0.2 versionCode: 2 commit: 448ff4d2b3d65233ea9c879a8f7e1b06300afc36 subdir: app gradle: - yes - versionName: 0.0.3 versionCode: 3 commit: 505f8bf54b8477dab38f83267ac8a1f51edc9ea1 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 0.0.3 CurrentVersionCode: 3
Categories: - Security - Multimedia - Connectivity License: GPL-3.0-only AuthorName: Daniele Verducci AuthorEmail: daniele.verducci@gmail.com SourceCode: https://github.com/penguin86/ojo IssueTracker: https://github.com/penguin86/ojo/issues Name: Ojo RTSP IP Camera viewer AutoName: Ojo RepoType: git Repo: https://github.com/penguin86/ojo.git Builds: - versionName: 0.0.2 versionCode: 2 commit: 448ff4d2b3d65233ea9c879a8f7e1b06300afc36 subdir: app gradle: - yes - versionName: 0.0.3 versionCode: 3 commit: 505f8bf54b8477dab38f83267ac8a1f51edc9ea1 subdir: app gradle: - yes - versionName: 0.1.0 versionCode: 4 commit: 24fc195ff537841ce19f1209cd46a9b41a42c593 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 0.1.0 CurrentVersionCode: 4
Update Ojo RTSP IP Camera viewer to 0.1.0 (4)
Update Ojo RTSP IP Camera viewer to 0.1.0 (4)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
62ed2cbc89cb262ae729c8cf4fe7da1760245562
handlers/main.yml
handlers/main.yml
--- - name: openvpn restart service: name={{openvpn_service}} state=restarted - name: openvpn pack clients command: zip -j {{openvpn_keydir}}/{{item.item}}.zip {{openvpn_keydir}}/{{item.item}}.crt {{openvpn_keydir}}/{{item.item}}.key {{openvpn_keydir}}/{{item.item}}.ovpn {{openvpn_keydir}}/ca.crt {{openvpn_tls_key if openvpn_tls_auth else ''}} when: item.changed with_items: "{{openvpn_clients_changed.results}}"
--- - name: openvpn restart service: name={{openvpn_service}} state=restarted - name: openvpn pack clients command: zip -j {{item.item}}.zip {{item.item}}.crt {{item.item}}.key {{item.item}}.ovpn ca.crt {{openvpn_tls_key if openvpn_tls_auth else ''}} when: item.changed with_items: "{{openvpn_clients_changed.results}}" args: chdir: "{{ openvpn_keydir }}"
Add ta.key to archive (alternate method)
Add ta.key to archive (alternate method) This is an alternate way to ensure the ta.key file is zipped up in the client config see #46
YAML
mit
teadur/Stouts.openvpn,Stouts/Stouts.openvpn,Stouts/Stouts.openvpn
072e53bbb53477c3f9e9aff0e575666eb3ea38bd
Resources/config/item_factory.yml
Resources/config/item_factory.yml
parameters: darvin_menu.item_factory.abstract.class: Darvin\MenuBundle\Item\AbstractItemFactory darvin_menu.item_factory.menu_item.class: Darvin\MenuBundle\Item\MenuItemFactory darvin_menu.item_factory.slug_map_item.class: Darvin\MenuBundle\Item\SlugMapItemFactory darvin_menu.item_factory.slug_map_item.uri_route: darvin_content_content_show services: darvin_menu.item_factory.abstract: class: "%darvin_menu.item_factory.abstract.class%" abstract: true # public: false arguments: - "@doctrine.orm.entity_manager" - "@knp_menu.factory" darvin_menu.item_factory.menu_item: class: "%darvin_menu.item_factory.menu_item.class%" parent: darvin_menu.item_factory.abstract arguments: - "@darvin_menu.item_factory.slug_map_item" darvin_menu.item_factory.slug_map_item: class: "%darvin_menu.item_factory.slug_map_item.class%" parent: darvin_menu.item_factory.abstract arguments: - "@router" - "%darvin_menu.item_factory.slug_map_item.uri_route%"
parameters: darvin_menu.item_factory.abstract.class: Darvin\MenuBundle\Item\AbstractItemFactory darvin_menu.item_factory.menu_item.class: Darvin\MenuBundle\Item\MenuItemFactory darvin_menu.item_factory.slug_map_item.class: Darvin\MenuBundle\Item\SlugMapItemFactory darvin_menu.item_factory.slug_map_item.uri_route: darvin_content_content_show services: darvin_menu.item_factory.abstract: class: "%darvin_menu.item_factory.abstract.class%" abstract: true public: false arguments: - "@doctrine.orm.entity_manager" - "@knp_menu.factory" darvin_menu.item_factory.menu_item: class: "%darvin_menu.item_factory.menu_item.class%" parent: darvin_menu.item_factory.abstract arguments: - "@darvin_menu.item_factory.slug_map_item" darvin_menu.item_factory.slug_map_item: class: "%darvin_menu.item_factory.slug_map_item.class%" parent: darvin_menu.item_factory.abstract arguments: - "@router" - "%darvin_menu.item_factory.slug_map_item.uri_route%"
Make item factory services private.
Make item factory services private.
YAML
mit
DarvinStudio/DarvinMenuBundle,DarvinStudio/DarvinMenuBundle
3fa1b8f6f7accb8be761b1e743ae8605a40bffd4
.travis.yml
.travis.yml
sudo: false notifications: email: false language: python python: - "2.7" before_install: - wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh - bash miniconda.sh -b -p $HOME/miniconda - export PATH="$HOME/miniconda/bin:$PATH" - conda update --yes conda install: - conda install --yes python=$TRAVIS_PYTHON_VERSION pip numpy scipy - pip install coverage - python setup.py install script: coverage run -m unittest discover pyGeno/tests/ after_success: bash <(curl -s https://codecov.io/bash)
sudo: false notifications: email: false language: python python: - "2.7" before_install: - wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh - bash miniconda.sh -b -p $HOME/miniconda - export PATH="$HOME/miniconda/bin:$PATH" - conda update --yes conda install: - conda install --yes python=$TRAVIS_PYTHON_VERSION pip numpy scipy - pip install coverage - pip install https://github.com/tariqdaouda/rabaDB/archive/stable.zip - python setup.py install script: coverage run -m unittest discover pyGeno/tests/ after_success: bash <(curl -s https://codecov.io/bash)
Install rabaDB from git for now
Install rabaDB from git for now
YAML
apache-2.0
tariqdaouda/pyGeno
e1851bb67559b0ef8427a531fa2dce3aa816da2d
.travis.yml
.travis.yml
sudo: required dist: trusty language: python python: - '2.6' - '2.7' - '3.2' - '3.3' - '3.4' - '3.5' - '3.5-dev' - 'nightly' - 'pypy' - 'pypy3' matrix: allow_failures: - python: '2.6' - python: '3.2' - python: '3.5-dev' - python: 'nightly' - python: 'pypy' - python: 'pypy3' addons: apt: packages: - texlive-latex-extra - texlive-pictures - texlive-science - texlive-full install: - pip install 3to2 future - pip install -r dev_requirements.txt script: ./testall.sh
sudo: required dist: trusty language: python python: - '2.7' - '3.3' - '3.4' - '3.5' - '3.5-dev' - 'nightly' matrix: allow_failures: - python: '3.5-dev' - python: 'nightly' addons: apt: packages: - texlive-latex-extra - texlive-pictures - texlive-science - texlive-fonts-recommended install: - pip install 3to2 future - pip install -r dev_requirements.txt script: ./testall.sh
Remove broken python builds and don't use texlive-full
Report: Remove broken python builds and don't use texlive-full
YAML
mit
JelteF/PyLaTeX,JelteF/PyLaTeX
cd72dbc66e6a443ec6f9f5ed5727b579f5f15c7b
.travis.yml
.travis.yml
language: csharp mono: none dotnet: 2.0.0 dist: trusty branches: only: - master - develop script: - dotnet restore notifications: email: on_success: never on_failure: always
language: csharp mono: none dotnet: 2.0.0 dist: trusty branches: only: - master - develop script: - dotnet restore - dotnet build notifications: email: on_success: never on_failure: always
Add build step to Travis CI
Add build step to Travis CI
YAML
agpl-3.0
mondeun/PdfAutofill
6beecce045a688e0cad9322038b351e9087a139a
.travis.yml
.travis.yml
language: haskell before_install: - npm install coffee-script -g - cabal install alex >= 3.0.5 script: - cabal configure && cabal build deploy: provider: heroku api_key: secure: hBbPLNburzk/YY3hbpgdmbMdfk/osgh76fYBui1Yx6CYBTfMRUii22y8rtrCeu2BD6bEVEoSzFEelxg/LsVUjHIBnowXkl26lu3qbt6WpXi6KIyNJx/Y0U1gyoghW5hHqf2OL0u4zdHc7/jueVNmPcIDqq7XHUq84xi6TvAHwJY= app: lambdacircus on: repo: mithrandi/lambdacircus skip_cleanup: true buildpack: https://github.com/begriffs/heroku-buildpack-ghc.git strategy: anvil
language: haskell before_install: - npm install coffee-script -g - cabal install 'alex >= 3.0.5' script: - cabal configure && cabal build deploy: provider: heroku api_key: secure: hBbPLNburzk/YY3hbpgdmbMdfk/osgh76fYBui1Yx6CYBTfMRUii22y8rtrCeu2BD6bEVEoSzFEelxg/LsVUjHIBnowXkl26lu3qbt6WpXi6KIyNJx/Y0U1gyoghW5hHqf2OL0u4zdHc7/jueVNmPcIDqq7XHUq84xi6TvAHwJY= app: lambdacircus on: repo: mithrandi/lambdacircus skip_cleanup: true buildpack: https://github.com/begriffs/heroku-buildpack-ghc.git strategy: anvil
Use quotes in command line.
Use quotes in command line.
YAML
mit
mithrandi/lambdacircus
ad768e29e31ee4758014a8b4051f329d920eecd5
.travis.yml
.travis.yml
sudo: false language: python python: - "3.5" addons: apt: packages: - git install: - pip install -r requirements-py35-linux64.txt - python setup.py develop - git clone --depth=1 https://github.com/gem/oq-hazardlib.git # We must set the PYTHONPATH to the root oq-engine (insted of oq-engine/openquake) because otherwise # the full 'openquake' namespace is overwritten and then hazardlib and baselib are not found script: # FIXME --with-doctest does not work # - PYTHONPATH=. nosetests -vsx -a'!slow' --with-xunit --nologcapture - PYTHONPATH=.:$(pwd)/oq-hazardlib nosetests -v -a'!slow'
sudo: false language: python python: - "3.5" addons: apt: packages: - git install: - pip install -r requirements-py35-linux64.txt - python setup.py develop - git clone --depth=1 https://github.com/gem/oq-hazardlib.git # We must set the PYTHONPATH to the root oq-engine (insted of oq-engine/openquake) because otherwise # the full 'openquake' namespace is overwritten and then hazardlib and baselib are not found script: # FIXME --with-doctest does not work # - PYTHONPATH=. nosetests -vsx -a'!slow' --with-xunit --nologcapture - PYTHONPATH=.:$(pwd)/oq-hazardlib nosetests -v -a'!slow' - cat /tmp/*
Add a debug print in Travis
Add a debug print in Travis
YAML
agpl-3.0
gem/oq-engine,gem/oq-engine,gem/oq-engine,gem/oq-engine,gem/oq-engine
e266b06c10ba3f1772c18f96649ba6f65ffaa602
.travis.yml
.travis.yml
language: ruby rvm: - 1.8.7 - 1.9.2 - 1.9.3 - ree env: - DB=mysql - DB=postgres before_script: - "mysql -e 'create database foreigner-matcher_test;'" - "psql -c 'create database foreigner-matcher_test;' -U postgres" - bundle exec rake db:test:reset script: bundle exec rspec spec
language: ruby rvm: - 1.8.7 - 1.9.2 - 1.9.3 - ree env: - DB=mysql - DB=postgres before_script: - "mysql -e 'create database `foreigner-matcher_test`;'" - "psql -c 'create database \"foreigner-matcher_test\";' -U postgres" - bundle exec rake db:test:reset script: bundle exec rspec spec
Update database creation commands to be friendly with hyphens
Update database creation commands to be friendly with hyphens
YAML
mit
yellow5/foreigner-matcher,yellow5/foreigner-matcher
0346636440832965e0b7b4a1f4a088eae205f053
.travis.yml
.travis.yml
language: cpp addons: apt: packages: - python3 - python3-pip matrix: include: # We need use to Ubuntu Trusty to get pip3. - os: linux dist: trusty compiler: clang env: - BUILD_TYPE=Debug - os: linux dist: trusty compiler: clang env: - BUILD_TYPE=Release - os: linux dist: trusty compiler: gcc env: - BUILD_TYPE=Debug - os: linux dist: trusty compiler: gcc env: - BUILD_TYPE=Release - os: osx compiler: clang env: - BUILD_TYPE=Debug - os: osx compiler: clang env: - BUILD_TYPE=Release - os: osx compiler: gcc env: - BUILD_TYPE=Debug - os: osx compiler: gcc env: - BUILD_TYPE=Release install: - pip3 install canon --user - export PATH=$HOME/.local/bin:$PATH - conan user - conan --version script: - mkdir build - cd build - conan install .. - cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE .. - make -j 4 - ctest -V
language: cpp addons: apt: packages: - python3 - python3-pip matrix: include: # We need use to Ubuntu Trusty to get pip3. - os: linux dist: trusty compiler: clang env: - BUILD_TYPE=Debug - os: linux dist: trusty compiler: clang env: - BUILD_TYPE=Release - os: linux dist: trusty compiler: gcc env: - BUILD_TYPE=Debug - os: linux dist: trusty compiler: gcc env: - BUILD_TYPE=Release - os: osx compiler: clang env: - BUILD_TYPE=Debug - os: osx compiler: clang env: - BUILD_TYPE=Release - os: osx compiler: gcc env: - BUILD_TYPE=Debug - os: osx compiler: gcc env: - BUILD_TYPE=Release install: - pip3 install canon --user --upgrade - export PATH=$HOME/.local/bin:$PATH - conan user - conan --version script: - mkdir build - cd build - conan install .. - cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE .. - make -j 4 - ctest -V
Install latest Conan on Travis
Install latest Conan on Travis
YAML
isc
thejohnfreeman/autocheck,thejohnfreeman/autocheck
7c1a8cc682ce6fb10552ef74771832711ba55e33
.travis.yml
.travis.yml
language: node_js node_js: - "7" dist: trusty sudo: false addons: chrome: stable before_install: - npm install -g npm@5.3.0 script: - npm run test
language: node_js node_js: - "7" dist: trusty sudo: false addons: chrome: stable before_install: - npm install -g npm@5.3.0 script: - npm run test notifications: email: false
Remove Travis CI email notifications
Remove Travis CI email notifications
YAML
mit
parisk/xterm-terminal,parisk/xterm-terminal
81e1993d64b54adf7c2438bf1e018e8fad13dd1c
helm_deploy/cla-frontend/templates/ingress.yaml
helm_deploy/cla-frontend/templates/ingress.yaml
{{- if .Values.ingress.enabled -}} {{- $fullName := include "cla-frontend.fullname" . -}} {{- $svcPort := .Values.service.port -}} apiVersion: networking.k8s.io/v1beta1 kind: Ingress metadata: name: {{ $fullName }} labels: {{- include "cla-frontend.labels" . | nindent 4 }} annotations: nginx.ingress.kubernetes.io/whitelist-source-range: "{{ include "cla-frontend.whitelist" . }}" nginx.ingress.kubernetes.io/server-snippets: | location /socket.io { proxy_pass http://nodejs'; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; proxy_set_header Host $host; # proxy_set_header X-Forwarded-Host $http_host; # proxy_set_header X-Forwarded-Proto $scheme; # proxy_set_header X-Forwarded-For $remote_addr; # proxy_cache_bypass $http_upgrade; } spec: tls: - hosts: - "{{ .Values.host }}" {{- if .Values.secretName }} secretName: {{ .Values.secretName }} {{- end }} rules: - host: "{{ .Values.host }}" http: paths: - path: "/" backend: serviceName: {{ $fullName }}-app servicePort: {{ .Values.service.port }} - path: "/socket.io/" backend: serviceName: {{ $fullName }}-socket-server servicePort: {{ .Values.socketServer.service.port }} {{- end }}
{{- if .Values.ingress.enabled -}} {{- $fullName := include "cla-frontend.fullname" . -}} {{- $svcPort := .Values.service.port -}} apiVersion: networking.k8s.io/v1beta1 kind: Ingress metadata: name: {{ $fullName }} labels: {{- include "cla-frontend.labels" . | nindent 4 }} annotations: nginx.ingress.kubernetes.io/whitelist-source-range: "{{ include "cla-frontend.whitelist" . }}" nginx.ingress.kubernetes.io/server-snippets: | location /socket.io { proxy_pass http://nodejs'; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; proxy_set_header Host $host; } spec: tls: - hosts: - "{{ .Values.host }}" {{- if .Values.secretName }} secretName: {{ .Values.secretName }} {{- end }} rules: - host: "{{ .Values.host }}" http: paths: - path: "/" backend: serviceName: {{ $fullName }}-app servicePort: {{ .Values.service.port }} - path: "/socket.io/" backend: serviceName: {{ $fullName }}-socket-server servicePort: {{ .Values.socketServer.service.port }} {{- end }}
Remove unused bits of nginx annotation
Remove unused bits of nginx annotation
YAML
mit
ministryofjustice/cla_frontend,ministryofjustice/cla_frontend,ministryofjustice/cla_frontend,ministryofjustice/cla_frontend
dd612a85292332f69822ad6b543826786c3e676f
hieradata/class/staging/postgresql_primary.yaml
hieradata/class/staging/postgresql_primary.yaml
lv: postgresql: pv: - '/dev/sdb1' - '/dev/sdd1' - '/dev/sde1' - '/dev/sdf1' - '/dev/sdg1' vg: 'backups' data: pv: '/dev/sdc1' vg: 'postgresql' govuk_postgresql::server::max_connections: 200
lv: postgresql: pv: - '/dev/sdb1' - '/dev/sdd1' - '/dev/sde1' - '/dev/sdf1' - '/dev/sdg1' - '/dev/sdh1' vg: 'backups' data: pv: '/dev/sdc1' vg: 'postgresql' govuk_postgresql::server::max_connections: 200
Add an extra disk to staging
Add an extra disk to staging We're seeing alerts about there not being enough space in staging so we're going to add another disk.
YAML
mit
alphagov/govuk-puppet,alphagov/govuk-puppet,alphagov/govuk-puppet,alphagov/govuk-puppet,alphagov/govuk-puppet,alphagov/govuk-puppet
8f8304fad853dc3724200ebe7ea86a0498d19530
.travis.yml
.travis.yml
language: python # pick the appropriate requirements file for 2.7 or 3.x matrix: include: - python: "2.7" env: REQUIREMENTS=requirements2.txt - python: "3.5" env: REQUIREMENTS=requirements.txt - python: "3.6" env: REQUIREMENTS=requirements.txt branches: only: - master - development # install system dependencies before_install: - sudo apt-get update - sudo apt-get install -y build-essential muscle mafft cd-hit # command to install dependencies install: - pip install -r $REQUIREMENTS # command to run tests script: - pytest # or py.test for Python versions 3.5 and below
language: python # pick the appropriate requirements file for 2.7 or 3.x matrix: include: - python: "2.7" env: REQUIREMENTS=requirements2.txt - python: "3.5" env: REQUIREMENTS=requirements.txt - python: "3.6" env: REQUIREMENTS=requirements.txt - python: "3.7" env: REQUIREMENTS=requirements.txt - python: "3.8" env: REQUIREMENTS=requirements.txt branches: only: - master - development # install system dependencies before_install: - sudo apt-get update - sudo apt-get install -y build-essential muscle mafft cd-hit # command to install dependencies install: - pip install -r $REQUIREMENTS # command to run tests script: - pytest # or py.test for Python versions 3.5 and below
Add Python versions 3.7 and 3.8 to TravisCI
Add Python versions 3.7 and 3.8 to TravisCI
YAML
mit
briney/abstar
38a09f5425503c2891468c38b22e4a23e649e22a
.travis.yml
.travis.yml
# Config file for automatic testing at travis-ci.org language: python python: - "3.5" - "3.4" - "3.3" - "2.7" - "pypy" # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors install: pip install -r requirements.txt # command to run tests, e.g. python setup.py test script: py.test
# Config file for automatic testing at travis-ci.org sudo: true language: python python: - "3.5" - "3.4" - "3.3" - "2.7" - "pypy" # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors install: - sudo add-apt-repository ppa:adamansky/ejdb -y - sudo apt-get update -qq - sudo apt-get install ejdb -qqy - pip install -r requirements.txt # command to run tests, e.g. python setup.py test script: py.test
Install EJDB binary for testing
Install EJDB binary for testing
YAML
bsd-2-clause
uranusjr/ctypes-ejdb
c58c3f07cf7bbe950e4bbcb16bc577abaad5af81
.travis.yml
.travis.yml
# Config file for automatic testing at travis-ci.org language: python sudo: false python: - "2.6" - "2.7" - "3.3" - "3.4" - "3.5" - "3.6" install: - "python setup.py sdist" - "pip install dist/skyfield-*.tar.gz[tests]" - "pip install https://github.com/brandon-rhodes/assay/archive/master.zip" - "pip install unittest2" - "mkdir tmp" - "cd tmp && curl -O ftp://ssd.jpl.nasa.gov/pub/eph/planets/bsp/de405.bsp" - "cd tmp && curl -O ftp://ssd.jpl.nasa.gov/pub/eph/planets/bsp/de421.bsp" - "cd tmp && curl -O ftp://naif.jpl.nasa.gov/pub/naif/generic_kernels/spk/satellites/jup310.bsp" script: - "cd tmp && assay --batch skyfield.tests"
# Config file for automatic testing at travis-ci.org language: python sudo: false python: - "2.6" - "2.7" - "3.3" - "3.4" - "3.5" - "3.6" install: - "python setup.py sdist" - "pip install $(echo dist/skyfield-*.tar.gz)'[tests]'" - "pip install https://github.com/brandon-rhodes/assay/archive/master.zip" - "pip install unittest2" - "mkdir tmp" - "cd tmp && curl -O ftp://ssd.jpl.nasa.gov/pub/eph/planets/bsp/de405.bsp" - "cd tmp && curl -O ftp://ssd.jpl.nasa.gov/pub/eph/planets/bsp/de421.bsp" - "cd tmp && curl -O ftp://naif.jpl.nasa.gov/pub/naif/generic_kernels/spk/satellites/jup310.bsp" script: - "cd tmp && assay --batch skyfield.tests"
Fix wildcard in Travis CI script
Fix wildcard in Travis CI script
YAML
mit
skyfielders/python-skyfield,skyfielders/python-skyfield
3ff0a519cce4d8bfb42b4724baa9c1a5f11644d8
src/main/resources/config/application.yml
src/main/resources/config/application.yml
faf-api: version: #faf-api.version# map: folder-zip-files: ${MAP_UPLOAD_PATH:/content/faf/vault/maps} folder-preview-path-small: ${MAP_PREVIEW_PATH_SMALL:/content/faf/vault/map_previews/small} folder-preview-path-large: ${MAP_PREVIEW_PATH_LARGE:/content/faf/vault/map_previews/large} spring: application: name: FAF Java API Prototype mvc: favicon: enabled: false datasource: type: com.zaxxer.hikari.HikariDataSource hikari: connection-test-query: SELECT 1 FROM DUAL minimum-idle: 2 maximum-pool-size: 8 jpa: hibernate: naming: physical-strategy: org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl properties: hibernate: current_session_context_class: org.springframework.orm.hibernate5.SpringSessionContext dialect: org.hibernate.dialect.MySQL5Dialect profiles: active: ${API_PROFILE:dev} server: port: ${API_PORT:8080} security: enable-csrf: true management: context-path: /management port: 8081 security: enabled: false
faf-api: version: #faf-api.version# map: folder-zip-files: ${MAP_UPLOAD_PATH:/content/faf/vault/maps} folder-preview-path-small: ${MAP_PREVIEW_PATH_SMALL:/content/faf/vault/map_previews/small} folder-preview-path-large: ${MAP_PREVIEW_PATH_LARGE:/content/faf/vault/map_previews/large} spring: application: name: FAF Java API Prototype mvc: favicon: enabled: false datasource: type: com.zaxxer.hikari.HikariDataSource hikari: connection-test-query: SELECT 1 FROM DUAL minimum-idle: 2 maximum-pool-size: 8 jpa: hibernate: naming: physical-strategy: org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl properties: hibernate: current_session_context_class: org.springframework.orm.hibernate5.SpringSessionContext dialect: org.hibernate.dialect.MySQL5Dialect profiles: active: ${API_PROFILE:dev} server: port: ${API_PORT:8010} security: enable-csrf: true management: context-path: /management port: 8081 security: enabled: false
Use same port as faf-stack
Use same port as faf-stack
YAML
mit
FAForever/faf-java-api,FAForever/faf-java-api,FAForever/faf-java-api,micheljung/faf-java-api,micheljung/faf-java-api
286e4616fb249a58ece0cb175833998e1a1a8a84
.travis.yml
.travis.yml
language: python python: - 3.6 install: - pip install codecov script: - ./setup.py test after_success: - codecov
language: python python: - 3.6 install: - pip install codecov script: - ./setup.py test after_success: - codecov before_install: - chmod +x setup.py
Fix permisiion denied problem in build
Fix permisiion denied problem in build
YAML
mit
truelatysh/hangman
fda2d79aa027d9b3b22314e69925294d9a23e7f0
.travis.yml
.travis.yml
language: node_js services: - couchdb node_js: - "14" sudo: false script: npm run $COMMAND before_script: - "npm install add-cors-to-couchdb" - "./node_modules/.bin/add-cors-to-couchdb" env: matrix: - COMMAND=test - CLIENT=selenium:phantomjs COMMAND=test - COMMAND=coverage branches: only: - master
language: node_js node_js: - "14" sudo: false script: npm run $COMMAND env: matrix: - COMMAND=test - CLIENT=selenium:phantomjs COMMAND=test - COMMAND=coverage branches: only: - master
Remove couchdb service from CI
Remove couchdb service from CI
YAML
apache-2.0
nolanlawson/pouchdb-all-dbs,nolanlawson/pouchdb-all-dbs,nolanlawson/pouchdb-all-dbs
390181005612e2f8ec04b884948850d55d48c196
.travis.yml
.travis.yml
sudo: false language: rust rust: - stable - beta - nightly - 1.19.0 script: - cargo build - cargo test
sudo: false language: rust rust: - stable - beta - nightly - 1.31.0 script: - cargo build - cargo test matrix: include: - rust: 1.19.0 script: - cargo build
Raise minimum tested version to rustc 1.31
Raise minimum tested version to rustc 1.31
YAML
apache-2.0
dtolnay/erased-serde
abe0d9e4a55926a46a28fb79688def7362ee54c8
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" - "0.12" - "4" env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 script: "npm test && sudo $(which npm) run test-root && npm run test:install" before_script: - "./test/hosts.sh" before_install: - sudo apt-get update -qq - sudo apt-get install -qq graphicsmagick notifications: email: false irc: channels: - "chat.freenode.net#pump.io" on_success: change on_failure: change
language: node_js node_js: - "0.10" - "0.12" - "4" - "6" env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 script: "npm test && sudo $(which npm) run test-root && npm run test:install" before_script: - "./test/hosts.sh" before_install: - sudo apt-get update -qq - sudo apt-get install -qq graphicsmagick notifications: email: false irc: channels: - "chat.freenode.net#pump.io" on_success: change on_failure: change
Test Node 6 in Travis
Test Node 6 in Travis
YAML
apache-2.0
e14n/pump.io,e14n/pump.io,pump-io/pump.io,pump-io/pump.io,pump-io/pump.io,e14n/pump.io
b6469f95d4efc68463b85008742a7aae54f3f3ec
.travis.yml
.travis.yml
language: python python: - "2.7" sudo: required services: - docker env: global: - DOCKER_VERSION=1.12.0-0~trusty - DOCKER_COMPOSE_VERSION=1.6.2 before_install: - apt-cache madison docker-engine - sudo apt-get -o Dpkg::Options::="--force-confnew" install -y docker-engine=${DOCKER_VERSION} - sudo rm /usr/local/bin/docker-compose - curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose - chmod +x docker-compose - sudo mv docker-compose /usr/local/bin cache: directories: - $HOME/.cache/pip - /var/lib/docker before_script: - docker-compose up -d db - docker-compose run documentregister setuplocaldb script: - docker-compose run documentregister test
language: python python: - "2.7" sudo: required services: - docker env: global: - DOCKER_VERSION=1.12.0-0~trusty - DOCKER_COMPOSE_VERSION=1.6.2 before_install: - apt-cache madison docker-engine - sudo apt-get -o Dpkg::Options::="--force-confnew" install -y docker-engine=${DOCKER_VERSION} - sudo rm -f /usr/local/bin/docker-compose - curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose - chmod +x docker-compose - sudo mv docker-compose /usr/local/bin cache: directories: - $HOME/.cache/pip - /var/lib/docker before_script: - docker-compose up -d db - docker-compose run documentregister setuplocaldb script: - docker-compose run documentregister test
Remove docker-compose only if it exists
Remove docker-compose only if it exists force the removal of docker-compose so it does not error if the file does not exist
YAML
mit
nkhumphreys/django-documentregister,nkhumphreys/django-documentregister,nkhumphreys/django-documentregister
af419278b8fb1cbde4cb0b2cb93cd29e9be47ecd
install_files/ansible-base/roles/ansible-securedrop/tasks/display_onions.yml
install_files/ansible-base/roles/ansible-securedrop/tasks/display_onions.yml
--- - name: fetch securedrop source ths fetch: src=/var/lib/tor/services/source/hostname dest=./app-source-ths flat=yes - name: fetch securedrop document aths fetch: src=/var/lib/tor/services/source/hostname dest=./app-document-aths flat=yes - name: fetch securedrop ssh aths fetch: src=/var/lib/tor/services/ssh/hostname dest=./app-ssh-aths flat=yes
--- - name: fetch securedrop source ths fetch: src=/var/lib/tor/services/source/hostname dest=./app-source-ths flat=yes - name: fetch securedrop document aths fetch: src=/var/lib/tor/services/document/hostname dest=./app-document-aths flat=yes - name: fetch securedrop ssh aths fetch: src=/var/lib/tor/services/ssh/hostname dest=./app-ssh-aths flat=yes
Copy correct hostname for document ATHS
Copy correct hostname for document ATHS
YAML
agpl-3.0
jrosco/securedrop,ehartsuyker/securedrop,jaseg/securedrop,micahflee/securedrop,harlo/securedrop,conorsch/securedrop,ageis/securedrop,pwplus/securedrop,harlo/securedrop,chadmiller/securedrop,kelcecil/securedrop,garrettr/securedrop,chadmiller/securedrop,kelcecil/securedrop,GabeIsman/securedrop,jrosco/securedrop,GabeIsman/securedrop,ehartsuyker/securedrop,micahflee/securedrop,pwplus/securedrop,ageis/securedrop,heartsucker/securedrop,jeann2013/securedrop,ageis/securedrop,chadmiller/securedrop,garrettr/securedrop,conorsch/securedrop,kelcecil/securedrop,heartsucker/securedrop,jaseg/securedrop,heartsucker/securedrop,pwplus/securedrop,chadmiller/securedrop,heartsucker/securedrop,conorsch/securedrop,jeann2013/securedrop,pwplus/securedrop,chadmiller/securedrop,GabeIsman/securedrop,harlo/securedrop,jeann2013/securedrop,micahflee/securedrop,kelcecil/securedrop,conorsch/securedrop,ageis/securedrop,ehartsuyker/securedrop,garrettr/securedrop,harlo/securedrop,jeann2013/securedrop,pwplus/securedrop,ehartsuyker/securedrop,garrettr/securedrop,harlo/securedrop,GabeIsman/securedrop,jeann2013/securedrop,jaseg/securedrop,ehartsuyker/securedrop,GabeIsman/securedrop,kelcecil/securedrop,jeann2013/securedrop,jaseg/securedrop,jrosco/securedrop,pwplus/securedrop,conorsch/securedrop,jrosco/securedrop,jaseg/securedrop,harlo/securedrop,heartsucker/securedrop,jrosco/securedrop,chadmiller/securedrop,jaseg/securedrop,GabeIsman/securedrop,kelcecil/securedrop,ehartsuyker/securedrop,micahflee/securedrop,jrosco/securedrop
0f2e72668d1a07c71988c8e20f4f90f356de70c8
.travis.yml
.travis.yml
sudo: false language: java jdk: - openjdk6 - openjdk7 - oraclejdk7 os: - linux - osx script: - ./autogen.sh && ./configure && make -j2 - cd java && mvn test && cd .. - cd javanano && mvn test && cd .. - cd python && python setup.py build && python setup.py google_test - LD_LIBRARY_PATH=../src/.libs cd python && python setup.py build --cpp_implementation && python setup.py google_test --cpp_implementation - make distcheck -j2 notifications: email: false
sudo: false language: java jdk: - openjdk6 - openjdk7 - oraclejdk7 os: - linux - osx script: - ./autogen.sh && ./configure && make -j2 - cd java && mvn test && cd .. - cd javanano && mvn test && cd .. - cd python && python setup.py build && python setup.py google_test && cd .. - LD_LIBRARY_PATH=../src/.libs cd python && python setup.py build --cpp_implementation && python setup.py google_test --cpp_implementation && cd .. - make distcheck -j2 notifications: email: false
Fix for current directory in Travis tests.
Fix for current directory in Travis tests.
YAML
bsd-3-clause
google/protobuf,google/protobuf,google/protobuf,Livefyre/protobuf,google/protobuf,google/protobuf,google/protobuf,google/protobuf,Livefyre/protobuf,google/protobuf,Livefyre/protobuf,Livefyre/protobuf,google/protobuf,google/protobuf,Livefyre/protobuf,google/protobuf
1213e2b1b059f2f72dc4a0a63f3af60dabcf806d
.travis.yml
.travis.yml
language: java install: true before_install: - chmod +x gradlew - sudo apt-get -y install at-spi2-core jdk: - openjdk8 git: depth: false addons: sonarcloud: organization: "gurkenlabs-github" services: - xvfb cache: directories: - '$HOME/.m2/repository' - '$HOME/.sonar/cache' - '$HOME/.gradle/caches/' - '$HOME/.gradle/wrapper/' jobs: include: - stage: "Fullbuild" name: "Build, report coverage, and create Docs" script: ./gradlew fullbuild --warning-mode all - stage: "Scan" name: "Sonarqube Scan" jdk: openjdk11 script: export JAVA_HOME= "/usr/local/lib/jvm/openjdk11" if [ $TRAVIS_PULL_REQUEST = 'false' ]; then sonar-scanner; fi
language: java install: true before_install: - chmod +x gradlew - sudo apt-get -y install at-spi2-core jdk: - openjdk8 git: depth: false addons: sonarcloud: organization: "gurkenlabs-github" services: - xvfb cache: directories: - '$HOME/.m2/repository' - '$HOME/.sonar/cache' - '$HOME/.gradle/caches/' - '$HOME/.gradle/wrapper/' jobs: include: - stage: "Fullbuild" name: "Build, report coverage, and create Docs" script: ./gradlew fullbuild --warning-mode all - stage: "Scan" name: "Sonarqube Scan" jdk: openjdk15 script: if [ $TRAVIS_PULL_REQUEST = 'false' ]; then sonar-scanner; fi
Use jdk15 for sonar scan and fix syntax error.
Use jdk15 for sonar scan and fix syntax error.
YAML
mit
gurkenlabs/litiengine,gurkenlabs/litiengine
c51c6e85870a2ff331fcebb7eab6a1ee70b6efd8
.travis.yml
.travis.yml
sudo: false language: node_js matrix: include: - node_js: iojs-v1 - node_js: iojs-v2 - node_js: "0.10" - node_js: "0.12" after_script: "npm install coveralls && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage" notifications: email: - tormozz48@gmail.com - yndx.tavria@yandex.ru
sudo: false language: node_js matrix: include: - node_js: "4.1.x" - node_js: "iojs" - node_js: "0.12" - node_js: "0.10" after_script: "npm install coveralls && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage" notifications: email: - tormozz48@gmail.com - yndx.tavria@yandex.ru
Change list of nodejs versions for testing
Change list of nodejs versions for testing
YAML
mpl-2.0
bem-site/gorshochek,bem-site/builder-core
214bfdb0dfd1758ee75865a850aa4c6d7b5b5577
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.0.0
language: ruby rvm: - 2.0.0 - 2.1.5 - 2.2.1
Update the Rubies we're testing against
Update the Rubies we're testing against
YAML
mit
loco2/lolsoap
ad41a9c0cc6e3c969e84aa1ba645c85562de80c7
.travis.yml
.travis.yml
language: ruby cache: bundler rvm: - 2.3 - 2.4 - 2.5 - 2.6 script: - bundle exec jekyll build - rake 'draft[Hello\, world]' - rake undraft[hello-world.md] - grep johnotander/pixyll _site/index.html - grep post-title _site/index.html - grep pagination-item _site/index.html - grep johnotander/pixyll _site/css/pixyll.css - grep 404 _site/404.html
language: ruby cache: bundler rvm: - 2.4 - 2.5 - 2.6 script: - bundle exec jekyll build - rake 'draft[Hello\, world]' - rake undraft[hello-world.md] - grep johnotander/pixyll _site/index.html - grep post-title _site/index.html - grep pagination-item _site/index.html - grep johnotander/pixyll _site/css/pixyll.css - grep 404 _site/404.html
Remove Ruby 2.3 from Travis
Remove Ruby 2.3 from Travis
YAML
mit
kongove/kongove.github.com,kongove/kongove.github.com,galeone/galeone.github.io,kongove/kongove.github.com,galeone/galeone.github.io,galeone/galeone.github.io,tanmaybinaykiya/tanmaybinaykiya.github.io,kongove/kongove.github.com,galeone/galeone.github.io,faustovaz/faustovaz.github.io,grimsa/grimsa.github.io,kongove/kongove.github.com,galeone/galeone.github.io,muodov/blog,deepredsky/deepredsky.github.io,muodov/blog,muodov/blog,faustovaz/faustovaz.github.io,tanmaybinaykiya/tanmaybinaykiya.github.io,deepredsky/deepredsky.github.io,tanmaybinaykiya/tanmaybinaykiya.github.io,grimsa/grimsa.github.io
194dd3f040debe8e05a6301fafe0751461e7cbc2
.rmt.yml
.rmt.yml
vcs: git prerequisites: - working-copy-check - display-last-changes - composer-json-check: composer: composer - command: cmd: composer update - tests-check: command: vendor/bin/phpunit --stop-on-failure - composer-security-check - composer-stability-check - command: cmd: git remote -v pre-release-actions: composer-update: ~ changelog-update: format: simple dump-commits: true exclude-merge-commits: true vcs-commit: ~ version-generator: semantic version-persister: vcs-tag post-release-actions: vcs-publish: ask-remote-name: true
vcs: git prerequisites: - working-copy-check - display-last-changes - composer-json-check: composer: composer - command: cmd: composer update - tests-check: command: phpunit --stop-on-failure - composer-security-check - composer-stability-check - command: cmd: git remote -v pre-release-actions: composer-update: ~ changelog-update: format: simple dump-commits: true exclude-merge-commits: true vcs-commit: ~ version-generator: semantic version-persister: vcs-tag post-release-actions: vcs-publish: ask-remote-name: true
Use global phpunit version when calling RMT
Use global phpunit version when calling RMT
YAML
mit
core23/PiwikBundle,core23/PiwikBundle,core23/PiwikBundle
af266c0b83e1b769fd9d90a3fa34a982fec051b2
.travis.yml
.travis.yml
dist: trusty sudo: required env: matrix: - TEST_TARGET: test-debian - TEST_TARGET: test-alpine before_install: - sudo apt-get remove docker docker-engine - curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - - sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" - sudo apt-get update - sudo apt-get -y install docker-ce - docker version - docker info # prepare docker test requirements - make update-dependencies script: - make $TEST_TARGET
dist: trusty sudo: required env: matrix: - TEST_TARGET: test-debian - TEST_TARGET: test-alpine before_install: - sudo apt-get -y remove docker docker-engine docker-ce - sudo rm /etc/apt/sources.list.d/docker.list - curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - - sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" - sudo apt-get update - sudo apt-get -y install docker-ce - docker version - docker info # prepare docker test requirements - make update-dependencies script: - make $TEST_TARGET
Remove old docker.list to avoid getting unstable Docker version
Remove old docker.list to avoid getting unstable Docker version
YAML
mit
itsafire/nginx-proxy,kamermans/nginx-proxy,jwilder/nginx-proxy,jwilder/nginx-proxy,itsafire/nginx-proxy,kamermans/nginx-proxy
06a71b55344dbe9c38477822951419decc03bd4c
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.0 - 2.1.1 - 2.1.2 - jruby-19mode
sudo: false language: ruby cache: bundler rvm: - 1.9.3 - 2.0.0 - 2.1.0 - 2.1.1 - 2.1.2 - jruby-19mode
Configure Travis for better build performance
[TASK] Configure Travis for better build performance * set sudo: false so Travis can use their new container-based infrastructure * enable bundler caching
YAML
mit
EpicCoders/valid_email,KMK-ONLINE/valid_email,badosu/valid_email,silo-co/valid_email,Hacker0x01/valid_email,hallelujah/valid_email
c07395b2168c6d0c4c79fd3ee72875230302d1ea
.travis.yml
.travis.yml
sudo: false language: go before_script: - go get -u golang.org/x/tools/cmd/vet - go get -u github.com/golang/lint/golint go: tip script: - test -z "$(gofmt -s -l -w ./autorest/. | tee /dev/stderr)" - test -z "$(golint ./... | grep -v 'should have comment' | grep -v 'stutters' | tee /dev/stderr)" - go vet ./... - go build -v ./... - go test -v ./...
sudo: false language: go before_script: - go get -u golang.org/x/tools/cmd/vet - go get -u github.com/golang/lint/golint go: 1.5 script: - test -z "$(gofmt -s -l -w ./autorest/. | tee /dev/stderr)" - test -z "$(golint ./... | grep -v 'should have comment' | grep -v 'stutters' | tee /dev/stderr)" - go vet ./... - go build -v ./... - go test -v ./...
Update test go build to 1.5
Update test go build to 1.5
YAML
apache-2.0
garimakhulbe/go-autorest,colemickens/go-autorest,Azure/go-autorest
f4c07d8c577213e0367f93e99bfc3ad7da276d49
.travis.yml
.travis.yml
language: node_js node_js: - "5" - "4" - "0.12" - "0.10" addons: apt: sources: - ubuntu-toolchain-r-test packages: - gcc-4.8 - g++-4.8 - libsnappy-dev - realpath install: - export CC="gcc-4.8" - export CXX="g++-4.8" - mkdir deps - git clone https://github.com/openvenues/libpostal - cd libpostal - ./bootstrap.sh - ./configure --datadir=$(pwd)/data --prefix=$(realpath $(pwd)/../deps) --bindir=$(realpath $(pwd)/../deps) - make install - cd .. - export CXXFLAGS=-I$(pwd)/deps/include - export LDFLAGS=-L$(pwd)/deps/lib - npm install script: - export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$(pwd)/deps/lib - npm test
language: node_js node_js: - "6" - "5" - "4" - "0.12" - "0.10" addons: apt: sources: - ubuntu-toolchain-r-test packages: - gcc-4.8 - g++-4.8 - libsnappy-dev - realpath install: - export CC="gcc-4.8" - export CXX="g++-4.8" - mkdir deps - git clone https://github.com/openvenues/libpostal - cd libpostal - ./bootstrap.sh - ./configure --datadir=$(pwd)/data --prefix=$(realpath $(pwd)/../deps) --bindir=$(realpath $(pwd)/../deps) - make install - cd .. - export CXXFLAGS=-I$(pwd)/deps/include - export LDFLAGS=-L$(pwd)/deps/lib - npm install script: - export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$(pwd)/deps/lib - npm test
Add Node 6 to Travis build
[test] Add Node 6 to Travis build
YAML
mit
openvenues/node-postal,openvenues/node-postal,openvenues/node-postal
69ed612938f844164b5170731c64df050eebde7a
.travis.yml
.travis.yml
language: node_js node_js: - "6" - "5" - "4" - "0.12" - "0.10"
language: node_js node_js: - "6" - "5" - "4"
Remove 0.10 and 0.12 tests
Remove 0.10 and 0.12 tests
YAML
mit
silas/hapi-fields
26b07bafec285d68529f209bf37a6caffa71d356
.travis.yml
.travis.yml
language: clojure notifications: irc: "jcsi.ms#qualityclj"
language: clojure notifications: irc: channels: - "jcsi.ms#qualityclj" use_notice: true
Use a notice instead of join/message.
Use a notice instead of join/message.
YAML
epl-1.0
quality-clojure/qualityclj
bbb8da98ee147aa7e1e4f7981f75bf3462e7a4d8
.travis.yml
.travis.yml
dist: trusty language: node_js node_js: - 8 - 6 - 4 before_install: - yarn global add greenkeeper-lockfile@1 - npm install -g npm@5 - npm install -g greenkeeper-lockfile@1 install: - npm install before_script: greenkeeper-lockfile-update script: npm run build # Only the node version 6 job will upload the lockfile after_script: greenkeeper-lockfile-upload after_success: - npm run-script doc - echo 'node_modules' > .gitignore - cp node_modules/openlayers/dist/ol-debug.js dist/ol-debug.js - echo $CNAME > CNAME deploy: provider: pages skip_cleanup: true github_token: $GITHUB_TOKEN # Set in travis-ci.org dashboard on: branch: master node: '8'
dist: trusty language: node_js node_js: - 8 - 6 - 4 before_install: - yarn global add greenkeeper-lockfile@1 - npm install -g npm@5 - npm install -g greenkeeper-lockfile@1 install: - npm install before_script: greenkeeper-lockfile-update script: npm run build # Only the node version 6 job will upload the lockfile after_script: greenkeeper-lockfile-upload after_success: - npm run-script doc - echo 'node_modules' > .gitignore - echo $CNAME > CNAME deploy: provider: pages skip_cleanup: true github_token: $GITHUB_TOKEN # Set in travis-ci.org dashboard on: branch: master node: '8'
Remove unused ol-debug.js file from Travis build.
Remove unused ol-debug.js file from Travis build.
YAML
bsd-2-clause
geops/ole2,geops/ole2
f1f3f5ccb6844d0f5c99e82677e8a8a4389bed19
.travis.yml
.travis.yml
language: ruby rvm: - "1.9.2" - "1.9.3" # - jruby-19mode # JRuby in 1.9 mode - Sinatra fails. Disabled on Mar/15'13 # Disabled for the time being, see https://github.com/dmytro/nagira/issues/9 # - rbx-19mode env: - RACK_ENV=test branches: only: - master script: bundle exec rspec spec
language: ruby rvm: - "1.9.2" - "1.9.3" - "2.0.0" # - jruby-19mode # JRuby in 1.9 mode - Sinatra fails. Disabled on Mar/15'13 # Disabled for the time being, see https://github.com/dmytro/nagira/issues/9 # - rbx-19mode env: - RACK_ENV=test branches: only: - master script: bundle exec rspec spec
Add ruby 2.0.0 to Travis
Add ruby 2.0.0 to Travis
YAML
mit
dmytro/nagira,dmytro/nagira
9961d2aa5ab1d4a5a83a219a2018e95dd2bcc95b
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.3" - "3.4" - "3.5" - "3.6" - "3.6-dev" - "3.7-dev" - "nightly" install: - "pip install -r requirements.txt" script: - robot --exclude skip --pythonpath src tests
language: python python: - "2.7" - "3.4" - "3.5" - "3.6" - "3.6-dev" - "3.7-dev" - "nightly" install: - "pip install -r requirements.txt" script: - robot --exclude skip --pythonpath src tests
Drop support for Python 3.3 (EOL) in Travis
Drop support for Python 3.3 (EOL) in Travis PEP 398 Python 3.3 Release Schedule https://www.python.org/dev/peps/pep-0398/#id21
YAML
mit
bulkan/robotframework-requests,bulkan/robotframework-requests
37b4e5c0bde1f14391598a3b84c63c186c413f78
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" notifications: email: false before_install: - npm install -g grunt-cli before_script: - grunt sudo: false
language: node_js node_js: - "5.1" notifications: email: false before_install: - npm install -g grunt-cli before_script: - grunt sudo: false
Use NodeJS 5.1 as Travis engine.
Use NodeJS 5.1 as Travis engine.
YAML
mit
wilsonodk/xwing,geordanr/xwing,geordanr/xwing,elistevens/xwing,elistevens/xwing,strikegun/xwing,strikegun/xwing,geordanr/xwing,wilsonodk/xwing,strikegun/xwing,wilsonodk/xwing,elistevens/xwing
75ff8d48b5f08e3cd5dc18838dc500cd5c3a4514
.github/workflows/deploy-documentation.yml
.github/workflows/deploy-documentation.yml
name: Deploy documentation on: push: branches: - master jobs: deploy_github_pages: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - uses: actions/setup-node@v1 with: node-version: '12.x' - name: Get npm cache directory id: npm-cache run: | echo "::set-output name=dir::$(npm config get cache)" - name: Cache npm packages uses: actions/cache@v1 with: path: ${{ steps.npm-cache.outputs.dir }} key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }} restore-keys: | ${{ runner.os }}-npm- - name: NPM install run: npm ci - name: Lint TypeScript sources run: npm run lint - name: Bootstrap packages run: npm run bootstrap - name: Build packages run: npm run build - name: Deploy to Github Pages uses: JamesIves/github-pages-deploy-action@releases/v3 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} BRANCH: gh-pages-test FOLDER: packages/modelviewer.dev
name: Deploy documentation on: push: branches: - master jobs: deploy_github_pages: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - uses: actions/setup-node@v1 with: node-version: '12.x' - name: Get npm cache directory id: npm-cache run: | echo "::set-output name=dir::$(npm config get cache)" - name: Cache npm packages uses: actions/cache@v1 with: path: ${{ steps.npm-cache.outputs.dir }} key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }} restore-keys: | ${{ runner.os }}-npm- - name: NPM install run: npm ci - name: Lint TypeScript sources run: npm run lint - name: Bootstrap packages run: npm run bootstrap - name: Build packages run: npm run build - name: Prepare documentation artifacts run: ./packages/modelviewer.dev/scripts/ci-before-deploy.sh - name: Deploy to Github Pages uses: JamesIves/github-pages-deploy-action@releases/v3 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} BRANCH: gh-pages-test FOLDER: packages/modelviewer.dev
Add before-deploy step for docs
Add before-deploy step for docs
YAML
apache-2.0
google/model-viewer,google/model-viewer,google/model-viewer,google/model-viewer,PolymerLabs/model-viewer,PolymerLabs/model-viewer
0d8026ebf7c048a65f30b053f3ce22e7d5e738ee
.github/workflows/renovate-go-mod-fix.yaml
.github/workflows/renovate-go-mod-fix.yaml
# # DO NOT EDIT THIS FILE # # It is automatically copied from https://github.com/pion/.goassets repository. # If this repository should have package specific CI config, # remove the repository name from .goassets/.github/workflows/assets-sync.yml. # # If you want to update the shared CI config, send a PR to # https://github.com/pion/.goassets instead of this repository. # name: go-mod-fix on: push: branches: - renovate/* jobs: go-mod-fix: runs-on: ubuntu-latest steps: - name: checkout uses: actions/checkout@v2 with: fetch-depth: 2 - name: fix uses: at-wat/go-sum-fix-action@v0 with: git_user: Pion Bot git_email: 59523206+pionbot@users.noreply.github.com github_token: ${{ secrets.GITHUB_TOKEN }} commit_style: squash push: force
# # DO NOT EDIT THIS FILE # # It is automatically copied from https://github.com/pion/.goassets repository. # If this repository should have package specific CI config, # remove the repository name from .goassets/.github/workflows/assets-sync.yml. # # If you want to update the shared CI config, send a PR to # https://github.com/pion/.goassets instead of this repository. # name: go-mod-fix on: push: branches: - renovate/* jobs: go-mod-fix: runs-on: ubuntu-latest steps: - name: checkout uses: actions/checkout@v2 with: fetch-depth: 2 - name: fix uses: at-wat/go-sum-fix-action@v0 with: git_user: Pion Bot git_email: 59523206+pionbot@users.noreply.github.com github_token: ${{ secrets.PIONBOT_PRIVATE_KEY }} commit_style: squash push: force
Update CI configs to v0.4.6
Update CI configs to v0.4.6 Update lint scripts and CI configs.
YAML
mit
pion/rtp
3759b57b7e626ca9e446dcf3ec5d05b30f9c9e9a
.travis.yml
.travis.yml
language: python python: - "pypy" - 2.7 - 3.3 - 3.4 - 3.5 - 3.6 install: - pip install coveralls script: - coverage run --source=jsonmerge setup.py test after_success: - coveralls
dist: xenial language: python python: - "pypy" - 2.7 - 3.4 - 3.5 - 3.6 - 3.7 install: - pip install coveralls script: - coverage run --source=jsonmerge setup.py test after_success: - coveralls
Add Python 3.7, remove 3.3 test from Travis.
Add Python 3.7, remove 3.3 test from Travis.
YAML
mit
avian2/jsonmerge
27682c92eb7ebc353cb672839edcca1e14290054
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - "0.11" - "0.10" - "0.12" - iojs before_install: - npm update -g npm - npm install -g bob coveralls --loglevel error script: - bob build - cat .bob/coverage/buster-istanbul/lcov.info | coveralls
sudo: false language: node_js node_js: - "0.10" - "0.11" - "0.12" - "4.0" - "4.1" env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 before_install: - npm install -g bob coveralls --loglevel error script: - DEBUG=canihaz bob build - cat .bob/coverage/buster-istanbul/lcov.info | coveralls
Update Travis config to latest. Upgrade gcc to 4.8, stop force upgrade to latest npm, debug canihaz installation.
Update Travis config to latest. Upgrade gcc to 4.8, stop force upgrade to latest npm, debug canihaz installation.
YAML
mit
cliffano/nestor,cliffano/nestor
b20fe668d0d43a0638c7543b32aebee0ce8e2e93
.travis.yml
.travis.yml
language: ruby rvm: - 2.2.2 script: - bundle exec rspec - bundle exec rubocop install: bundle install --jobs=3 --retry=3 sudo: false
language: ruby rvm: - 2.2.2 - 2.3 - 2.4 script: - bundle exec rspec - bundle exec rubocop install: bundle install --jobs=3 --retry=3 sudo: false
Add Ruby 2.3, 2.4 for testing on Travis
Add Ruby 2.3, 2.4 for testing on Travis
YAML
mit
gyng/betabot,gyng/Hudda,gyng/Hudda,gyng/betabot,gyng/betabot
3a3735e7cd1fdab04907388139cce3d272a776b9
.travis.yml
.travis.yml
# Configuration for CI build language: java jdk: - openjdk7 - oraclejdk7 - oraclejdk8
# Configuration for CI build language: java jdk: - oraclejdk8
Revert "Also test against openjdk7 and oraclejdk7 (in addition to oraclejdk8)"
Revert "Also test against openjdk7 and oraclejdk7 (in addition to oraclejdk8)" This reverts commit c571553d6ee3ea7dcf1e9d222a75003bb2b7de14.
YAML
apache-2.0
bep/hello-travis
dcb34e224d7bab4b53e11c52eea4b4ea40c72725
.github/workflows/check_new_versions.yml
.github/workflows/check_new_versions.yml
--- name: Check new exporter releases on: schedule: - cron: "15 8,16 * * *" # Allows you to run this workflow manually from the Actions tab workflow_dispatch: jobs: check_new_releases: runs-on: ubuntu-20.04 steps: - name: Checkout repository uses: actions/checkout@v3 - name: Setup python environment uses: actions/setup-python@v2 with: python-version: "3.8" architecture: "x64" - name: Install Python dependencies run: | python -m pip install --upgrade pip pip install ruamel.yaml PyGithub packaging - name: Run script to update auto package versions run: python update_templating_versions.py env: GH_TOKEN: ${{ secrets.GH_TOKEN }}
--- name: Check new exporter releases on: schedule: - cron: "15 8,16 * * *" # Allows you to run this workflow manually from the Actions tab workflow_dispatch: jobs: check_new_releases: runs-on: ubuntu-22.04 steps: - name: Checkout repository uses: actions/checkout@v3 - name: Setup python environment uses: actions/setup-python@v4 with: python-version: "3.11" - name: Install Python dependencies run: pip install ruamel.yaml PyGithub packaging - name: Run script to update auto package versions run: python update_templating_versions.py env: GH_TOKEN: ${{ secrets.GH_TOKEN }}
Update python action to v4.
Update python action to v4.
YAML
apache-2.0
lest/prometheus-rpm,lest/prometheus-rpm
f8b52968b0ce076e89bd13e3b4758d8a4459b5b3
cu-compose/cu-elk/elasticsearch/config/elasticsearch.yml
cu-compose/cu-elk/elasticsearch/config/elasticsearch.yml
network.host: 0.0.0.0 # this value is required because we set "network.host" # be sure to modify it appropriately for a production cluster deployment discovery.zen.minimum_master_nodes: 1
network.host: 0.0.0.0 # this value is required because we set "network.host" # be sure to modify it appropriately for a production cluster deployment discovery.zen.minimum_master_nodes: 1 script.inline: true
Fix groovy script popup error un Kibana
Fix groovy script popup error un Kibana
YAML
agpl-3.0
Treeptik/cloudunit,Treeptik/cloudunit,Treeptik/cloudunit,Treeptik/cloudunit,Treeptik/cloudunit,Treeptik/cloudunit
00c35551d864e751cdb1b58809d37661464b82ee
.travis.yml
.travis.yml
language: node_js node_js: "0.10" install: - mkdir nsq - curl -s 'https://s3.amazonaws.com/bitly-downloads/nsq/nsq-0.3.2.linux-amd64.go1.4.1.tar.gz' | tar --strip-components 1 -C nsq -xvz - npm install before_script: - nsq/bin/nsqlookupd >/dev/null 2>&1 & - nsq/bin/nsqd -lookupd-tcp-address=localhost:4160 >/dev/null 2>&1 & script: - npm test
language: node_js node_js: "0.10" install: - mkdir nsq - curl -s 'https://s3.amazonaws.com/bitly-downloads/nsq/nsq-0.3.2.linux-amd64.go1.4.1.tar.gz' | tar --strip-components 1 -C nsq -xvz - npm install before_script: - nsq/bin/nsqlookupd >/dev/null 2>&1 & - nsq/bin/nsqd -lookupd-tcp-address=localhost:4160 >/dev/null 2>&1 & script: - npm run lint - npm test
Add linting as a test
Add linting as a test
YAML
mit
Bondza/nsqjs-streams
6defe4783d21c66c00b3d19253a3ec0f439bcf4b
.travis.yml
.travis.yml
before_install: - sudo apt-get -qq update compiler: - clang install: - wget https://github.com/uncrustify/uncrustify/archive/uncrustify-0.61.tar.gz -O /tmp/uncrustify.tar.gz - tar zxvf /tmp/uncrustify.tar.gz - pushd uncrustify-uncrustify-0.61 && ./configure --prefix=/usr && make && sudo make install && popd language: c script: cd src && make format && make
before_install: - sudo apt-get -qq update compiler: - clang - gcc install: - wget https://github.com/uncrustify/uncrustify/archive/uncrustify-0.61.tar.gz -O /tmp/uncrustify.tar.gz - tar zxvf /tmp/uncrustify.tar.gz - pushd uncrustify-uncrustify-0.61 && ./configure --prefix=/usr && make && sudo make install && popd language: c script: cd src && make format && make
Include gcc in compiler matrix
Include gcc in compiler matrix
YAML
bsd-3-clause
rcthomas/resist,rcthomas/resist
bbae613951170b94a22d143855c1899df882b9c2
.travis.yml
.travis.yml
# brian's standard Travis CI config for Perl 5 modules # https://github.com/briandfoy/brians_perl_modules_travis_config # This file is licensed under the Artistic License 2.0 sudo: false language: perl perl: - "5.10" - "5.12" - "5.14" - "5.16" - "5.18" - "5.20" - "5.22" - "5.24" - "5.26" env: - OLD_DEVEL_COVER=0 matrix: include: - perl: 5.8 env: OLD_DEVEL_COVER=1 before_install: - git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers - source ~/travis-perl-helpers/init --auto install: - cpanm --quiet --installdeps --notest . - if [ "$OLD_DEVEL_COVER" = "0" ]; then cpanm --quiet --notest Devel::Cover; fi - if [ "$OLD_DEVEL_COVER" = "1" ]; then cpanm --quiet --notest Devel::Cover@1.23; fi - cpanm --quiet --notest Devel::Cover::Report::Coveralls script: - cover -delete && cover -test after_success: - cover -report coveralls
# brian's standard Travis CI config for Perl 5 modules # https://github.com/briandfoy/brians_perl_modules_travis_config # This file is licensed under the Artistic License 2.0 sudo: false language: perl perl: - "5.10" - "5.12" - "5.14" - "5.16" - "5.18" - "5.20" - "5.22" - "5.24" - "5.26" - "5.28" - "5.30" env: - OLD_DEVEL_COVER=0 matrix: include: - perl: 5.8 env: OLD_DEVEL_COVER=1 before_install: - git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers - source ~/travis-perl-helpers/init --auto install: - cpanm --quiet --installdeps --notest . - if [ "$OLD_DEVEL_COVER" = "0" ]; then cpanm --quiet --notest Devel::Cover; fi - if [ "$OLD_DEVEL_COVER" = "1" ]; then cpanm --quiet --notest Devel::Cover@1.23; fi - cpanm --quiet --notest Devel::Cover::Report::Coveralls script: - cover -delete && cover -test after_success: - cover -report coveralls
Update Travis up to v5.30
Update Travis up to v5.30
YAML
artistic-2.0
briandfoy/PPI-App-ppi_version-BDFOY,briandfoy/PPI-App-ppi_version-BDFOY
ef88e69b9317b44f2462f56a3acc218a5bab42fa
.travis.yml
.travis.yml
language: c # whatever install: sudo apt-get install -qq --no-install-recommends curl devscripts git libyaml-perl man-db perl script: make all maintainer-check check && sudo make install && sudo make uninstall
language: c # whatever before_install: sudo apt-get update install: sudo apt-get install -qq --no-install-recommends curl devscripts git libyaml-perl man-db perl script: make all maintainer-check check && sudo make install && sudo make uninstall
Call apt-get update in Travis CI configuration
Call apt-get update in Travis CI configuration Apparently, some build machines are provided without up to date APT lists.
YAML
mit
petere/pex
f74bcba20cf39a01f6d281687867dfac922252eb
.travis.yml
.travis.yml
language: python python: - 3.4 install: - gem install scss-lint - pip install flake8 - npm install script: - npm test
language: python python: - 3.4 install: - gem install scss-lint - pip install flake8 - pip install -r requirements.txt - npm install script: - npm test
Add dependencies installation to Travis build
Add dependencies installation to Travis build
YAML
mit
judsonsam/tekautoday,judsonsam/tekautoday,judsonsam/tekautoday,judsonsam/tekautoday
35b4cf2d58873839eace62a29b5e5f4640f1ebe6
.travis.yml
.travis.yml
language: ruby rvm: - 1.8.7 - 1.9.3 - 2.0.0
language: ruby rvm: - 1.8.7 - 1.9.3 - 2.0.0 before_script: "pushd spec/dummy && RAILS_ENV=test bundle exec rake db:create; popd"
Set up test DB before running tests.
Travis: Set up test DB before running tests.
YAML
agpl-3.0
oneclickorgs/rticles,chrismear/rticles,oneclickorgs/rticles,oneclickorgs/rticles,chrismear/rticles
eaf6ca7e879966cf1f56ae3d87ddb09da0c6557c
.travis.yml
.travis.yml
language: php php: - 5.6 env: - MONGO_DRIVER=mongo matrix: include: - php: 5.6 env: MONGO_DRIVER=mongo COMPOSER_FLAGS='--prefer-lowest --prefer-stable' - php: 7.0 env: ADAPTER_VERSION="^1.0.0" MONGO_DRIVER=mongodb sudo: false cache: directories: - $HOME/.composer/cache services: mongodb before_install: - yes '' | pecl -q install -f $MONGO_DRIVER - if [ "x${ADAPTER_VERSION}" != "x" ]; then composer require "alcaeus/mongo-php-adapter=${ADAPTER_VERSION}" --ignore-platform-reqs; fi install: - composer update $COMPOSER_FLAGS script: - ./vendor/bin/phpunit --coverage-clover=coverage.clover after_script: - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover coverage.clover
language: php sudo: false php: - 5.6 - 7.0 - 7.1 env: global: - DRIVER_VERSION="stable" - ADAPTER_VERSION="^1.0.0" matrix: include: - php: 5.6 env: DRIVER_VERSION="1.5.8" PREFER_LOWEST="--prefer-lowest" cache: directories: - $HOME/.composer/cache services: mongodb install: - composer self-update - if [[ ${TRAVIS_PHP_VERSION:0:2} == "5." ]]; then yes '' | pecl -q install -f mongo-${DRIVER_VERSION}; fi - if [[ ${TRAVIS_PHP_VERSION:0:2} == "7." ]]; then pecl install -f mongodb-${DRIVER_VERSION}; fi - if [[ ${TRAVIS_PHP_VERSION:0:2} == "7." ]]; then composer require "alcaeus/mongo-php-adapter=${ADAPTER_VERSION}" --ignore-platform-reqs; fi - composer update ${PREFER_LOWEST} script: - ./vendor/bin/phpunit --coverage-clover=coverage.clover after_script: - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover coverage.clover
Test against PHP 7.1 as well
Test against PHP 7.1 as well
YAML
mit
alcaeus/DoctrineMongoDBBundle,malarzm/DoctrineMongoDBBundle,malarzm/DoctrineMongoDBBundle,alcaeus/DoctrineMongoDBBundle,doctrine/DoctrineMongoDBBundle
6067394aa7d472efb497a0dfa8098d4f45b80ff3
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.0 - 2.1 - 2.2 - jruby-19mode # JRuby in 1.9 mode - rbx-2 before_install: - gem update bundler gemfile: - gemfiles/3.2.gemfile - gemfiles/4.0.gemfile - gemfiles/4.1.gemfile - gemfiles/4.2.gemfile matrix: exclude: - rvm: rbx gemfile: gemfiles/4.0.gemfile include: - rvm: 2.3.1 gemfile: gemfiles/5.0.gemfile
language: ruby rvm: - 1.9.3 - 2.0 - 2.1 - 2.2 - jruby-19mode # JRuby in 1.9 mode - rbx-2 before_install: - gem update bundler gemfile: - gemfiles/3.2.gemfile - gemfiles/4.0.gemfile - gemfiles/4.1.gemfile - gemfiles/4.2.gemfile matrix: exclude: - rvm: rbx gemfile: gemfiles/4.0.gemfile include: - rvm: 2.2.2 gemfile: gemfiles/5.0.gemfile - rvm: 2.3.1 gemfile: gemfiles/5.0.gemfile
Add Ruby 2.2.2 + Rails 5 test combination
Add Ruby 2.2.2 + Rails 5 test combination
YAML
mit
nathanl/authority,nathanl/authority
36e2b8930b1c7fca9bc8077e0ac97bee940ad3eb
wercker.yml
wercker.yml
box: pjvds/golang@1.0.1
box: pjvds/golang@1.0.1 services: - wercker/redis@0.0.8 build: steps: - script: name: set environment variables code: export REDIS_ADDR=$WERCKER_REDIS_URL
Add redis service with environment variables
Wercker: Add redis service with environment variables
YAML
mit
canthefason/r2dq
9f73ce48a41c6876d98433f729f2fab51ddd406e
docker/docker-compose.yml
docker/docker-compose.yml
--- version: '2.2' services: redis: build: context: ../ dockerfile: docker/redis/Dockerfile command: redis-server ports: - 6379:6379 base: build: context: ../ dockerfile: docker/base/Dockerfile worker: build: context: ../ dockerfile: docker/worker/Dockerfile depends_on: - base - redis command: bash -c 'sleep 20 && /app/bin/worker' scale: 3 engine: build: context: ../ dockerfile: docker/engine/Dockerfile depends_on: - base - redis command: bash -c 'sleep 20 && /app/bin/engine' volumes: - data:/app/data bootstrap: build: context: ../ dockerfile: docker/bootstrap/Dockerfile command: python3.5 /app/bin/populate_db --overwrite-db volumes: - data:/app/data nginx: build: context: ../ dockerfile: docker/nginx/Dockerfile depends_on: - flask command: /usr/sbin/nginx ports: - 80:80 networks: - default flask: build: context: ../ dockerfile: docker/flask/Dockerfile command: python3.5 /app/run.py ports: - 5000:5000 networks: - default volumes: - data:/app/data volumes: data: networks: default:
--- version: '2.2' services: redis: build: context: ../ dockerfile: docker/redis/Dockerfile command: redis-server # ports: # - 6379:6379 networks: - default base: build: context: ../ dockerfile: docker/base/Dockerfile worker: build: context: ../ dockerfile: docker/worker/Dockerfile depends_on: - base - redis command: bash -c 'sleep 20 && /app/bin/worker' scale: 3 networks: - default engine: build: context: ../ dockerfile: docker/engine/Dockerfile depends_on: - base - redis command: bash -c 'sleep 20 && /app/bin/engine' volumes: - data:/app/data networks: - default bootstrap: build: context: ../ dockerfile: docker/bootstrap/Dockerfile command: python3.5 /app/bin/populate_db --overwrite-db volumes: - data:/app/data nginx: build: context: ../ dockerfile: docker/nginx/Dockerfile depends_on: - flask command: /usr/sbin/nginx ports: - 80:80 networks: - default flask: build: context: ../ dockerfile: docker/flask/Dockerfile command: python3.5 /app/run.py networks: - default volumes: - data:/app/data volumes: data: networks: default:
Fix networking in docker compose
Fix networking in docker compose
YAML
mit
pwnbus/scoring_engine,pwnbus/scoring_engine,pwnbus/scoring_engine,pwnbus/scoring_engine
2e62e364726000c72d31ebbd5311bc01b280029b
wercker.yml
wercker.yml
box: wercker/nodejs build: steps: - npm-install deploy: steps: - add-to-known_hosts: hostname: server.octohost.io - add-ssh-key: keyname: KEY - script: name: Push to octohost code: | git push $GIT_REMOTE master after-steps: - sherzberg/slack-notify: subdomain: ouisirfudge token: $SLACK_TOKEN channel: "#general"
box: wercker/nodejs build: steps: - npm-install after-steps: - wantedly/pretty-slack-notify: webhook_url: $SLACK_WEBHOOK_URL deploy: steps: - add-to-known_hosts: hostname: server.octohost.io - add-ssh-key: keyname: KEY - script: name: Push to octohost code: | git push $GIT_REMOTE master after-steps: - wantedly/pretty-slack-notify: webhook_url: $SLACK_WEBHOOK_URL
Switch to alternate Slack Notify.
Switch to alternate Slack Notify.
YAML
apache-2.0
octohost/www