commit
stringlengths
40
40
old_file
stringlengths
4
237
new_file
stringlengths
4
237
old_contents
stringlengths
1
4.24k
new_contents
stringlengths
1
4.87k
subject
stringlengths
15
778
message
stringlengths
15
8.75k
lang
stringclasses
266 values
license
stringclasses
13 values
repos
stringlengths
5
127k
81a53ac8648076977326df62b34f9a3f4d4925ca
build.yaml
build.yaml
repositories: remote: - http://repo1.maven.org/maven2 artifacts: javax_javaee: javax:javaee-api:jar:7.0 javax_annotation: com.google.code.findbugs:jsr305:jar:2.0.1 gwt_user: com.google.gwt:gwt-user:jar:2.5.1 gwt_dev: com.google.gwt:gwt-dev:jar:2.5.1 javax_validation: javax.validation:validation-api:jar:1.0.0.GA javax_validation_sources: javax.validation:validation-api:jar:sources:1.0.0.GA gwt_eventsource: org.realityforge.gwt.eventsource:gwt-eventsource:jar:9411865 jersey_server: org.glassfish.jersey.core:jersey-server:jar:2.0 jersey_sse: org.glassfish.jersey.media:jersey-media-sse:jar:2.0
repositories: remote: - http://repo1.maven.org/maven2 artifacts: javax_javaee: javax:javaee-api:jar:7.0 javax_annotation: com.google.code.findbugs:jsr305:jar:2.0.1 gwt_user: com.google.gwt:gwt-user:jar:2.5.1 gwt_dev: com.google.gwt:gwt-dev:jar:2.5.1 javax_validation: javax.validation:validation-api:jar:1.0.0.GA javax_validation_sources: javax.validation:validation-api:jar:sources:1.0.0.GA gwt_eventsource: org.realityforge.gwt.eventsource:gwt-eventsource:jar:0.1 jersey_server: org.glassfish.jersey.core:jersey-server:jar:2.0 jersey_sse: org.glassfish.jersey.media:jersey-media-sse:jar:2.0
Move to released version of gwt-eventsource
Move to released version of gwt-eventsource
YAML
apache-2.0
realityforge/gwt-eventsource-example,realityforge/gwt-eventsource-example,realityforge/gwt-eventsource-example
9f92f1f3e03c362d1e194e648cc35ff8f847a5ee
shard.yml
shard.yml
name: atcoder version: 0.1.0 authors: - Koki Takahashi <hakatasiloving@gmail.com> description: | Implementation of ac-library in Crystal language crystal: 0.33.0 repository: https://github.com/hakatashi/ac-library.cr.git homepage: https://github.com/hakatashi/ac-library.cr documentation: https://github.com/hakatashi/ac-library.cr#readme license: Apache-2.0
name: atcoder version: 0.1.0 authors: - Koki Takahashi <hakatasiloving@gmail.com> description: | Implementation of ac-library in Crystal language crystal: 0.33.0 repository: https://github.com/google/ac-library.cr.git homepage: https://github.com/google/ac-library.cr documentation: https://github.com/google/ac-library.cr#readme license: Apache-2.0
Rename github username with google
Rename github username with google
YAML
apache-2.0
google/ac-library.cr
dd6273f45b7cd49f5bd9be85f1ab467efd12f81f
scripts/jenkins/cloud/ansible/roles/setup_amphora_image/defaults/main.yml
scripts/jenkins/cloud/ansible/roles/setup_amphora_image/defaults/main.yml
# # (c) Copyright 2018 SUSE LLC # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. # --- ardana_scratch_path: "~/scratch/ansible/next/ardana/ansible" octavia_amphora_image_rpm: "find /srv/www/*/x86_64/repos/*OpenStack*/ -name '*octavia-amphora-image*' | tail -n1"
# # (c) Copyright 2018 SUSE LLC # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. # --- ardana_scratch_path: "~/scratch/ansible/next/ardana/ansible" octavia_amphora_image_rpm: "find /srv/www/*/x86_64/repos/*OpenStack*/ -name '*octavia-amphora-image*' | sort --version-sort | tail -n1"
Fix amphora image rpm selection process (SOC-11407)
Fix amphora image rpm selection process (SOC-11407) The linux find command returns the list of files found in a directory in the order they are found in the directory listing which is usually some form of inode order, and not necessarily lexically sorted. This patch fixes the issue by including a 'sort --version-sort' in the shell command pipeline before the 'tail -n1' so that the list of RPM packages is version sorted.
YAML
apache-2.0
SUSE-Cloud/automation,gosipyan/automation,gosipyan/automation,SUSE-Cloud/automation,SUSE-Cloud/automation,gosipyan/automation,gosipyan/automation,SUSE-Cloud/automation
f9037af2d3b7a15472e79ce63fc2fb48eeb90582
circle.yml
circle.yml
dependencies: post: - cp .env.example .env - php artisan key:generate
dependencies: post: - cp .env.example .env - php artisan key:generate - gulp
Add gulp as dependency (post)
CI: Add gulp as dependency (post)
YAML
mit
chrismccluskey/chris.mccluskey.us,chrismccluskey/chris.mccluskey.us,chrismccluskey/chris.mccluskey.us
42d1797f1cd4e7df9ae460832ca63623a772bafc
circle.yml
circle.yml
machine: environment: GO15VENDOREXPERIMENT: 1 GOROOT: "/home/ubuntu/go" PATH: "/home/ubuntu/go/bin:$PATH" dependencies: cache_directories: - "/home/ubuntu/go" pre: - mkdir -p /home/ubuntu/go test: override: - go version - go test ./... general: branches: ignore: - gh-pages
machine: environment: GO15VENDOREXPERIMENT: 1 test: override: - go version - go test ./... general: branches: ignore: - gh-pages
Clean up old CircleCI environment work arounds
Clean up old CircleCI environment work arounds
YAML
isc
inceptionllc/go-lights
3926593d7bcad405fb91358fb1bdca46f06948a8
circle.yml
circle.yml
machine: ruby: version: 2.2.3 dependencies: pre: - gem install bundler -v 1.10.6
machine: ruby: version: 2.2.3 dependencies: pre: - gem install bundler -v 1.10.6
Test commit to try to trigger Circle hooks
Test commit to try to trigger Circle hooks
YAML
apache-2.0
academia-edu/dejunk,academia-edu/dejunk
f1969a9ae19d1135808722b1221f96faf83d3283
circle.yml
circle.yml
dependencies: pre: - echo y | android update sdk --no-ui --all --filter "tools,platform-tools,android-23" - echo y | android update sdk --no-ui --all --filter "build-tools-23.0.2" test: override: # run lint (tests will come next ...) - ./gradlew :library:check # copy results - cp -r library/build $CIRCLE_ARTIFACTS
dependencies: pre: - echo y | android update sdk --no-ui --all --filter "tools,platform-tools,android-23" - echo y | android update sdk --no-ui --all --filter "build-tools-23.0.2" test: override: # run lint (tests will come next ...) - ./gradlew :library:check # copy results - cp -r library/build/reports library/build/outputs $CIRCLE_ARTIFACTS
Include just lint and test output
Include just lint and test output
YAML
mit
eggheadgames/android-realm-asset-helper
b36ca5e1ed21e6dfd943020d9c8d58dbc339d4b2
circle.yml
circle.yml
machine: timezone: America/Los_Angeles python: version: 3.5.1 dependencies: override: - pip install -q numpy - pip install -r requirements-travis.txt - python setup.py develop test: override: - find . -name "*.pyc" -exec rm '{}' \; - find . -name "test_*.py" -exec chmod -x '{}' \; - nosetests --config=nose.cfg --cover-html --cover-html-dir=$CIRCLE_ARTIFACTS - coveralls
machine: timezone: America/Los_Angeles python: version: 3.5.1 dependencies: override: - pip install -q numpy - pip install -r requirements-travis.txt - python setup.py develop test: override: - find . -name "*.pyc" -exec rm '{}' \; - find . -name "test_*.py" -exec chmod -x '{}' \; - nosetests --config=nose.cfg --cover-html --cover-html-dir=$CIRCLE_ARTIFACTS monty tests - coveralls
Test only monty and tests dir.
Test only monty and tests dir.
YAML
mit
davidwaroquiers/monty,materialsvirtuallab/monty,materialsvirtuallab/monty,davidwaroquiers/monty,gmatteo/monty,gmatteo/monty
b3cccd8aa98bac4491ba98725e88c442ca2831b9
circle.yml
circle.yml
machine: xcode: version: 8.3 dependencies: pre: - mdfind "kMDItemCFBundleIdentifier == 'com.apple.dt.Xcode'" | awk '{print "echo "$1" && defaults read "$1"/Contents/Info.plist CFBundleShortVersionString\0"}' | xargs -0 bash -c - xcodebuild -version -sdk - xcrun simctl list - sudo gem install scan --no-rdoc --no-ri --no-document --quiet test: pre: - open -b com.apple.iphonesimulator override: # Run unit tests, generate junit reports and produce coverage data for iOS - make test_macOS_report - make test_iOS_report - make test_tvOS_report # Run unit tests compiled for the release configuration with latest deployment target (catches deprecation warnings) - make test_macOS - make test_iOS - make test_tvOS # Run unit tests on iOS 9 - make test_iOS_9 deployment: coverage: branch: /.*/ commands: - bash <(curl -s https://codecov.io/bash) -J XCDYouTubeKit -X coveragepy -X gcov -X xcodeplist -X xcodepartials - rsync -a *.coverage.txt "${CIRCLE_ARTIFACTS}/coverage/" - sudo pip install cpp-coveralls && coveralls --include XCDYouTubeKit
machine: xcode: version: 8.3 dependencies: pre: - mdfind "kMDItemCFBundleIdentifier == 'com.apple.dt.Xcode'" | awk '{print "echo "$1" && defaults read "$1"/Contents/Info.plist CFBundleShortVersionString\0"}' | xargs -0 bash -c - xcodebuild -version -sdk - xcrun simctl list - sudo gem install scan --no-rdoc --no-ri --no-document --quiet test: pre: - open -b com.apple.iphonesimulator override: # Run unit tests, generate junit reports and produce coverage data for iOS - make test_macOS_report - make test_iOS_report - make test_tvOS_report # Run unit tests compiled for the release configuration with latest deployment target (catches deprecation warnings) - make test_macOS - make test_iOS - make test_tvOS # Run unit tests on iOS 9 - make test_iOS_9 deployment: coverage: branch: /.*/ commands: - bash <(curl -s https://codecov.io/bash) -J XCDYouTubeKit -X coveragepy -X gcov -X xcodeplist -X xcodepartials -v - rsync -a *.coverage.txt "${CIRCLE_ARTIFACTS}/coverage/" - sudo pip install cpp-coveralls && coveralls --include XCDYouTubeKit
Enable verbose output for codecov script
Enable verbose output for codecov script Trying to diagnose why "Processing Xcode plists" does not find anything on CircleCI.
YAML
mit
mingsai/XCDYouTubeVideoPlayerViewController,twobitlabs/XCDYouTubeKit,creationst/XCDYouTubeKit,twobitlabs/XCDYouTubeKit,mingsai/XCDYouTubeVideoPlayerViewController,mingsai/XCDYouTubeVideoPlayerViewController,morrisirrom/XCDYouTubeKit,twobitlabs/XCDYouTubeKit,0xced/XCDYouTubeKit,morrisirrom/XCDYouTubeKit,0xced/XCDYouTubeKit,morrisirrom/XCDYouTubeKit,mingsai/XCDYouTubeVideoPlayerViewController,twobitlabs/XCDYouTubeKit,0xced/XCDYouTubeKit,morrisirrom/XCDYouTubeKit,creationst/XCDYouTubeKit,morrisirrom/XCDYouTubeKit,0xced/XCDYouTubeKit,creationst/XCDYouTubeKit,creationst/XCDYouTubeKit
9fafdec4d114da28c15ebfb690ee0f3d70ff9ef4
recipes/traja/meta.yaml
recipes/traja/meta.yaml
{% set name = "traja" %} {% set version = "0.0.8" %} package: name: "{{ name|lower }}" version: "{{ version }}" source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz sha256: 873c671ccb48a79b1e6e48c70ab9b43819f96241bb339aabacc1ed2e6afd3896 build: number: 0 script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed -vv " skip: true # [win] requirements: host: - pip - python >=3 run: - python >=3 - pandas - matplotlib - numpy - scipy - seaborn - shapely - pillow - fastdtw - ipython test: imports: - traja about: home: https://github.com/justinshenk/traja license: MIT license_family: MIT license_file: LICENSE summary: Traja is a trajectory analysis and visualization tool doc_url: https://traja.readthedocs.io dev_url: https://github.com/justinshenk/traja extra: recipe-maintainers: - justinshenk
{% set name = "traja" %} {% set version = "0.0.8" %} package: name: "{{ name|lower }}" version: "{{ version }}" source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz sha256: 873c671ccb48a79b1e6e48c70ab9b43819f96241bb339aabacc1ed2e6afd3896 build: number: 0 script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed -vv " skip: true # [win] requirements: host: - pip - python==3.6 run: - python==3.6 - pandas - matplotlib - numpy - scipy - seaborn - shapely - pillow - fastdtw - ipython test: imports: - traja about: home: https://github.com/justinshenk/traja license: MIT license_family: MIT license_file: LICENSE summary: Traja is a trajectory analysis and visualization tool doc_url: https://traja.readthedocs.io dev_url: https://github.com/justinshenk/traja extra: recipe-maintainers: - justinshenk
Fix python version to 3.6 (for now)
Fix python version to 3.6 (for now)
YAML
bsd-3-clause
stuertz/staged-recipes,isuruf/staged-recipes,mariusvniekerk/staged-recipes,stuertz/staged-recipes,cpaulik/staged-recipes,conda-forge/staged-recipes,SylvainCorlay/staged-recipes,goanpeca/staged-recipes,igortg/staged-recipes,jakirkham/staged-recipes,johanneskoester/staged-recipes,jakirkham/staged-recipes,jjhelmus/staged-recipes,patricksnape/staged-recipes,scopatz/staged-recipes,cpaulik/staged-recipes,birdsarah/staged-recipes,goanpeca/staged-recipes,Juanlu001/staged-recipes,patricksnape/staged-recipes,ceholden/staged-recipes,petrushy/staged-recipes,hadim/staged-recipes,ocefpaf/staged-recipes,jjhelmus/staged-recipes,basnijholt/staged-recipes,chrisburr/staged-recipes,SylvainCorlay/staged-recipes,ocefpaf/staged-recipes,chrisburr/staged-recipes,jochym/staged-recipes,ReimarBauer/staged-recipes,mcs07/staged-recipes,dschreij/staged-recipes,rmcgibbo/staged-recipes,ReimarBauer/staged-recipes,igortg/staged-recipes,petrushy/staged-recipes,kwilcox/staged-recipes,rmcgibbo/staged-recipes,hadim/staged-recipes,jochym/staged-recipes,conda-forge/staged-recipes,birdsarah/staged-recipes,asmeurer/staged-recipes,scopatz/staged-recipes,ceholden/staged-recipes,mcs07/staged-recipes,synapticarbors/staged-recipes,dschreij/staged-recipes,asmeurer/staged-recipes,Juanlu001/staged-recipes,mariusvniekerk/staged-recipes,johanneskoester/staged-recipes,synapticarbors/staged-recipes,kwilcox/staged-recipes,basnijholt/staged-recipes,isuruf/staged-recipes
a09bfdb051172d9b782fb68c2b4529fb30240bfb
deployment/playbook.yml
deployment/playbook.yml
--- - hosts: app become: yes vars: network: "{{project_name}}" roles: - name: common - name: docker_network networks: - "{{network}}" - name: memcached version: "1.6" - name: forum version: "{{app_version}}" network: "{{project_name}}" - name: certbot-ovh domain: "{{inventory_hostname}}" - name: nginx version: "1.18" # - name: metrics # prometheus_version: latest # until they have a better taging policy # cadvisor_version: latest # ... tasks: # Reclaim hard drive space - name: clean outdated docker images & stopped containers shell: > docker system prune --force && docker rmi $(docker images --quiet --filter dangling=true) failed_when: no ...
--- - hosts: app become: yes vars: network: "{{project_name}}" roles: - name: common - name: docker_network networks: - "{{network}}" - name: memcached version: "1.6" - name: forum version: "{{app_version}}" network: "{{project_name}}" - name: certbot-ovh domain: "{{inventory_hostname}}" - name: nginx version: "1.18" # - name: metrics # prometheus_version: latest # until they have a better taging policy # cadvisor_version: latest # ... tasks: # Reclaim hard drive space - name: clean outdated docker images & stopped containers shell: > docker system prune --force && docker rmi $(docker images --quiet --filter dangling=true) failed_when: no changed_when: no ...
Add changed_when: no to docker cleanup step
Add changed_when: no to docker cleanup step Always diffs otherwise which doesn't give much information
YAML
apache-2.0
maur1th/naxos,maur1th/naxos,maur1th/naxos,maur1th/naxos
8e482172701fa1ae1d16991031324dc6a5c24ea2
provisioning/roles/common/vars/main.yml
provisioning/roles/common/vars/main.yml
--- system_packages: - build-essential - autoconf - re2c - git-core - python-mysqldb - nodejs
--- system_packages: - build-essential - autoconf - re2c - curl - git-core - python-mysqldb - nodejs
Add curl as default module
Add curl as default module
YAML
mit
evolution/genesis-wordpress,jalevin/wordpress,jalevin/wordpress,evolution/genesis-wordpress,evolution/wordpress,genesis/wordpress,jalevin/wordpress,evolution/genesis-wordpress,evolution/wordpress,genesis/wordpress,jalevin/wordpress,evolution/wordpress,evolution/genesis-wordpress,genesis/wordpress,genesis/wordpress,genesis/wordpress,evolution/genesis-wordpress,jalevin/wordpress,evolution/genesis-wordpress,evolution/wordpress,evolution/wordpress,genesis/wordpress
3d3371a6017f629b192b6d3be25095150317e328
.appveyor.yml
.appveyor.yml
version: 1.0.{build} pull_requests: do_not_increment_build_number: true image: Visual Studio 2015 environment: APPVEYOR_SAVE_CACHE_ON_ERROR: true cache: - c:\projects\vcpkg\installed -> bigtable\api\ci\install-windows.ps1 install: - git submodule update --init --recursive - powershell -exec bypass bigtable\api\ci\install-windows.ps1 build_script: - powershell -exec bypass bigtable\api\ci\build-windows.ps1
version: 1.0.{build} init: - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1')) pull_requests: do_not_increment_build_number: true image: Visual Studio 2015 environment: APPVEYOR_SAVE_CACHE_ON_ERROR: true cache: - c:\projects\vcpkg\installed -> bigtable\api\ci\install-windows.ps1 install: - git submodule update --init --recursive - powershell -exec bypass bigtable\api\ci\install-windows.ps1 build_script: - powershell -exec bypass bigtable\api\ci\build-windows.ps1 on_finish: - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
Enable RDP to debug build.
Enable RDP to debug build.
YAML
apache-2.0
GoogleCloudPlatform/cpp-samples,GoogleCloudPlatform/cpp-samples,GoogleCloudPlatform/cpp-samples,GoogleCloudPlatform/cpp-samples
6e90401fa4481f64a449cdc8cbe2ba40eff26790
.appveyor.yml
.appveyor.yml
clone_depth: 1 environment: matrix: - nodejs_version: 6 - nodejs_version: 7 - nodejs_version: 8 install: - choco install googlechrome - ps: Install-Product node $env:nodejs_version - npm install test_script: - node --version - npm --version - npm test build: off cache: - node_modules
clone_depth: 1 environment: matrix: - nodejs_version: 6 - nodejs_version: 7 - nodejs_version: 8 install: - choco install googlechrome - ps: Install-Product node $env:nodejs_version - node --version - npm --version - npm install test_script: - npm test build: off cache: - node_modules
Move informational commands to install phase.
Move informational commands to install phase.
YAML
mit
westy92/html-pdf-chrome,westy92/html-pdf-chrome
e2f4d2c76d0b1bef36655658594a0365e8444c40
.appveyor.yml
.appveyor.yml
branches: only: - master - develop environment: matrix: - nodejs_version: "6" - nodejs_version: "" install: - ps: Install-Product node $env:nodejs_version - npm install - npm run prepare test_script: # Output useful info for debugging. - node --version - npm --version # run tests - npm test build: off
branches: only: - master - develop environment: matrix: - nodejs_version: "8" - nodejs_version: "" install: - ps: Install-Product node $env:nodejs_version - npm install test_script: # Output useful info for debugging. - node --version - npm --version # run tests - npm test build: off
Upgrade "old" lts version to 8
Upgrade "old" lts version to 8
YAML
mit
JohnRGee/arm,JohnRGee/forest-arborist,JohnRGee/forest-arborist
79e76d8329b655d9cce03989a88b0d38e523dd6f
.appveyor.yml
.appveyor.yml
os: Visual Studio 2015 environment: HOME: "%HOMEDRIVE%%HOMEPATH%" PYTHON: C:\Python27 SCONS_CACHE_ROOT: "%HOME%\\scons_cache" SCONS_CACHE_LIMIT: 512 matrix: - VS: C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat GD_PLATFORM: windows TOOLS: yes TARGET: release_debug ARCH: amd64 cache: - "%SCONS_CACHE_ROOT%" install: - SET "PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%" - pip install --egg scons # it will fail on AppVeyor without --egg flag - if defined VS call "%VS%" %ARCH% # if defined - so we can also use mingw before_build: - echo %GD_PLATFORM% - python --version - scons --version - cl.exe - SET "SCONS_CACHE=%SCONS_CACHE_ROOT%\master" build_script: - scons platform=%GD_PLATFORM% target=%TARGET% tools=%TOOLS% verbose=yes progress=no gdnative_wrapper=yes
os: Visual Studio 2015 environment: HOME: "%HOMEDRIVE%%HOMEPATH%" PYTHON: C:\Python27 SCONS_CACHE_ROOT: "%HOME%\\scons_cache" SCONS_CACHE_LIMIT: 512 matrix: - VS: C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat GD_PLATFORM: windows TOOLS: yes TARGET: release_debug ARCH: amd64 cache: - "%SCONS_CACHE_ROOT%" install: - SET "PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%" - pip install -U wheel # needed for pip install scons to work, otherwise a flag is missing - pip install scons - if defined VS call "%VS%" %ARCH% # if defined - so we can also use mingw before_build: - echo %GD_PLATFORM% - python --version - scons --version - cl.exe - SET "SCONS_CACHE=%SCONS_CACHE_ROOT%\master" build_script: - scons platform=%GD_PLATFORM% target=%TARGET% tools=%TOOLS% verbose=yes progress=no gdnative_wrapper=yes
Fix scons installation on AppVeyor
Fix scons installation on AppVeyor Seems like AppVeyor just upgraded pip and finally removed the deprecated --egg switch.
YAML
mit
honix/godot,Faless/godot,groud/godot,godotengine/godot,josempans/godot,Paulloz/godot,okamstudio/godot,Shockblast/godot,akien-mga/godot,vnen/godot,Faless/godot,ZuBsPaCe/godot,Valentactive/godot,Valentactive/godot,BastiaanOlij/godot,NateWardawg/godot,akien-mga/godot,groud/godot,firefly2442/godot,Zylann/godot,MarianoGnu/godot,Valentactive/godot,vnen/godot,Valentactive/godot,pkowal1982/godot,guilhermefelipecgs/godot,BastiaanOlij/godot,vnen/godot,josempans/godot,pkowal1982/godot,okamstudio/godot,honix/godot,godotengine/godot,mcanders/godot,sanikoyes/godot,okamstudio/godot,Faless/godot,MarianoGnu/godot,Paulloz/godot,vnen/godot,josempans/godot,guilhermefelipecgs/godot,guilhermefelipecgs/godot,vnen/godot,Valentactive/godot,MarianoGnu/godot,ex/godot,okamstudio/godot,DmitriySalnikov/godot,groud/godot,godotengine/godot,Shockblast/godot,okamstudio/godot,RandomShaper/godot,mcanders/godot,sanikoyes/godot,vnen/godot,guilhermefelipecgs/godot,Paulloz/godot,ZuBsPaCe/godot,Paulloz/godot,firefly2442/godot,ex/godot,DmitriySalnikov/godot,Zylann/godot,ZuBsPaCe/godot,ex/godot,josempans/godot,Shockblast/godot,sanikoyes/godot,akien-mga/godot,MarianoGnu/godot,Valentactive/godot,firefly2442/godot,NateWardawg/godot,honix/godot,Shockblast/godot,okamstudio/godot,ex/godot,akien-mga/godot,okamstudio/godot,Faless/godot,Zylann/godot,honix/godot,NateWardawg/godot,sanikoyes/godot,josempans/godot,BastiaanOlij/godot,godotengine/godot,vnen/godot,josempans/godot,pkowal1982/godot,DmitriySalnikov/godot,vkbsb/godot,pkowal1982/godot,vkbsb/godot,godotengine/godot,guilhermefelipecgs/godot,Zylann/godot,sanikoyes/godot,okamstudio/godot,Zylann/godot,vkbsb/godot,NateWardawg/godot,NateWardawg/godot,mcanders/godot,pkowal1982/godot,NateWardawg/godot,mcanders/godot,guilhermefelipecgs/godot,MarianoGnu/godot,josempans/godot,sanikoyes/godot,Faless/godot,sanikoyes/godot,ZuBsPaCe/godot,ZuBsPaCe/godot,Zylann/godot,ZuBsPaCe/godot,Valentactive/godot,vkbsb/godot,Shockblast/godot,firefly2442/godot,Shockblast/godot,groud/godot,groud/godot,mcanders/godot,DmitriySalnikov/godot,akien-mga/godot,RandomShaper/godot,groud/godot,RandomShaper/godot,BastiaanOlij/godot,godotengine/godot,BastiaanOlij/godot,NateWardawg/godot,vkbsb/godot,DmitriySalnikov/godot,pkowal1982/godot,BastiaanOlij/godot,Faless/godot,vkbsb/godot,akien-mga/godot,ex/godot,okamstudio/godot,ZuBsPaCe/godot,pkowal1982/godot,okamstudio/godot,honix/godot,guilhermefelipecgs/godot,ex/godot,firefly2442/godot,vkbsb/godot,RandomShaper/godot,MarianoGnu/godot,Shockblast/godot,Paulloz/godot,honix/godot,RandomShaper/godot,Faless/godot,NateWardawg/godot,akien-mga/godot,BastiaanOlij/godot,Paulloz/godot,ex/godot,NateWardawg/godot,Zylann/godot,mcanders/godot,vkbsb/godot,DmitriySalnikov/godot,DmitriySalnikov/godot,RandomShaper/godot,MarianoGnu/godot,Faless/godot,ZuBsPaCe/godot,vnen/godot,sanikoyes/godot,RandomShaper/godot,MarianoGnu/godot,firefly2442/godot,Zylann/godot,ex/godot,godotengine/godot,guilhermefelipecgs/godot,firefly2442/godot,Paulloz/godot,firefly2442/godot,BastiaanOlij/godot,Shockblast/godot,pkowal1982/godot,godotengine/godot,Valentactive/godot,akien-mga/godot,josempans/godot
78a250a30d48bac304553d4e8f8f4683dea6653a
.appveyor.yml
.appveyor.yml
version: 0.3.0.{build} branches: except: - gh-pages image: Visual Studio 2015 configuration: - Debug - Release before_build: | cmake . -DSAL_UNITTESTS=yes -G "Visual Studio 14 2015 Win64" build_script: | set cmake --build . --config %CONFIGURATION% test_script: | ps: scripts\appveyor_test_script.ps1 -Config %CONFIGURATION% -Output unittests.xml on_finish: | ps: (New-Object "Net.WebClient").UploadFile("https://ci.appveyor.com/api/testresults/junit/$($env:APPVEYOR_JOB_ID)", (Resolve-Path .\unittests.xml))
version: 0.3.0.{build} branches: except: - gh-pages image: Visual Studio 2015 configuration: - Debug - Release before_build: | 'C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat' x64 10.0.10240.0 cmake . -DSAL_UNITTESTS=yes -G "Visual Studio 14 2015 Win64" build_script: | cmake --build . --config %CONFIGURATION% test_script: | ps: scripts\appveyor_test_script.ps1 -Config %CONFIGURATION% -Output unittests.xml on_finish: | ps: (New-Object "Net.WebClient").UploadFile("https://ci.appveyor.com/api/testresults/junit/$($env:APPVEYOR_JOB_ID)", (Resolve-Path .\unittests.xml))
Use explicitly Windows SDK 10.0.10240.0
Use explicitly Windows SDK 10.0.10240.0
YAML
mit
svens/sal,svens/sal
88f85ac878d88af1aecafbcffb3569c643a71586
.pipeline.yml
.pipeline.yml
--- resources: - name: stethoscope type: git source: uri: https://github.com/hsienchiaolee/stethoscope.git jobs: - name: unit-test public: true plan: - get: stethoscope trigger: true - task: test config: platform: darwin inputs: - name: stethoscope run: path: sh args: - -exc - | cd stethoscope bundle install mkdir spec/logs touch spec/logs/server.out touch spec/logs/server.err rake ci
--- resources: - name: stethoscope type: git source: uri: https://github.com/ericTsiliacos/stethoscope.git jobs: - name: unit-test public: true plan: - get: stethoscope trigger: true - task: test config: platform: darwin inputs: - name: stethoscope run: path: sh args: - -exc - | cd stethoscope bundle install mkdir spec/logs touch spec/logs/server.out touch spec/logs/server.err rake ci
Change concourse origin to main repo
Change concourse origin to main repo
YAML
bsd-3-clause
ericTsiliacos/stethoscope,ericTsiliacos/stethoscope,hsienchiaolee/stethoscope,hsienchiaolee/stethoscope
b9d61d62d977c849f9f8d2a0428cd26d0f6a15b7
.slackbot.yml
.slackbot.yml
releaseSchedule: dbagnell: 2/4/2019 ggetz: 3/4/2019 hpinkos: 4/1/2019 lilleyse: 5/2/2019 gary: 6/3/2019 mamato: 7/1/2019 tfili: 8/1/2019 greetings: - Happy Friday everyone! - Can you believe Friday is already here? - I hope you all had awesome week! - I skipped breakfast, so I hope Gary baked something good today... - Good morning everyone!
releaseSchedule: dbagnell: 2/1/2019 ggetz: 3/1/2019 hpinkos: 4/1/2019 lilleyse: 5/1/2019 gary: 6/3/2019 mamato: 7/1/2019 tfili: 8/2/2019 greetings: - Happy Friday everyone! - Can you believe Friday is already here? - I hope you all had awesome week! - I skipped breakfast, so I hope Gary baked something good today... - Good morning everyone!
Make release schedule dates not on a weekend
Make release schedule dates not on a weekend
YAML
apache-2.0
CesiumGS/cesium,jasonbeverage/cesium,likangning93/cesium,YonatanKra/cesium,kaktus40/cesium,josh-bernstein/cesium,AnalyticalGraphicsInc/cesium,jasonbeverage/cesium,geoscan/cesium,CesiumGS/cesium,YonatanKra/cesium,hodbauer/cesium,YonatanKra/cesium,likangning93/cesium,AnalyticalGraphicsInc/cesium,progsung/cesium,hodbauer/cesium,likangning93/cesium,CesiumGS/cesium,hodbauer/cesium,YonatanKra/cesium,likangning93/cesium,josh-bernstein/cesium,CesiumGS/cesium,likangning93/cesium,geoscan/cesium,kaktus40/cesium,progsung/cesium,CesiumGS/cesium
3664314531448f05ed553f0aa89b267ce4a0cc1c
.forestry/settings.yml
.forestry/settings.yml
--- new_page_extension: md auto_deploy: false admin_path: webhook_url: sections: - type: directory path: src/_posts label: Posts create: all match: "**/*" upload_dir: uploads public_path: "/uploads" front_matter_path: '' use_front_matter_path: false file_template: ":filename:" build: install_dependencies_command: npm install preview_docker_image: forestryio/node:12 mount_path: "/srv" working_dir: "/srv" instant_preview_command: npm run develop
--- new_page_extension: md auto_deploy: false admin_path: webhook_url: sections: - type: document path: src/index.html label: Home page match: "**/*" upload_dir: uploads public_path: "/uploads" front_matter_path: '' use_front_matter_path: false file_template: ":filename:" build: install_dependencies_command: npm install preview_docker_image: forestryio/node:12 mount_path: "/srv" working_dir: "/srv" instant_preview_command: npm run develop
Update from Forestry.io - Updated Forestry configuration
Update from Forestry.io - Updated Forestry configuration
YAML
mit
lewisnyman/lewisnyman.co.uk-source,lewisnyman/lewisnyman.co.uk-source,lewisnyman/lewisnyman.co.uk-source
d572816ff878b4afd2bd7686526d2aee32ebbb21
.forestry/settings.yml
.forestry/settings.yml
--- new_page_extension: md auto_deploy: false admin_path: '' webhook_url: sections: - type: jekyll-pages label: Pages create: all - type: jekyll-posts label: Posts create: all upload_dir: assets/cms public_path: "/assets/cms" front_matter_path: '' use_front_matter_path: false file_template: ":filename:" instant_preview: true build: preview_env: - JEKYLL_ENV=staging preview_output_directory: "/srv/jekyll/_site" preview_docker_image: jekyll/builder mount_path: "/srv/jekyll" instant_preview_command: jekyll serve --drafts --unpublished --future --port 8080 --host 0.0.0.0 -d _site preview_command: jekyll build --drafts --unpublished --future -d _site
--- new_page_extension: md auto_deploy: false admin_path: '' webhook_url: sections: - type: jekyll-pages label: Pages create: all - type: jekyll-posts label: Posts create: all upload_dir: assets public_path: "/assets" front_matter_path: '' use_front_matter_path: false file_template: ":filename:" instant_preview: true build: preview_env: - JEKYLL_ENV=staging preview_output_directory: "/srv/jekyll/_site" preview_docker_image: jekyll/builder mount_path: "/srv/jekyll" instant_preview_command: jekyll serve --drafts --unpublished --future --port 8080 --host 0.0.0.0 -d _site preview_command: jekyll build --drafts --unpublished --future -d _site
Update from Forestry.io - Updated Forestry configuration
Update from Forestry.io - Updated Forestry configuration
YAML
mit
StartupShell/web-2017,StartupShell/web-2017,StartupShell/web-2017
54518a4b7efded169855bc08b39859dd464e3ee9
.github/dependabot.yml
.github/dependabot.yml
version: 2 updates: - package-ecosystem: npm directory: "/" schedule: interval: weekly day: "monday" time: "00:00" timezone: Europe/London open-pull-requests-limit: 10 ignore: - dependency-name: govuk-colours versions: - ">= 0" - dependency-name: govuk-frontend versions: - ">= 0" - dependency-name: image-webpack-loader versions: - ">= 0" - dependency-name: "@storybook/addon-a11y" versions: - ">= 0" - dependency-name: "@storybook/addon-actions" versions: - ">= 0" - dependency-name: "@storybook/addon-knobs" versions: - ">= 0" - dependency-name: "@storybook/react" versions: - ">= 0" # ignore all GitHub linguist patch updates - dependency-name: "github-linguist" update-types: ["version-update:semver-patch"] rebase-strategy: disabled
version: 2 updates: - package-ecosystem: npm directory: "/" schedule: interval: weekly day: "monday" time: "00:00" timezone: Europe/London open-pull-requests-limit: 10 ignore: - dependency-name: govuk-colours versions: - ">= 0" - dependency-name: govuk-frontend versions: - ">= 0" - dependency-name: "@storybook/addon-a11y" versions: - ">= 0" - dependency-name: "@storybook/addon-actions" versions: - ">= 0" - dependency-name: "@storybook/addon-knobs" versions: - ">= 0" - dependency-name: "@storybook/react" versions: - ">= 0" # ignore all GitHub linguist patch updates - dependency-name: "github-linguist" update-types: ["version-update:semver-patch"] rebase-strategy: disabled
Remove image-webpack-loader from Dependabot ignore list
Remove image-webpack-loader from Dependabot ignore list
YAML
mit
uktrade/data-hub-frontend,uktrade/data-hub-fe-beta2,uktrade/data-hub-fe-beta2,uktrade/data-hub-frontend,uktrade/data-hub-frontend
731d75e0001927a25a5b32370d38d5a7684788ee
data/sites/homeoffice_rds.yml
data/sites/homeoffice_rds.yml
--- site: homeoffice_rds host: rds.homeoffice.gov.uk redirection_date: 27th March 2013 tna_timestamp: 20120603160241 title: Home Office homepage: https://www.gov.uk/government/organisations/home-office global: =410 css: home-office ---
--- site: homeoffice_rds host: rds.homeoffice.gov.uk redirection_date: 27th March 2013 tna_timestamp: 20110314171826 title: Home Office homepage: https://www.gov.uk/government/organisations/home-office global: =410 css: home-office ---
Update archive link for rds
Update archive link for rds
YAML
mit
alphagov/transition-config,alphagov/transition-config
2147ccfc1749b26d19d3a5112ae092b918adf733
cluster/manifests/kube-janitor/deployment.yaml
cluster/manifests/kube-janitor/deployment.yaml
{{ if ne .Environment "production" }} apiVersion: apps/v1 kind: Deployment metadata: name: kube-janitor namespace: kube-system labels: application: kube-janitor version: v0.2.2 spec: replicas: 1 selector: matchLabels: application: kube-janitor template: metadata: labels: application: kube-janitor version: v0.2.2 spec: serviceAccountName: system containers: - name: janitor # see https://github.com/hjacobs/kube-janitor/releases image: registry.opensource.zalan.do/teapot/kube-janitor:0.2.2 args: # run every minute - --interval=60 # do not touch system/infra namespaces - --exclude-namespaces=kube-system,visibility - --rules-file=/config/rules.yaml resources: limits: cpu: 5m memory: 150Mi requests: # this is a background app ==> low priority, low CPU requests cpu: 5m memory: 150Mi securityContext: readOnlyRootFilesystem: true runAsNonRoot: true runAsUser: 1000 volumeMounts: - name: config-volume mountPath: /config volumes: - name: config-volume configMap: name: kube-janitor {{ end }}
{{ if ne .Environment "production" }} apiVersion: apps/v1 kind: Deployment metadata: name: kube-janitor namespace: kube-system labels: application: kube-janitor version: v0.2.2 spec: replicas: 1 selector: matchLabels: application: kube-janitor template: metadata: labels: application: kube-janitor version: v0.2.2 spec: priorityClassName: system-cluster-critical serviceAccountName: system containers: - name: janitor # see https://github.com/hjacobs/kube-janitor/releases image: registry.opensource.zalan.do/teapot/kube-janitor:0.2.2 args: # run every minute - --interval=60 # do not touch system/infra namespaces - --exclude-namespaces=kube-system,visibility - --rules-file=/config/rules.yaml resources: limits: cpu: 5m memory: 150Mi requests: # this is a background app ==> low priority, low CPU requests cpu: 5m memory: 150Mi securityContext: readOnlyRootFilesystem: true runAsNonRoot: true runAsUser: 1000 volumeMounts: - name: config-volume mountPath: /config volumes: - name: config-volume configMap: name: kube-janitor {{ end }}
Add a missing priority class
Add a missing priority class Signed-off-by: Alexey Ermakov <6610c7e1c26fb4c3222ac4f760cb43a9f3c01622@zalando.de>
YAML
mit
zalando-incubator/kubernetes-on-aws,zalando-incubator/kubernetes-on-aws,zalando-incubator/kubernetes-on-aws
62910b378a151f0c43d267fea2dadf3f21afed01
META.yml
META.yml
--- abstract: 'DSV parser and serializer.' author: - 'Michal Špaček <skim@cpan.org>' build_requires: English: 0 ExtUtils::MakeMaker: 6.42 File::Object: 0.01 Test::More: 0 Test::Pod: 0 Test::Pod::Coverage: 0 configure_requires: ExtUtils::MakeMaker: 6.42 distribution_type: module generated_by: 'Module::Install version 1.01' license: bsd meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html version: 1.4 name: Text-DSV no_index: directory: - inc - t resources: license: http://opensource.org/licenses/bsd-license.php repository: type: git url: git://github.com/tupinek/Text-DSV web: https://github.com/tupinek/Text-DSV version: 0.04
--- abstract: 'DSV parser and serializer.' author: - 'Michal Špaček <skim@cpan.org>' build_requires: English: 0 ExtUtils::MakeMaker: 6.42 File::Object: 0.05 Test::More: 0 Test::Pod: 0 Test::Pod::Coverage: 0 configure_requires: ExtUtils::MakeMaker: 6.42 distribution_type: module generated_by: 'Module::Install version 1.01' license: bsd meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html version: 1.4 name: Text-DSV no_index: directory: - inc - t resources: license: http://opensource.org/licenses/bsd-license.php repository: type: git url: git://github.com/tupinek/Text-DSV web: https://github.com/tupinek/Text-DSV version: 0.04
Update to actual version of my modules.
Update to actual version of my modules.
YAML
bsd-2-clause
tupinek/Text-DSV
383f76982a96a1efb83beba513f86a8be4c75314
hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/5_6_0/2843-treat-canonicals-as-local.yaml
hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/5_6_0/2843-treat-canonicals-as-local.yaml
--- type: change issue: 2843 title: "HAPi-FHIR provides indexing on Canonical Types as references. However, the option to [treat absolute references as local](/docs/server_jpa/configuration.html#jpa-server-configuration-options) was being ignored for those indexed canonicals. This has been corrected. Now, if you have set `getTreatBaseUrlsAsLocal()` and HAPI-FHIR detects a canonical which starts with such a url, that prefix will be stripped, and indexing will occur normally."
--- type: change issue: 2843 title: "HAPI-FHIR provides indexing on Canonical Types as references. However, the option to [treat absolute references as local](/hapi-fhir/docs/server_jpa/configuration.html#jpa-server-configuration-options) was being ignored for those indexed canonicals. This has been corrected. Now, if you have set `getTreatBaseUrlsAsLocal()` and HAPI-FHIR detects a canonical which starts with such a url, that prefix will be stripped, and indexing will occur normally."
Fix broken link in yaml
Fix broken link in yaml
YAML
apache-2.0
aemay2/hapi-fhir,jamesagnew/hapi-fhir,jamesagnew/hapi-fhir,jamesagnew/hapi-fhir,aemay2/hapi-fhir,jamesagnew/hapi-fhir,jamesagnew/hapi-fhir,jamesagnew/hapi-fhir,aemay2/hapi-fhir,aemay2/hapi-fhir,aemay2/hapi-fhir,aemay2/hapi-fhir
2046ebbb3e570715ec0cb0f721153c6a0c62ec23
dep/cloudbuild.yaml
dep/cloudbuild.yaml
# In this directory, run the following command to build this builder. # $ gcloud container builds submit . --config=cloudbuild.yaml steps: # Build the alpine and debian versions. - name: 'gcr.io/cloud-builders/docker' args: ['build', '-f', 'Dockerfile.alpine', '--tag=gcr.io/$PROJECT_ID/dep:alpine', '.'] - name: 'gcr.io/cloud-builders/docker' args: ['build', '-f', 'Dockerfile.debian', '--tag=gcr.io/$PROJECT_ID/dep:debian', '.'] # The alpine version is our default. - name: 'gcr.io/cloud-builders/docker' args: ['tag', 'gcr.io/$PROJECT_ID/dep:alpine', 'gcr.io/$PROJECT_ID/dep'] # Run version to make sure that everything is working properly. - name: 'gcr.io/$PROJECT_ID/dep' args: ['version'] images: - 'gcr.io/$PROJECT_ID/dep' - 'gcr.io/$PROJECT_ID/dep:alpine' - 'gcr.io/$PROJECT_ID/dep:debian'
# In this directory, run the following command to build this builder. # $ gcloud container builds submit . --config=cloudbuild.yaml steps: # Build the alpine and debian versions. - name: 'gcr.io/cloud-builders/docker' args: ['build', '-f', 'Dockerfile.alpine', '--tag=gcr.io/$PROJECT_ID/dep:alpine', '.'] - name: 'gcr.io/cloud-builders/docker' args: ['build', '-f', 'Dockerfile.debian', '--tag=gcr.io/$PROJECT_ID/dep:debian', '.'] # The alpine version is our default. - name: 'gcr.io/cloud-builders/docker' args: ['tag', 'gcr.io/$PROJECT_ID/dep:alpine', 'gcr.io/$PROJECT_ID/dep'] # Run version to make sure that everything is working properly. - name: 'gcr.io/$PROJECT_ID/dep' args: ['version'] env: ['GOPATH=.'] images: - 'gcr.io/$PROJECT_ID/dep' - 'gcr.io/$PROJECT_ID/dep:alpine' - 'gcr.io/$PROJECT_ID/dep:debian'
Add GOPATH to dep step
Add GOPATH to dep step
YAML
apache-2.0
GoogleCloudPlatform/cloud-builders-community,GoogleCloudPlatform/cloud-builders-community,GoogleCloudPlatform/cloud-builders-community,GoogleCloudPlatform/cloud-builders-community,GoogleCloudPlatform/cloud-builders-community,GoogleCloudPlatform/cloud-builders-community,GoogleCloudPlatform/cloud-builders-community,GoogleCloudPlatform/cloud-builders-community
4d638d973f4308c142a4272a02686b866af8d675
.bazelci/presubmit.yml
.bazelci/presubmit.yml
--- platforms: ubuntu1404: build_targets: - "..." test_targets: - "..." ubuntu1604: build_targets: - "..." test_targets: - "..." macos: build_targets: - "..." test_targets: - "..." windows: build_targets: - "..." test_targets: - "..."
--- platforms: ubuntu1404: build_targets: - "..." test_targets: - "..." ubuntu1604: build_targets: - "..." test_targets: - "..." macos: build_targets: - "..." test_targets: - "..." windows: build_targets: # Escape hyphens on later args - "--" - "//..." # Cannot build the docsite on Windows, see # https://github.com/bazelbuild/skydoc/issues/58 - "-//sass:docs" test_targets: - "//..."
Exclude skydoc build on Windows CI
Exclude skydoc build on Windows CI
YAML
apache-2.0
bazelbuild/rules_sass,bazelbuild/rules_sass
ce8a8b83970db0c72d02916ec575e39953b9d9f2
.bazelci/presubmit.yml
.bazelci/presubmit.yml
--- platforms: macos: build_flags: # For historical reasons, the default platform for Apple builds is iOS. This # ensures that we build artifacts that run on macOS. - "--cpu=darwin_x86_64" - "--apple_platform_type=macos" build_targets: - "//examples/..." test_flags: # For historical reasons, the default platform for Apple builds is iOS. This # ensures that we build artifacts that run on macOS. - "--cpu=darwin_x86_64" - "--apple_platform_type=macos" test_targets: - "//examples/..." ubuntu1804: build_flags: # On Linux, we look for Swift toolchain binaries on the path. We may be able # to change this when we start auto-downloading toolchains (see # https://github.com/bazelbuild/rules_swift/issues/4). - "--action_env=PATH" build_targets: - "//examples/..." - "-//examples/apple/..." test_flags: - "--action_env=PATH" test_targets: - "//examples/..." - "-//examples/apple/..."
--- platforms: macos: build_flags: # For historical reasons, the default platform for Apple builds is iOS. This # ensures that we build artifacts that run on macOS. - "--cpu=darwin_x86_64" - "--apple_platform_type=macos" build_targets: - "//examples/..." test_flags: # For historical reasons, the default platform for Apple builds is iOS. This # ensures that we build artifacts that run on macOS. - "--cpu=darwin_x86_64" - "--apple_platform_type=macos" test_targets: - "//examples/..." ubuntu1804: build_flags: # On Linux, we look for Swift toolchain binaries on the path. We may be able # to change this when we start auto-downloading toolchains (see # https://github.com/bazelbuild/rules_swift/issues/4). - "--action_env=PATH" build_targets: - "--" - "//examples/..." - "-//examples/apple/..." test_flags: - "--action_env=PATH" test_targets: - "--" - "//examples/..." - "-//examples/apple/..."
Add "--" to the targets to fix the label parsing.
Add "--" to the targets to fix the label parsing. Unfortunately the bazelci.py script doesn't insert the argument separator yet, so we have to add it manually in the test_targets for now. Closes #125. RELNOTES: None. PiperOrigin-RevId: 228336865
YAML
apache-2.0
bazelbuild/rules_swift,bazelbuild/rules_swift
87808fdb8960c0083493afffb2fa2d10887c6e13
.dependabot/config.yml
.dependabot/config.yml
# c.f. https://dependabot.com/docs/config-file/ version: 1 update_configs: - package_manager: "ruby:bundler" directory: "/" update_schedule: "daily" default_assignees: - sue445 allowed_updates: - match: # Disable. Only top-level dependencies (and security patches for subdependencies) update_type: "all" automerged_updates: - match: dependency_type: "development" update_type: "all" - match: dependency_type: "production" update_type: "semver:patch" - match: dependency_name: "rubocop" update_type: "all" # Enable. Only lockfile updates (ignore updates that require Gemfile changes) version_requirement_updates: "off"
# c.f. https://dependabot.com/docs/config-file/ version: 1 update_configs: - package_manager: "ruby:bundler" directory: "/" update_schedule: "daily" default_assignees: - sue445 allowed_updates: - match: # Disable. Only top-level dependencies (and security patches for subdependencies) update_type: "all" automerged_updates: - match: dependency_type: "development" update_type: "all" - match: dependency_type: "production" update_type: "semver:patch" - match: dependency_name: "rubocop*" update_type: "all" # Enable. Only lockfile updates (ignore updates that require Gemfile changes) version_requirement_updates: "off"
Allow auto merge for rubocop-xxx
Allow auto merge for rubocop-xxx [ci skip]
YAML
mit
sue445/cure-mastodon-bots,sue445/cure-mastodon-bots
4258740f0887677028fcad368cc21d52ebd4d66a
recipes/authlib/meta.yaml
recipes/authlib/meta.yaml
{% set name = "authlib" %} {% set version = "0.10" %} {% set sha256 = "b61c6c6fd230c4ba8602fd85ee9a40e6dc859387699a1cd1f7247c4b109dcc17" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://files.pythonhosted.org/packages/c8/03/6c676d80761f5194ef343679240bb3cfabb4122f9ee1c068ef83fec4ef7f/Authlib-{{ version }}.tar.gz sha256: {{ sha256 }} build: noarch: python number: 0 script: "{{ PYTHON }} -m pip install . --no-deps -vv" requirements: host: - python - pip run: - python - requests - cryptography test: imports: - authlib about: home: https://github.com/lepture/authlib license: BSD-3-Clause license_family: BSD license_file: LICENSE summary: 'The ultimate Python library in building OAuth and OpenID Connect servers. JWS,JWE,JWK,JWA,JWT included. https://authlib.org/' doc_url: https://docs.authlib.org/en/latest/ dev_url: https://github.com/lepture/authlib extra: recipe-maintainers: - markfennema
{% set name = "authlib" %} {% set version = "0.10" %} {% set sha256 = "b61c6c6fd230c4ba8602fd85ee9a40e6dc859387699a1cd1f7247c4b109dcc17" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/{{ name|capitalize }}-{{ version }}.tar.gz sha256: {{ sha256 }} build: noarch: python number: 0 script: "{{ PYTHON }} -m pip install . --no-deps -vv" requirements: host: - python - pip run: - python - requests - cryptography test: imports: - authlib about: home: https://github.com/lepture/authlib license: BSD-3-Clause license_family: BSD license_file: LICENSE summary: 'The ultimate Python library in building OAuth and OpenID Connect servers. JWS,JWE,JWK,JWA,JWT included. https://authlib.org/' doc_url: https://docs.authlib.org/en/latest/ dev_url: https://github.com/lepture/authlib extra: recipe-maintainers: - markfennema
Update URL on PR recommendation.
Update URL on PR recommendation.
YAML
bsd-3-clause
ocefpaf/staged-recipes,rmcgibbo/staged-recipes,mariusvniekerk/staged-recipes,conda-forge/staged-recipes,ReimarBauer/staged-recipes,kwilcox/staged-recipes,SylvainCorlay/staged-recipes,stuertz/staged-recipes,patricksnape/staged-recipes,jakirkham/staged-recipes,isuruf/staged-recipes,rmcgibbo/staged-recipes,scopatz/staged-recipes,birdsarah/staged-recipes,SylvainCorlay/staged-recipes,birdsarah/staged-recipes,igortg/staged-recipes,asmeurer/staged-recipes,jjhelmus/staged-recipes,Juanlu001/staged-recipes,mcs07/staged-recipes,hadim/staged-recipes,dschreij/staged-recipes,patricksnape/staged-recipes,cpaulik/staged-recipes,jjhelmus/staged-recipes,ocefpaf/staged-recipes,jochym/staged-recipes,johanneskoester/staged-recipes,jakirkham/staged-recipes,johanneskoester/staged-recipes,synapticarbors/staged-recipes,ceholden/staged-recipes,goanpeca/staged-recipes,ReimarBauer/staged-recipes,synapticarbors/staged-recipes,goanpeca/staged-recipes,jochym/staged-recipes,petrushy/staged-recipes,mcs07/staged-recipes,isuruf/staged-recipes,basnijholt/staged-recipes,basnijholt/staged-recipes,Juanlu001/staged-recipes,cpaulik/staged-recipes,ceholden/staged-recipes,mariusvniekerk/staged-recipes,asmeurer/staged-recipes,hadim/staged-recipes,conda-forge/staged-recipes,chrisburr/staged-recipes,scopatz/staged-recipes,dschreij/staged-recipes,petrushy/staged-recipes,stuertz/staged-recipes,igortg/staged-recipes,kwilcox/staged-recipes,chrisburr/staged-recipes
b135f2fe705d97707c0c119f90c7eb8963983265
metadata/com.github.andreyasadchy.xtra.yml
metadata/com.github.andreyasadchy.xtra.yml
AntiFeatures: - NonFreeNet - Tracking Categories: - Internet - Multimedia License: AGPL-3.0-only AuthorName: crackededed SourceCode: https://github.com/crackededed/Xtra/ IssueTracker: https://github.com/crackededed/Xtra/issues/ AutoName: Xtra RepoType: git Repo: https://github.com/crackededed/Xtra/ Builds: - versionName: 2.0.1 versionCode: 106 commit: 61e55c1006d164a6acdbd177dd01b30f5bfde01e subdir: app sudo: - apt-get update || apt-get update - apt-get install -y openjdk-11-jdk-headless - update-alternatives --auto java gradle: - yes AutoUpdateMode: Version UpdateCheckMode: Tags CurrentVersion: 2.0.1 CurrentVersionCode: 106
AntiFeatures: - NonFreeNet - Tracking Categories: - Internet - Multimedia License: AGPL-3.0-only AuthorName: crackededed SourceCode: https://github.com/crackededed/Xtra/ IssueTracker: https://github.com/crackededed/Xtra/issues/ AutoName: Xtra RepoType: git Repo: https://github.com/crackededed/Xtra/ Builds: - versionName: 2.0.1 versionCode: 106 commit: 61e55c1006d164a6acdbd177dd01b30f5bfde01e subdir: app sudo: - apt-get update || apt-get update - apt-get install -y openjdk-11-jdk-headless - update-alternatives --auto java gradle: - yes - versionName: 2.0.2 versionCode: 107 commit: f475d004156123f6d9ade6b4f94d0e4db78f0bb0 subdir: app sudo: - apt-get update || apt-get update - apt-get install -y openjdk-11-jdk-headless - update-alternatives --auto java gradle: - yes AutoUpdateMode: Version UpdateCheckMode: Tags CurrentVersion: 2.0.2 CurrentVersionCode: 107
Update Xtra to 2.0.2 (107)
Update Xtra to 2.0.2 (107)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
f1c8235d1226ee5d57f86ba7b1255c0f4846d479
config/openxpki/config.d/realm/ca-one/workflow/global/field/error_code.yaml
config/openxpki/config.d/realm/ca-one/workflow/global/field/error_code.yaml
label: I18N_OPENXPKI_UI_FIELD_ERROR_CODE name: error_code format: styled template: "[% IF value %]failed:[% value %][% END %]"
label: I18N_OPENXPKI_UI_FIELD_ERROR_CODE name: error_code format: styled template: "[% IF value %]failed:[% value %][% END %]" api_type: Str
Fix sample config to return valid OpenAPI spec
Fix sample config to return valid OpenAPI spec
YAML
apache-2.0
oliwel/openxpki,oliwel/openxpki,openxpki/openxpki,oliwel/openxpki,oliwel/openxpki,openxpki/openxpki,oliwel/openxpki,oliwel/openxpki,openxpki/openxpki,openxpki/openxpki
5ca2bbf44435501bc38941a29c62c189beb964c7
scripts/ci/run_driver_unit.build.yml
scripts/ci/run_driver_unit.build.yml
--- platform: linux image_resource: type: docker-image source: repository: cloudfoundry/inigo-ci tag: latest inputs: - name: nfs-volume-release-concourse-tasks - name: nfs-volume-release run: path: nfs-volume-release-concourse-tasks/scripts/ci/run_driver_unit
--- platform: linux image_resource: type: docker-image source: repository: cfpersi/nfs-unit-tests tag: latest inputs: - name: nfs-volume-release-concourse-tasks - name: nfs-volume-release run: path: nfs-volume-release-concourse-tasks/scripts/ci/run_driver_unit
Stop using diego's docker image when running driver unit tests
Stop using diego's docker image when running driver unit tests [#166247382](https://www.pivotaltracker.com/story/show/166247382) Signed-off-by: Paul Warren <381ebbe39e97b92332c450533d9eabb9a873db86@emc.com> Co-authored-by: Paul Warren <381ebbe39e97b92332c450533d9eabb9a873db86@emc.com>
YAML
apache-2.0
cloudfoundry-incubator/nfs-volume-release,cloudfoundry-incubator/nfs-volume-release,cloudfoundry-incubator/nfs-volume-release
cd1885fabd15a70b72a156a1210afec7a3da3d00
setup/roles/neovim/tasks/main.yml
setup/roles/neovim/tasks/main.yml
--- # See https://github.com/neovim/neovim/wiki/Installing-Neovim - name: Add Neovim repository become: yes apt_repository: repo: 'ppa:neovim-ppa/unstable' state: present update_cache: yes - name: Install prerequisites for the Python modules become: yes apt: name={{item}} state=installed with_items: - python-dev - python-pip - python3-dev - python3-pip - name: Install neovim become: yes apt: name: neovim - name: Set alternative to vi become: yes alternatives: link: /usr/bin/vi name: vi path: /usr/bin/nvim priority: 60 - name: Set alternative to vim become: yes alternatives: link: /usr/bin/vim name: vim path: /usr/bin/nvim priority: 60 - name: Set alternative to editor become: yes alternatives: link: /usr/bin/editor name: editor path: /usr/bin/nvim priority: 60
--- # See https://github.com/neovim/neovim/wiki/Installing-Neovim - name: Add Neovim repository become: yes apt_repository: repo: 'ppa:neovim-ppa/unstable' state: present update_cache: yes codename: '{{ distrib_codename }}' - name: Install prerequisites for the Python modules become: yes apt: name={{item}} state=installed with_items: - python-dev - python-pip - python3-dev - python3-pip - name: Install neovim become: yes apt: name: neovim - name: Set alternative to vi become: yes alternatives: link: /usr/bin/vi name: vi path: /usr/bin/nvim priority: 60 - name: Set alternative to vim become: yes alternatives: link: /usr/bin/vim name: vim path: /usr/bin/nvim priority: 60 - name: Set alternative to editor become: yes alternatives: link: /usr/bin/editor name: editor path: /usr/bin/nvim priority: 60
Fix for installing neovim on Linux Mint
Fix for installing neovim on Linux Mint
YAML
mit
fernandoacorreia/homefiles,fernandoacorreia/homefiles
63e6c97def01f64492363f1ceb726c72719e7918
ecs-task-definition.yml
ecs-task-definition.yml
rra-postgis: image: mdillon/postgis ports: - 5432:5432 environment: POSTGRES_PASSWORD: rra POSTGRES_USER: rra POSTGRES_DB: rra volumes: - /var/lib/postgresql/data:/var/lib/postgresql/data rra-api: image: wbtransport/rra-api ports: - 80:4000 command: node index.js links: - rra-postgis
rra-postgis: image: mdillon/postgis ports: - 5432:5432 environment: POSTGRES_PASSWORD: rra POSTGRES_USER: rra POSTGRES_DB: rra volumes: - /var/lib/postgresql/data:/var/lib/postgresql/data rra-api: image: wbtransport/rra-api ports: - 80:4000 command: node index.js volumes: - /var/run/docker.sock:/var/run/docker.sock links: - rra-postgis
Add volume to ECS config
Add volume to ECS config
YAML
mit
WorldBank-Transport/Rural-Road-Accessibility,WorldBank-Transport/Rural-Road-Accessibility,WorldBank-Transport/ram-backend,WorldBank-Transport/ram-backend,WorldBank-Transport/ram-backend,WorldBank-Transport/Rural-Road-Accessibility
4c3f776985ae0f7f76c696e96c1021fc111d04d0
packages/po/polysemy-uncontrolled.yaml
packages/po/polysemy-uncontrolled.yaml
homepage: '' changelog-type: markdown hash: 9b359e7dfa3fafcc0e3c06052ee44d49eabab0f43c88c98631c5f0394791f129 test-bench-deps: {} maintainer: dan.firth@homotopic.tech synopsis: Uncontrolled toy effect for polysemy. changelog: | # Changelog for polysemy-uncontrolled ## v0.1.0.0 * An insane way to represent evil side effects in polysemy. basic-deps: polysemy-plugin: -any base: '>=4.7 && <5' polysemy-methodology: '>=0.1.0.0 && <0.2' polysemy: '>=1.3.0.0 && <1.5' all-versions: - 0.1.0.0 author: Daniel Firth latest: 0.1.0.0 description-type: markdown description: | # polysemy-uncontrolled An insane way to represent pure side effects in polysemy. This is for evil, people who are pure of heart should not look in here. license-name: MIT
homepage: '' changelog-type: markdown hash: a149fe0974d880639098aaaa42a4e0b5faa67e22c7205d2608dfb8aff2b64df1 test-bench-deps: {} maintainer: dan.firth@homotopic.tech synopsis: Uncontrolled toy effect for polysemy. changelog: | # Changelog for polysemy-uncontrolled ## v0.1.0.0 * An insane way to represent evil side effects in polysemy. basic-deps: polysemy-plugin: -any base: '>=4.7 && <5' polysemy-methodology: '>=0.1.0.0 && <0.3' polysemy: '>=1.3.0.0 && <1.7' all-versions: - 0.1.0.0 author: Daniel Firth latest: 0.1.0.0 description-type: markdown description: | # polysemy-uncontrolled An insane way to represent pure side effects in polysemy. This is for evil, people who are pure of heart should not look in here. license-name: MIT
Update from Hackage at 2021-07-25T09:43:55Z
Update from Hackage at 2021-07-25T09:43:55Z
YAML
mit
commercialhaskell/all-cabal-metadata
16c74ad62fd94906d9f4453493227accd134717f
roles/setup-selenium-tests/defaults/main.yaml
roles/setup-selenium-tests/defaults/main.yaml
--- geckodriver_url: "https://github.com/mozilla/geckodriver/releases/download/v0.23.0/geckodriver-v0.23.0-linux64.tar.gz"
--- geckodriver_url: "https://github.com/mozilla/geckodriver/releases/download/v0.27.0/geckodriver-v0.27.0-linux64.tar.gz"
Update geckodriver version to v0.27.0.
Update geckodriver version to v0.27.0. This patch updates geckodriver version to v0.27.0 from v0.23.0 to fix horizon-integration job. Fo more info. please refer [1]. [1] https://github.com/mozilla/geckodriver/issues/1771 Change-Id: Ie550beddf54e5bc43c34046bb18970638d10f303
YAML
apache-2.0
ChameleonCloud/horizon,openstack/horizon,openstack/horizon,ChameleonCloud/horizon,ChameleonCloud/horizon,ChameleonCloud/horizon,openstack/horizon,openstack/horizon
5f996ac0b6e8686d7fb3e90b4eef6d5d46a40ae4
roles/mysql/vars/main.yml
roles/mysql/vars/main.yml
--- _prefix: "-h{{ mysql_login_host }} -u{{ mysql_login_user }} -p{{ mysql_login_password }}"
--- _prefix: "--host={{ mysql_login_host }} --user={{ mysql_login_user }} --password={{ mysql_login_password }}"
Fix parameter's names to allow use empty values /e.g: empty default password/
Fix parameter's names to allow use empty values /e.g: empty default password/
YAML
mit
kraksoft/ansible-roles
a051f8de8ba2b585a094aa5a9a9d7160feb6817e
roles/xfce/tasks/main.yml
roles/xfce/tasks/main.yml
--- - name: Ensure that xfce config directory exists file: path: "{{ ansible_user_dir }}/.config/xfce4/xfconf/xfce-perchannel-xml/" owner: "{{ ansible_user_id }}" state: directory mode: 0700 tags: - xfce - name: Copy xfce config files copy: src: "{{ item }}" dest: "{{ ansible_user_dir }}/.config/xfce4/xfconf/xfce-perchannel-xml/" with_fileglob: - dot.config/xfce4/xfconf/xfce-perchannel-xml/* tags: - xfce - name: Ensure ~/.themes exists file: path: "{{ ansible_user_dir }}/.themes" owner: "{{ ansible_user_id }}" state: directory mode: 0700 tags: - xfce - name: Install theme git: repo: https://github.com/dar5hak/Numix-Holo.git dest: "{{ ansible_user_dir }}/.themes/Numix-Holo" tags: - xfce
--- - name: Ensure that xfce config directory exists file: path: "{{ ansible_user_dir }}/.config/xfce4/xfconf/xfce-perchannel-xml/" owner: "{{ ansible_user_id }}" state: directory mode: 0700 tags: - xfce - name: Copy xfce config files copy: src: "{{ item }}" dest: "{{ ansible_user_dir }}/.config/xfce4/xfconf/xfce-perchannel-xml/" with_fileglob: - dot.config/xfce4/xfconf/xfce-perchannel-xml/* tags: - xfce - name: Ensure ~/.themes exists file: path: "{{ ansible_user_dir }}/.themes" owner: "{{ ansible_user_id }}" state: directory mode: 0700 tags: - xfce - name: Install theme git: repo: https://github.com/dar5hak/Numix-Holo.git dest: "{{ ansible_user_dir }}/.themes/Numix-Holo" tags: - xfce - name: Set light locker as screen locker command: xfconf-query -c xfce4-session -p /general/LockCommand -s "light-locker-command -l" --create -t string tags: - xfce
Set light locker as screen locker
Set light locker as screen locker
YAML
mit
henrik-farre/ansible,henrik-farre/ansible,henrik-farre/ansible
45f1d36504a09c7b1685fa714fac6e892d1143aa
test/fixtures/cert-manager-values.yaml
test/fixtures/cert-manager-values.yaml
replicaCount: 1 global: logLevel: "4" image: tag: build pullPolicy: Never resources: requests: cpu: 500m memory: 200Mi limits: cpu: 1 memory: 200Mi extraArgs: - --leader-election-lease-duration=10s - --leader-election-renew-deadline=3s - --leader-election-retry-period=2s - --feature-gates=CertificateRequestControllers=true webhook: enabled: true image: tag: build pullPolicy: Never resources: requests: cpu: 100m memory: 40Mi limits: cpu: 200m memory: 256Mi cainjector: enabled: true image: tag: build pullPolicy: Never resources: requests: cpu: 100m memory: 40Mi limits: cpu: 200m memory: 256Mi
replicaCount: 1 global: logLevel: "4" image: tag: build pullPolicy: Never resources: requests: cpu: 500m memory: 200Mi limits: cpu: 1 memory: 200Mi extraArgs: - --leader-election-lease-duration=10s - --leader-election-renew-deadline=3s - --leader-election-retry-period=2s webhook: enabled: true image: tag: build pullPolicy: Never resources: requests: cpu: 100m memory: 40Mi limits: cpu: 200m memory: 256Mi cainjector: enabled: true image: tag: build pullPolicy: Never resources: requests: cpu: 100m memory: 40Mi limits: cpu: 200m memory: 256Mi
Remove old feature gate in test fixture
Remove old feature gate in test fixture Signed-off-by: James Munnelly <474ba67bdb289c6263b36dfd8a7bed6c85b04943@munnelly.eu>
YAML
apache-2.0
jetstack-experimental/cert-manager,cert-manager/cert-manager,cert-manager/cert-manager,jetstack/cert-manager,jetstack/cert-manager,jetstack-experimental/cert-manager,jetstack-experimental/cert-manager,cert-manager/cert-manager,jetstack/cert-manager
9b291799a6f0d4243d9250ab66ed99b66413a1cd
test/rql_test/src/regression/2709.yaml
test/rql_test/src/regression/2709.yaml
desc: 2709 -- Guarantee failed with [max_els >= min_els] tests: - py: r.table_create('2709') ot: ({'created':1}) - def: tbl = r.table('2709') - py: tbl.insert([{'result':i} for i in range(1,1000)]).pluck('first_error', 'inserted') runopts: batch_conf: "{'min_els':10,'max_els':13}" ot: ({'inserted':999}) - py: tbl.map(lambda thing:'key').count() runopts: batch_conf: "{'min_els':10,'max_els':13}" ot: (999) - py: r.table_drop('2709') ot: ({'dropped':1})
desc: 2709 -- Guarantee failed with [max_els >= min_els] tests: - py: r.table_create('2709') ot: ({'created':1}) - def: tbl = r.table('2709') - py: tbl.insert([{'result':i} for i in range(1,1000)]).pluck('first_error', 'inserted') runopts: batch_conf: "{'min_els':10,'max_els':13}" ot: ({'inserted':999}) - py: tbl.map(lambda thing:'key').count() runopts: batch_conf: "{'min_els':10,'max_els':13}" ot: (999) - py: tbl.map(lambda thing:'key').count() runopts: batch_conf: "{'min_els':13,'max_els':10}" ot: (999) - py: r.table_drop('2709') ot: ({'dropped':1})
Add test for when user is a dork and sets min_els > max_els
Add test for when user is a dork and sets min_els > max_els
YAML
apache-2.0
urandu/rethinkdb,yaolinz/rethinkdb,ajose01/rethinkdb,urandu/rethinkdb,spblightadv/rethinkdb,yakovenkodenis/rethinkdb,gdi2290/rethinkdb,wojons/rethinkdb,grandquista/rethinkdb,alash3al/rethinkdb,AntouanK/rethinkdb,robertjpayne/rethinkdb,sbusso/rethinkdb,JackieXie168/rethinkdb,ajose01/rethinkdb,alash3al/rethinkdb,dparnell/rethinkdb,sontek/rethinkdb,niieani/rethinkdb,marshall007/rethinkdb,yaolinz/rethinkdb,greyhwndz/rethinkdb,Wilbeibi/rethinkdb,urandu/rethinkdb,gavioto/rethinkdb,ayumilong/rethinkdb,alash3al/rethinkdb,sebadiaz/rethinkdb,catroot/rethinkdb,AntouanK/rethinkdb,ajose01/rethinkdb,KSanthanam/rethinkdb,mquandalle/rethinkdb,yakovenkodenis/rethinkdb,Wilbeibi/rethinkdb,scripni/rethinkdb,sebadiaz/rethinkdb,matthaywardwebdesign/rethinkdb,JackieXie168/rethinkdb,wkennington/rethinkdb,lenstr/rethinkdb,RubenKelevra/rethinkdb,Qinusty/rethinkdb,rrampage/rethinkdb,urandu/rethinkdb,elkingtonmcb/rethinkdb,niieani/rethinkdb,wojons/rethinkdb,losywee/rethinkdb,sontek/rethinkdb,catroot/rethinkdb,Wilbeibi/rethinkdb,grandquista/rethinkdb,mcanthony/rethinkdb,elkingtonmcb/rethinkdb,gavioto/rethinkdb,mbroadst/rethinkdb,robertjpayne/rethinkdb,gdi2290/rethinkdb,pap/rethinkdb,rrampage/rethinkdb,jesseditson/rethinkdb,marshall007/rethinkdb,captainpete/rethinkdb,marshall007/rethinkdb,jesseditson/rethinkdb,4talesa/rethinkdb,dparnell/rethinkdb,JackieXie168/rethinkdb,dparnell/rethinkdb,spblightadv/rethinkdb,captainpete/rethinkdb,robertjpayne/rethinkdb,jesseditson/rethinkdb,gdi2290/rethinkdb,mcanthony/rethinkdb,captainpete/rethinkdb,grandquista/rethinkdb,victorbriz/rethinkdb,elkingtonmcb/rethinkdb,losywee/rethinkdb,pap/rethinkdb,JackieXie168/rethinkdb,bchavez/rethinkdb,greyhwndz/rethinkdb,jesseditson/rethinkdb,mcanthony/rethinkdb,robertjpayne/rethinkdb,wujf/rethinkdb,4talesa/rethinkdb,grandquista/rethinkdb,yaolinz/rethinkdb,dparnell/rethinkdb,niieani/rethinkdb,elkingtonmcb/rethinkdb,jmptrader/rethinkdb,alash3al/rethinkdb,jmptrader/rethinkdb,jmptrader/rethinkdb,tempbottle/rethinkdb,Qinusty/rethinkdb,yakovenkodenis/rethinkdb,mbroadst/rethinkdb,eliangidoni/rethinkdb,wujf/rethinkdb,rrampage/rethinkdb,mquandalle/rethinkdb,Wilbeibi/rethinkdb,gdi2290/rethinkdb,bpradipt/rethinkdb,wojons/rethinkdb,Wilbeibi/rethinkdb,captainpete/rethinkdb,ayumilong/rethinkdb,jesseditson/rethinkdb,dparnell/rethinkdb,mcanthony/rethinkdb,sebadiaz/rethinkdb,KSanthanam/rethinkdb,marshall007/rethinkdb,mquandalle/rethinkdb,yaolinz/rethinkdb,tempbottle/rethinkdb,mbroadst/rethinkdb,mbroadst/rethinkdb,tempbottle/rethinkdb,losywee/rethinkdb,victorbriz/rethinkdb,catroot/rethinkdb,robertjpayne/rethinkdb,lenstr/rethinkdb,pap/rethinkdb,matthaywardwebdesign/rethinkdb,bchavez/rethinkdb,niieani/rethinkdb,bchavez/rethinkdb,ayumilong/rethinkdb,sontek/rethinkdb,AntouanK/rethinkdb,jesseditson/rethinkdb,JackieXie168/rethinkdb,mcanthony/rethinkdb,bpradipt/rethinkdb,eliangidoni/rethinkdb,spblightadv/rethinkdb,sbusso/rethinkdb,sebadiaz/rethinkdb,alash3al/rethinkdb,captainpete/rethinkdb,AntouanK/rethinkdb,Qinusty/rethinkdb,rrampage/rethinkdb,jmptrader/rethinkdb,grandquista/rethinkdb,urandu/rethinkdb,wujf/rethinkdb,RubenKelevra/rethinkdb,pap/rethinkdb,mquandalle/rethinkdb,elkingtonmcb/rethinkdb,grandquista/rethinkdb,RubenKelevra/rethinkdb,jmptrader/rethinkdb,niieani/rethinkdb,ajose01/rethinkdb,jmptrader/rethinkdb,bpradipt/rethinkdb,wujf/rethinkdb,sbusso/rethinkdb,mbroadst/rethinkdb,bchavez/rethinkdb,gavioto/rethinkdb,KSanthanam/rethinkdb,bpradipt/rethinkdb,tempbottle/rethinkdb,wujf/rethinkdb,greyhwndz/rethinkdb,Qinusty/rethinkdb,bpradipt/rethinkdb,lenstr/rethinkdb,wkennington/rethinkdb,4talesa/rethinkdb,ajose01/rethinkdb,lenstr/rethinkdb,yakovenkodenis/rethinkdb,bchavez/rethinkdb,spblightadv/rethinkdb,gavioto/rethinkdb,JackieXie168/rethinkdb,marshall007/rethinkdb,wkennington/rethinkdb,yaolinz/rethinkdb,AntouanK/rethinkdb,elkingtonmcb/rethinkdb,ayumilong/rethinkdb,sontek/rethinkdb,sebadiaz/rethinkdb,mbroadst/rethinkdb,lenstr/rethinkdb,yakovenkodenis/rethinkdb,scripni/rethinkdb,yakovenkodenis/rethinkdb,sebadiaz/rethinkdb,wkennington/rethinkdb,losywee/rethinkdb,tempbottle/rethinkdb,lenstr/rethinkdb,robertjpayne/rethinkdb,niieani/rethinkdb,JackieXie168/rethinkdb,wujf/rethinkdb,greyhwndz/rethinkdb,captainpete/rethinkdb,bpradipt/rethinkdb,tempbottle/rethinkdb,pap/rethinkdb,jmptrader/rethinkdb,Wilbeibi/rethinkdb,Wilbeibi/rethinkdb,matthaywardwebdesign/rethinkdb,spblightadv/rethinkdb,RubenKelevra/rethinkdb,losywee/rethinkdb,KSanthanam/rethinkdb,yaolinz/rethinkdb,victorbriz/rethinkdb,pap/rethinkdb,niieani/rethinkdb,bpradipt/rethinkdb,gdi2290/rethinkdb,4talesa/rethinkdb,Qinusty/rethinkdb,gavioto/rethinkdb,mbroadst/rethinkdb,victorbriz/rethinkdb,greyhwndz/rethinkdb,wkennington/rethinkdb,wojons/rethinkdb,ayumilong/rethinkdb,Qinusty/rethinkdb,sontek/rethinkdb,yakovenkodenis/rethinkdb,robertjpayne/rethinkdb,rrampage/rethinkdb,mquandalle/rethinkdb,sebadiaz/rethinkdb,pap/rethinkdb,catroot/rethinkdb,bchavez/rethinkdb,sebadiaz/rethinkdb,dparnell/rethinkdb,marshall007/rethinkdb,matthaywardwebdesign/rethinkdb,RubenKelevra/rethinkdb,Qinusty/rethinkdb,mquandalle/rethinkdb,matthaywardwebdesign/rethinkdb,eliangidoni/rethinkdb,RubenKelevra/rethinkdb,RubenKelevra/rethinkdb,wojons/rethinkdb,wujf/rethinkdb,elkingtonmcb/rethinkdb,losywee/rethinkdb,rrampage/rethinkdb,mquandalle/rethinkdb,mbroadst/rethinkdb,yaolinz/rethinkdb,yakovenkodenis/rethinkdb,bpradipt/rethinkdb,sbusso/rethinkdb,ayumilong/rethinkdb,marshall007/rethinkdb,captainpete/rethinkdb,ayumilong/rethinkdb,dparnell/rethinkdb,gdi2290/rethinkdb,gavioto/rethinkdb,KSanthanam/rethinkdb,eliangidoni/rethinkdb,urandu/rethinkdb,mcanthony/rethinkdb,gavioto/rethinkdb,4talesa/rethinkdb,Qinusty/rethinkdb,RubenKelevra/rethinkdb,captainpete/rethinkdb,jmptrader/rethinkdb,mcanthony/rethinkdb,jesseditson/rethinkdb,mbroadst/rethinkdb,AntouanK/rethinkdb,dparnell/rethinkdb,AntouanK/rethinkdb,alash3al/rethinkdb,4talesa/rethinkdb,rrampage/rethinkdb,sbusso/rethinkdb,robertjpayne/rethinkdb,wojons/rethinkdb,pap/rethinkdb,sontek/rethinkdb,victorbriz/rethinkdb,mquandalle/rethinkdb,grandquista/rethinkdb,greyhwndz/rethinkdb,wojons/rethinkdb,eliangidoni/rethinkdb,tempbottle/rethinkdb,eliangidoni/rethinkdb,robertjpayne/rethinkdb,niieani/rethinkdb,ayumilong/rethinkdb,catroot/rethinkdb,greyhwndz/rethinkdb,grandquista/rethinkdb,AntouanK/rethinkdb,spblightadv/rethinkdb,matthaywardwebdesign/rethinkdb,spblightadv/rethinkdb,sbusso/rethinkdb,ajose01/rethinkdb,scripni/rethinkdb,KSanthanam/rethinkdb,victorbriz/rethinkdb,grandquista/rethinkdb,losywee/rethinkdb,bchavez/rethinkdb,eliangidoni/rethinkdb,greyhwndz/rethinkdb,ajose01/rethinkdb,bpradipt/rethinkdb,KSanthanam/rethinkdb,alash3al/rethinkdb,wkennington/rethinkdb,scripni/rethinkdb,scripni/rethinkdb,eliangidoni/rethinkdb,wkennington/rethinkdb,victorbriz/rethinkdb,sbusso/rethinkdb,matthaywardwebdesign/rethinkdb,Qinusty/rethinkdb,bchavez/rethinkdb,mcanthony/rethinkdb,JackieXie168/rethinkdb,gdi2290/rethinkdb,lenstr/rethinkdb,sontek/rethinkdb,spblightadv/rethinkdb,losywee/rethinkdb,scripni/rethinkdb,4talesa/rethinkdb,lenstr/rethinkdb,catroot/rethinkdb,wkennington/rethinkdb,tempbottle/rethinkdb,marshall007/rethinkdb,JackieXie168/rethinkdb,wojons/rethinkdb,catroot/rethinkdb,jesseditson/rethinkdb,scripni/rethinkdb,dparnell/rethinkdb,bchavez/rethinkdb,ajose01/rethinkdb,catroot/rethinkdb,4talesa/rethinkdb,rrampage/rethinkdb,gavioto/rethinkdb,KSanthanam/rethinkdb,urandu/rethinkdb,yaolinz/rethinkdb,elkingtonmcb/rethinkdb,sontek/rethinkdb,urandu/rethinkdb,victorbriz/rethinkdb,scripni/rethinkdb,eliangidoni/rethinkdb,Wilbeibi/rethinkdb,alash3al/rethinkdb,matthaywardwebdesign/rethinkdb,sbusso/rethinkdb
a201960dbcc81f6687e77c11b34ae665346e0160
config/contact.form.contact_sw.yml
config/contact.form.contact_sw.yml
uuid: 5afeb256-5fab-4ccd-8d4d-7ad8b37ecb92 langcode: en status: true dependencies: { } id: contact_sw label: 'Contact SW' recipients: - info@socialistworker.org reply: '' weight: -5 message: 'Thank you, your message has been sent.' redirect: ''
uuid: 5afeb256-5fab-4ccd-8d4d-7ad8b37ecb92 langcode: en status: true dependencies: { } id: contact_sw label: 'Contact SW' recipients: - webdept@socialistworker.org reply: '' weight: -5 message: 'Thank you, your message has been sent.' redirect: ''
Change forwarding address to webdept@sw.org for main contact form.
Contact: Change forwarding address to webdept@sw.org for main contact form.
YAML
mit
ISO-tech/sw-d8,ISO-tech/sw-d8,ISO-tech/sw-d8,ISO-tech/sw-d8
ebbad7420c522e5fa9c44c584140abe1a41e4281
roles/rciam-utils/tasks/install-Debian.yml
roles/rciam-utils/tasks/install-Debian.yml
# file: rciam-utils/tasks/install-Debian.yml # --- - name: Ensure util dependencies are installed apt: name: - git - python3-venv state: present install_recommends: no update_cache: yes cache_valid_time: 86400 become: yes - name: Ensure PPA is installed for MaxMind (required for rciam-ip2country) apt_repository: repo: 'ppa:maxmind/ppa' state: present update_cache: yes codename: trusty when: - rciam_utils | selectattr("name", "equalto", "rciam-ip2country") | list | length == 1 - rciam_utils_ip2country.db_file_extension is defined and rciam_utils_ip2country.db_file_extension == "dat" become: yes - name: Ensure dependencies for rciam-ip2country are installed apt: name: - libgeoip1 - libgeoip-dev - geoip-bin state: present install_recommends: no update_cache: yes cache_valid_time: 86400 when: - rciam_utils | selectattr("name", "equalto", "rciam-ip2country") | list | length == 1 - rciam_utils_ip2country.db_file_extension is defined and rciam_utils_ip2country.db_file_extension == "dat" become: yes
# file: rciam-utils/tasks/install-Debian.yml # --- - name: Ensure util dependencies are installed apt: name: - git - python3-venv state: present install_recommends: no update_cache: yes cache_valid_time: 86400 become: yes - name: Ensure PPA is installed for MaxMind (required for rciam-ip2country) apt_repository: repo: 'ppa:maxmind/ppa' state: present update_cache: yes codename: trusty when: - rciam_utils | selectattr("name", "equalto", "rciam-ip2country") | list | length == 1 - rciam_utils_ip2country.db_file_extension is defined and rciam_utils_ip2country.db_file_extension == "dat" become: yes - name: Ensure dependencies for rciam-ip2country are installed apt: name: - python3-dev - build-essential - libgeoip1 - libgeoip-dev - geoip-bin state: present install_recommends: no update_cache: yes cache_valid_time: 86400 when: - rciam_utils | selectattr("name", "equalto", "rciam-ip2country") | list | length == 1 - rciam_utils_ip2country.db_file_extension is defined and rciam_utils_ip2country.db_file_extension == "dat" become: yes
Add missing packages for legacy version of ip2country
Add missing packages for legacy version of ip2country
YAML
apache-2.0
rciam/rciam-deploy,rciam/rciam-deploy
009f5f716a7414e5c0cc17aa5549a6d002560704
lib/ansible/modules/extras/.travis.yml
lib/ansible/modules/extras/.travis.yml
sudo: false language: python python: - "2.7" addons: apt: sources: - deadsnakes packages: - python2.4 - python2.6 - python3.5 before_install: - git config user.name "ansible" - git config user.email "ansible@ansible.com" - if [[ "$TRAVIS_PULL_REQUEST" != "false" ]]; then git rebase $TRAVIS_BRANCH; fi; install: - pip install git+https://github.com/ansible/ansible.git@devel#egg=ansible - pip install git+https://github.com/sivel/ansible-testing.git#egg=ansible_testing script: - python2.4 -m compileall -fq -x 'cloud/|monitoring/zabbix.*\.py|/dnf\.py|/layman\.py|/maven_artifact\.py|clustering/(consul.*|znode)\.py|notification/pushbullet\.py|database/influxdb/influxdb.*\.py' . - python2.6 -m compileall -fq . - python2.7 -m compileall -fq . - python3.4 -m compileall -fq system/at.py - python3.5 -m compileall -fq system/at.py - ansible-validate-modules . #- ./test-docs.sh extras
sudo: false language: python python: - "2.7" addons: apt: sources: - deadsnakes packages: - python2.4 - python2.6 - python3.5 before_install: - git config user.name "ansible" - git config user.email "ansible@ansible.com" - if [[ "$TRAVIS_PULL_REQUEST" != "false" ]]; then git rebase $TRAVIS_BRANCH; fi; install: - pip install git+https://github.com/ansible/ansible.git@devel#egg=ansible - pip install git+https://github.com/sivel/ansible-testing.git#egg=ansible_testing script: - python2.4 -m compileall -fq -x 'cloud/|monitoring/zabbix.*\.py|/dnf\.py|/layman\.py|/maven_artifact\.py|clustering/(consul.*|znode)\.py|notification/pushbullet\.py|database/influxdb/influxdb.*\.py' . - python2.6 -m compileall -fq . - python2.7 -m compileall -fq . - python3.4 -m compileall -fq system/at.py cloud/vmware cloud/lxc - python3.5 -m compileall -fq system/at.py cloud/vmware cloud/lxc - ansible-validate-modules . #- ./test-docs.sh extras
Add vmware and lxc to python3 checks
Add vmware and lxc to python3 checks
YAML
mit
thaim/ansible,thaim/ansible
bb4c230489e93e72505668a2929400fbcad60b20
.codeclimate.yml
.codeclimate.yml
--- engines: csslint: enabled: true duplication: enabled: true config: languages: - javascript eslint: enabled: true fixme: enabled: true ratings: paths: - "**.css" - "**.inc" - "**.js" - "**.jsx" - "**.module" exclude_paths: - "server-express-mvc/" - "spec/" - "test-mocha/"
--- engines: csslint: enabled: true duplication: enabled: false config: languages: - javascript eslint: enabled: true fixme: enabled: true ratings: paths: - "**.css" - "**.inc" - "**.js" - "**.jsx" - "**.module" exclude_paths: - "server-express-mvc/" - "spec/" - "test-mocha/"
Disable Code Climate duplication analysis
Disable Code Climate duplication analysis
YAML
mit
mhaidarh/super-workshop-js,mhaidarh/super-workshop-js,mhaidarh/super-workshop-js
f687457b59f223532b8000f45ae69143c79b9618
.codeclimate.yml
.codeclimate.yml
--- languages: JavaScript: true Python: true engines: eslint: enabled: true ratings: paths: - "**.py" - "**.js" - "**.jsx" exclude_paths: []
--- languages: JavaScript: true Python: true engines: eslint: enabled: true scss-lint: enabled: true ratings: paths: - "**.py" - "**.scss" - "**.js" - "**.jsx" exclude_paths: []
Enable SCSS liniting in CodeClimate
Enable SCSS liniting in CodeClimate
YAML
mpl-2.0
beavyHQ/beavy,beavyHQ/beavy,beavyHQ/beavy,beavyHQ/beavy
51b7399b9af3422374c8b9d21c652dd8680d3dbd
.pullapprove.yml
.pullapprove.yml
approve_by_comment: true approve_regex: ^LGTM reject_regex: ^Rejected reset_on_push: true reviewers: teams: - image-spec-maintainers name: default required: 2
approve_by_comment: true approve_regex: '^(Approved|lgtm|LGTM|:shipit:|:star:|:\+1:|:ship:)' reject_regex: ^Rejected reset_on_push: true reviewers: teams: - image-spec-maintainers name: default required: 2
Fix the PullApprove approve_regex to cover more cases
Fix the PullApprove approve_regex to cover more cases '^(Approved|lgtm|LGTM|:shipit:|:star:|:\+1:|:ship:)' Signed-off-by: Chris Aniszczyk <2a3e0ec6821d10bf53e535c46e422f24d94584b5@gmail.com>
YAML
apache-2.0
jbouzane/image-spec,runcom/image-spec,opencontainers/image-tools,opencontainers/image-spec,xiekeyang/image-tools,xiekeyang/image-tools,jbouzane/image-spec,opencontainers/image-tools,opencontainers/image-spec,mattspencer-arm/image-spec,vbatts/oci-image-spec,jonboulle/image-spec,jonboulle/image-spec,runcom/image-spec,vbatts/oci-image-spec,mattspencer-arm/image-spec
3b576ee9a311d6430eb6ccb892db530dac83a3a9
.readthedocs.yml
.readthedocs.yml
# .readthedocs.yml # Read the Docs configuration file # See https://docs.readthedocs.io/en/stable/config-file/v2.html # for details # Required version: 2 # Build documentation in the docs/ directory with Sphinx sphinx: builder: html configuration: docs/conf.py fail_on_warning: true # Build documentation with MkDocs #mkdocs: # configuration: mkdocs.yml # fail_on_warning: true # Optionally build your docs in additional formats # such as PDF and ePub formats: [] submodules: include: all # [] exclude: [] recursive: true build: image: latest # Optionally set the version of Python and requirements required # to build docs python: version: 3.7 install: - method: pip path: . extra_requirements: - docs system_packages: false
# .readthedocs.yml # Read the Docs configuration file # See https://docs.readthedocs.io/en/stable/config-file/v2.html # for details # Required version: 2 # Build documentation in the docs/ directory with Sphinx sphinx: builder: html configuration: docs/conf.py fail_on_warning: true # Build documentation with MkDocs #mkdocs: # configuration: mkdocs.yml # fail_on_warning: true # Optionally build your docs in additional formats # such as PDF and ePub formats: [] submodules: include: all # [] exclude: [] recursive: true build: image: latest # Optionally set the version of Python and requirements required # to build docs python: version: 3.7 install: - method: pip path: . extra_requirements: - docs - testing system_packages: false
Install testing extra in RTD
Install testing extra in RTD
YAML
bsd-3-clause
cherrypy/cheroot
045cd2dd68775d67f40268fde3307318b3e4a156
.scrutinizer.yml
.scrutinizer.yml
build: dependencies: override: - "pip install -r requirements.txt -r requirements-test.txt" nodes: analysis: tests: override: - js-scrutinizer-run - py-scrutinizer-run
build: environment: python: 3.7.7 dependencies: override: - "pip install -r requirements.txt -r requirements-test.txt" nodes: analysis: tests: override: - js-scrutinizer-run - py-scrutinizer-run
Upgrade Python on Scrutinizer to v3.7.7 (from currently default v3.7.2)
Upgrade Python on Scrutinizer to v3.7.7 (from currently default v3.7.2)
YAML
bsd-3-clause
homeworkprod/byceps,homeworkprod/byceps,homeworkprod/byceps
7ea1c4598d918ffe4ad731f02384cd5fa308ec62
.scrutinizer.yml
.scrutinizer.yml
build: tests: override: - command: 'vendor/bin/phpunit' coverage: file: 'logs/clover.xml' format: 'clover'
build: tests: override: - command: 'composer test' coverage: file: 'logs/clover.xml' format: 'clover'
Update Scrutinizer configs to use PHPUnit via the Composer script
Update Scrutinizer configs to use PHPUnit via the Composer script
YAML
mit
TransitScreen/php-heroku-client
d936441ccda345169fa5c443521554501a2b378b
.scrutinizer.yml
.scrutinizer.yml
# This file is part of the Lug package. # # (c) Eric GELOEN <geloen.eric@gmail.com> # # For the full copyright and license information, please read the LICENSE # file that was distributed with this source code. tools: external_code_coverage: timeout: 1800
# This file is part of the Lug package. # # (c) Eric GELOEN <geloen.eric@gmail.com> # # For the full copyright and license information, please read the LICENSE # file that was distributed with this source code. tools: external_code_coverage: timeout: 1800 runs: 6
Add number of travis builds
[Scrutinizer] Add number of travis builds
YAML
mit
php-lug/lug,php-lug/lug,php-lug/lug,php-lug/lug
bcab2af5af8ee7062d2f10b9b62606b0b9aadaf4
.scrutinizer.yml
.scrutinizer.yml
inherit: true checks: php: code_rating: true duplication: true filter: paths: [src/*, tests/*]
inherit: true checks: php: true build: nodes: analysis: tests: override: [php-scrutinizer-run] filter: paths: [src/*, tests/*]
FIX Update Scrutinizer configuration to run new build system
FIX Update Scrutinizer configuration to run new build system
YAML
bsd-3-clause
silverstripe/silverstripe-subsites,silverstripe/silverstripe-subsites
78f63a4cf58c1cacc59185f692d9f738fd8f7b43
packages/hs/hsinspect.yaml
packages/hs/hsinspect.yaml
homepage: '' changelog-type: '' hash: 7435f280593937cb9a0437ddd1b2a481130bc92241d54f396b5b581bd5caaa78 test-bench-deps: {} maintainer: Tseen She synopsis: Inspect Haskell source files. changelog: '' basic-deps: ghc: -any base: ! '>=4.11 && <5' time: -any hsinspect: -any containers: -any ghc-paths: -any ghc-boot: -any directory: -any all-versions: - 0.0.1 - 0.0.2 - 0.0.3 - 0.0.4 author: Tseen She latest: 0.0.4 description-type: haddock description: Inspect @.hs@ files using the ghc api. license-name: GPL-3.0-or-later
homepage: '' changelog-type: '' hash: b39c7929c37ff896fe81a569ccfdea7a2c500873b4eea9ba7c39b7bd4e369087 test-bench-deps: {} maintainer: Tseen She synopsis: Inspect Haskell source files. changelog: '' basic-deps: ghc: -any base: ! '>=4.11 && <5' time: -any hsinspect: -any containers: -any ghc-boot: -any directory: -any all-versions: - 0.0.1 - 0.0.2 - 0.0.3 - 0.0.4 - 0.0.5 author: Tseen She latest: 0.0.5 description-type: haddock description: Inspect @.hs@ files using the ghc api. license-name: GPL-3.0-or-later
Update from Hackage at 2019-10-16T19:51:19Z
Update from Hackage at 2019-10-16T19:51:19Z
YAML
mit
commercialhaskell/all-cabal-metadata
6446aff4446c7628eab7a3402747e8cfecad2a4a
.taskcluster.yml
.taskcluster.yml
version: 0 metadata: name: servo description: >- A modern, high-performance browser engine designed for both application and embedded use. owner: '{{ event.head.user.email }}' source: '{{ event.head.repo.url }}' tasks: - provisionerId: '{{ taskcluster.docker.provisionerId }}' workerType: '{{ taskcluster.docker.workerType }}' extra: github: events: - pull_request.opened - pull_request.reopened - pull_request.synchronize payload: maxRunTime: 3600 image: servobrowser/servo-linux-dev command: - /bin/bash - '--login' - '-c' - '-x' - >- git clone {{event.head.repo.url}} servo && cd servo && git config advice.detachedHead false && git checkout {{event.head.sha}} && etc/ci/taskcluster-test.sh metadata: name: linux-tests description: Run Linux tests. owner: '{{ event.head.user.email }}' source: '{{ event.head.repo.url }}' allowPullRequests: public
version: 0 metadata: name: servo description: >- A modern, high-performance browser engine designed for both application and embedded use. owner: '{{ event.head.user.email }}' source: '{{ event.head.repo.url }}' tasks: - provisionerId: '{{ taskcluster.docker.provisionerId }}' workerType: '{{ taskcluster.docker.workerType }}' extra: github: events: - pull_request.opened - pull_request.reopened - pull_request.synchronize payload: maxRunTime: 3600 image: 'servobrowser/servo-linux-dev:servo-linux-build-deps-2017-06-30' command: - /bin/bash - '--login' - '-c' - '-x' - >- git clone {{event.head.repo.url}} servo && cd servo && git config advice.detachedHead false && git checkout {{event.head.sha}} && etc/ci/taskcluster-test.sh metadata: name: linux-tests description: Run Linux tests. owner: '{{ event.head.user.email }}' source: '{{ event.head.repo.url }}' allowPullRequests: public
Use existing Docker image tag for now
Use existing Docker image tag for now We have not yet pushed a :latest tag, so use the (old) named tag that we have for now.
YAML
mpl-2.0
fiji-flo/servo,jimberlage/servo,splav/servo,paulrouget/servo,paulrouget/servo,mbrubeck/servo,anthgur/servo,saneyuki/servo,canaltinova/servo,notriddle/servo,cbrewster/servo,thiagopnts/servo,anthgur/servo,peterjoel/servo,dati91/servo,paulrouget/servo,pyfisch/servo,splav/servo,larsbergstrom/servo,larsbergstrom/servo,KiChjang/servo,DominoTree/servo,sadmansk/servo,emilio/servo,larsbergstrom/servo,avadacatavra/servo,notriddle/servo,notriddle/servo,szeged/servo,cbrewster/servo,szeged/servo,SimonSapin/servo,saneyuki/servo,KiChjang/servo,notriddle/servo,thiagopnts/servo,larsbergstrom/servo,canaltinova/servo,peterjoel/servo,dati91/servo,splav/servo,pyfisch/servo,mattnenterprise/servo,peterjoel/servo,larsbergstrom/servo,dati91/servo,avadacatavra/servo,emilio/servo,paulrouget/servo,pyfisch/servo,avadacatavra/servo,pyfisch/servo,SimonSapin/servo,jimberlage/servo,larsbergstrom/servo,anthgur/servo,notriddle/servo,jimberlage/servo,paulrouget/servo,mattnenterprise/servo,KiChjang/servo,emilio/servo,mbrubeck/servo,dati91/servo,anthgur/servo,szeged/servo,jimberlage/servo,emilio/servo,mbrubeck/servo,upsuper/servo,szeged/servo,DominoTree/servo,DominoTree/servo,jimberlage/servo,upsuper/servo,emilio/servo,pyfisch/servo,anthgur/servo,thiagopnts/servo,ConnorGBrewster/servo,emilio/servo,KiChjang/servo,saneyuki/servo,fiji-flo/servo,peterjoel/servo,DominoTree/servo,fiji-flo/servo,mattnenterprise/servo,nnethercote/servo,anthgur/servo,KiChjang/servo,sadmansk/servo,sadmansk/servo,KiChjang/servo,DominoTree/servo,DominoTree/servo,nnethercote/servo,ConnorGBrewster/servo,peterjoel/servo,cbrewster/servo,sadmansk/servo,dati91/servo,jimberlage/servo,upsuper/servo,SimonSapin/servo,paulrouget/servo,saneyuki/servo,thiagopnts/servo,canaltinova/servo,szeged/servo,cbrewster/servo,pyfisch/servo,szeged/servo,mattnenterprise/servo,SimonSapin/servo,nnethercote/servo,DominoTree/servo,thiagopnts/servo,KiChjang/servo,mattnenterprise/servo,splav/servo,ConnorGBrewster/servo,pyfisch/servo,mbrubeck/servo,avadacatavra/servo,nnethercote/servo,dati91/servo,avadacatavra/servo,ConnorGBrewster/servo,KiChjang/servo,thiagopnts/servo,pyfisch/servo,saneyuki/servo,canaltinova/servo,larsbergstrom/servo,fiji-flo/servo,sadmansk/servo,pyfisch/servo,canaltinova/servo,ConnorGBrewster/servo,emilio/servo,splav/servo,avadacatavra/servo,notriddle/servo,sadmansk/servo,pyfisch/servo,upsuper/servo,szeged/servo,splav/servo,upsuper/servo,ConnorGBrewster/servo,SimonSapin/servo,KiChjang/servo,anthgur/servo,nnethercote/servo,mattnenterprise/servo,saneyuki/servo,mbrubeck/servo,SimonSapin/servo,sadmansk/servo,splav/servo,peterjoel/servo,nnethercote/servo,mattnenterprise/servo,upsuper/servo,notriddle/servo,paulrouget/servo,splav/servo,canaltinova/servo,saneyuki/servo,fiji-flo/servo,nnethercote/servo,szeged/servo,saneyuki/servo,emilio/servo,jimberlage/servo,paulrouget/servo,peterjoel/servo,notriddle/servo,DominoTree/servo,jimberlage/servo,emilio/servo,saneyuki/servo,paulrouget/servo,avadacatavra/servo,anthgur/servo,upsuper/servo,mbrubeck/servo,saneyuki/servo,larsbergstrom/servo,SimonSapin/servo,szeged/servo,SimonSapin/servo,thiagopnts/servo,emilio/servo,upsuper/servo,dati91/servo,fiji-flo/servo,szeged/servo,larsbergstrom/servo,cbrewster/servo,notriddle/servo,fiji-flo/servo,DominoTree/servo,peterjoel/servo,canaltinova/servo,mbrubeck/servo,notriddle/servo,mbrubeck/servo,ConnorGBrewster/servo,nnethercote/servo,splav/servo,cbrewster/servo,thiagopnts/servo,ConnorGBrewster/servo,peterjoel/servo,nnethercote/servo,dati91/servo,canaltinova/servo,paulrouget/servo,KiChjang/servo,avadacatavra/servo,splav/servo,sadmansk/servo,cbrewster/servo,larsbergstrom/servo,cbrewster/servo,peterjoel/servo,jimberlage/servo,nnethercote/servo,fiji-flo/servo,mattnenterprise/servo,DominoTree/servo
f84b9c55d0b8a74436f089c2d6867d9ff5dc6e98
packages/po/posix-pty.yaml
packages/po/posix-pty.yaml
homepage: https://bitbucket.org/merijnv/posix-pty changelog-type: '' hash: e63386021ec29d44457a6c6324808870ebdc4cf875d9131a4e592b5213863c05 test-bench-deps: {} maintainer: Merijn Verstraaten <merijn@inconsistent.nl> synopsis: Pseudo terminal interaction with subprocesses. changelog: '' basic-deps: bytestring: ! '>=0.10' unix: ! '>=2.6' base: ! '>=4 && <5' process: ! '>=1.2' all-versions: - '0.2.1' author: Merijn Verstraaten latest: '0.2.1' description-type: haddock description: ! 'This package simplifies the creation of subprocesses that interact with their parent via a pseudo terminal (see @man pty@).' license-name: BSD3
homepage: https://bitbucket.org/merijnv/posix-pty changelog-type: '' hash: c814bcbe882faca6e0ff7651c88001021c62fff960300dc35ac612835626a51c test-bench-deps: bytestring: -any base: -any process: -any posix-pty: -any maintainer: Merijn Verstraaten <merijn@inconsistent.nl> synopsis: Pseudo terminal interaction with subprocesses. changelog: '' basic-deps: bytestring: ! '>=0.10' unix: ! '>=2.6' base: ! '>=4 && <5' process: ! '>=1.2' all-versions: - '0.2.1' - '0.2.1.1' author: Merijn Verstraaten latest: '0.2.1.1' description-type: haddock description: ! 'This package simplifies the creation of subprocesses that interact with their parent via a pseudo terminal (see @man pty@).' license-name: BSD3
Update from Hackage at 2017-04-21T10:08:26Z
Update from Hackage at 2017-04-21T10:08:26Z
YAML
mit
commercialhaskell/all-cabal-metadata
5189d0ff9424563fbf4f53c211a67b8d1c691871
packages/sp/spherical.yaml
packages/sp/spherical.yaml
homepage: '' changelog-type: markdown hash: b90e45826e1cf6b13719fd060d72d0a24c5aaaaab6f93e6edf0ede3cba54a0a7 test-bench-deps: {} maintainer: vanessa.mchale@iohk.io synopsis: Geometry on a sphere changelog: ! "# spherical\n\n## 0.1.2.1\n\n * Fix `sinc`\n\n## 0.1.2.0\n\n * Expose `bonne` projection\n\n## 0.1.1.0\n\n * Expose `distance` function\n\n## 0.1.0.0\n\nInitial release\n" basic-deps: composition-prelude: -any base: ! '>=4.3 && <5' all-versions: - 0.1.0.0 - 0.1.1.0 - 0.1.2.0 - 0.1.2.1 author: Vanessa McHale latest: 0.1.2.1 description-type: markdown description: ! '# spherical A library for working with geometry on the surface of the sphere, mainly for use in GIS. ' license-name: BSD-3-Clause
homepage: '' changelog-type: markdown hash: b338ecb78bd956c8a0612aa83e7395c16ec27e2e4a25ab3dacd9921cc6bcca80 test-bench-deps: {} maintainer: vanessa.mchale@iohk.io synopsis: Geometry on a sphere changelog: | # spherical ## 0.1.2.2 * Documentation improvements ## 0.1.2.1 * Fix `sinc` ## 0.1.2.0 * Expose `bonne` projection ## 0.1.1.0 * Expose `distance` function ## 0.1.0.0 Initial release basic-deps: composition-prelude: -any base: ! '>=4.3 && <5' all-versions: - 0.1.0.0 - 0.1.1.0 - 0.1.2.0 - 0.1.2.1 - 0.1.2.2 author: Vanessa McHale latest: 0.1.2.2 description-type: markdown description: | # spherical A library for working with geometry on the surface of the sphere, mainly for use in GIS. license-name: BSD-3-Clause
Update from Hackage at 2019-05-22T01:36:56Z
Update from Hackage at 2019-05-22T01:36:56Z
YAML
mit
commercialhaskell/all-cabal-metadata
ea53aa1223a82904a0f2ba9f18237498d949c300
packages/st/stm-queue.yaml
packages/st/stm-queue.yaml
homepage: https://github.com/SamuelSchlesinger/stm-queue changelog-type: markdown hash: e697d4afa0a359df0cd03db61cf475d058bb56579748d5cfb2e27610899b0c9d test-bench-deps: stm: '>=2.1' base: '>=4.12 && <4.16' hspec: '>=2.7.4' async: '>=2.0' stm-queue: -any maintainer: sgschlesinger@gmail.com synopsis: An implementation of a real-time concurrent queue changelog: | # Revision history for stm-queue ## 0.1.0.0 -- 2020-09-19 Created a basic Okasaki-style real-time queue basic-deps: stm: '>=2.1 && <3' base: '>=4.12 && <4.16' all-versions: - 0.1.0.0 - 0.1.1.0 author: Samuel Schlesinger latest: 0.1.1.0 description-type: haddock description: An implementation of a real-time concurrent queue. license-name: MIT
homepage: https://github.com/SamuelSchlesinger/stm-queue changelog-type: markdown hash: 26a996b55dedde873bff4f4236ab3367b409b395ad46ab3d6f86a8cfa4629148 test-bench-deps: stm: '>=2.1' base: '>=4.12 && <4.16' time: '>=1.8' hspec: '>=2.7.4' criterion: '>=1.5' async: '>=2.0' stm-queue: -any deepseq: '>=1.4' maintainer: sgschlesinger@gmail.com synopsis: An implementation of a real-time concurrent queue changelog: | # Revision history for stm-queue ## 0.1.0.0 -- 2020-09-19 Created a basic Okasaki-style real-time queue basic-deps: stm: '>=2.1 && <3' base: '>=4.12 && <4.16' all-versions: - 0.1.0.0 - 0.1.1.0 - 0.1.2.0 author: Samuel Schlesinger latest: 0.1.2.0 description-type: haddock description: An implementation of a real-time concurrent queue. license-name: MIT
Update from Hackage at 2020-09-20T19:28:38Z
Update from Hackage at 2020-09-20T19:28:38Z
YAML
mit
commercialhaskell/all-cabal-metadata
17eded37234da8e995e33e92c58817dd3b2ce1ac
.github/workflows/basic-maven-build.yml
.github/workflows/basic-maven-build.yml
name: Basic Maven Build on: push: branches: [ master ] jobs: build: name: Maven build runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v2 - name: Set up JDK uses: actions/setup-java@v2 with: java-version: '11' distribution: 'adopt' cache: 'maven' - name: Build with Maven run: cd java && mvn -B -V clean verify
name: Basic Maven Build on: push: branches: [ master ] jobs: build: name: Maven build runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v3 - name: Set up JDK uses: actions/setup-java@v2 with: java-version: '11' distribution: 'adopt' cache: 'maven' - name: Build with Maven run: cd java && mvn -B -V clean verify
Update actions/checkout action to v3
Update actions/checkout action to v3
YAML
mit
vrampal/codingame-public,vrampal/codingame-public,vrampal/codingame-public,vrampal/codingame-public,vrampal/codingame-public,vrampal/codingame-public
e3830f4bc8c58a0c1472f9ab5c3a49ab345230a2
.github/workflows/docker-image-temp.yml
.github/workflows/docker-image-temp.yml
name: Docker Image CI rubocop-211208 branch on: workflow_dispatch: push: branches: [ rubocop-211208 ] pull_request: branches: [ rubocop-211208 ] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Build the Docker image run: docker build . --file Dockerfile --tag temp:$(date +%s)
name: Docker Image CI rubocop-211208 branch on: workflow_dispatch: push: branches: [ rubocop-211208 ] pull_request: branches: [ rubocop-211208 ] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Build the Docker image run: docker build . --file Dockerfile --tag temp:$(date +%s) env: SERVER_PRODUCTION: www.nothing.fish HOST_PORT: 80
Set ENV vars required to run tests
Set ENV vars required to run tests
YAML
apache-2.0
jlm/maint,jlm/maint,jlm/maint,jlm/maint
58f20d894dbb3d0e0d3c73478e02dd3e8dcb1bcb
glide.yaml
glide.yaml
package: github.com/v4lproik/wias import: - package: github.com/juju/loggo - package: github.com/jessevdk/go-flags - package: github.com/PuerkitoBio/goquery - package: github.com/pmezard/go-difflib/difflib
package: github.com/v4lproik/no-name import: - package: github.com/juju/loggo - package: github.com/jessevdk/go-flags - package: github.com/PuerkitoBio/goquery - package: github.com/pmezard/go-difflib/difflib
Remove all reference to WIAS
[arch] Remove all reference to WIAS
YAML
mit
v4lproik/no-name,v4lproik/no-name,v4lproik/no-name
8a1cdb7ecd96fde82141853d57673ef7b42ee419
bootstrap.yml
bootstrap.yml
--- - hosts: all tasks: - name: Create .ssh directory file: path: ~/.ssh state: directory mode: 0700 - name: Install authorized key from Ansible host copy: src: "{{ ansible_env.HOME }}/.ssh/id_rsa.pub" dest: "{{ ansible_env.HOME }}/.ssh/authorized_keys" mode: 0644 - name: Enable passwordless sudo become: true copy: src: files/passwordless_sudo dest: /etc/sudoers.d/passwordless_sudo owner: root group: root mode: 0440
--- - hosts: all tasks: - name: Create .ssh directory file: path: ~/.ssh state: directory mode: 0700 - name: Install authorized key from Ansible host copy: src: ~/.ssh/id_rsa.pub dest: ~/.ssh/authorized_keys mode: 0644 - name: Enable passwordless sudo become: true copy: src: files/passwordless_sudo dest: /etc/sudoers.d/passwordless_sudo owner: root group: root mode: 0440
Use home directory for SSH
Use home directory for SSH
YAML
mit
tnewman/kazoo-ansible,kazoo-ansible/kazoo-ansible
53d942ffe378ee172e51f0c326c09a3668085429
buildspec.yml
buildspec.yml
version: 0.2 phases: pre_build: commands: - echo Logging in to Amazon ECR... - $(aws ecr get-login --region $AWS_DEFAULT_REGION) build: commands: - echo Build started on `date` - echo Building the Docker image... - docker build -t $IMAGE_REPO_NAME --build-arg ETSY_API_KEY=$ETSY_API_KEY --build-arg ETSY_API_SECRET=$ETSY_API_SECRET --build-arg SECRET_KEY_BASE=$SECRET_KEY_BASE --build-arg AIRBRAKE_PROJECT_ID=$AIRBRAKE_PROJECT_ID --build-arg AIRBRAKE_PROJECT_KEY=$AIRBRAKE_PROJECT_KEY --build-arg RACK_ENV=$RACK_ENV . - docker tag $IMAGE_REPO_NAME:$IMAGE_TAG $AWS_ACCOUNT_ID.dkr.ecr.$AWS_DEFAULT_REGION.amazonaws.com/$IMAGE_REPO_NAME:$IMAGE_TAG - echo Testing docker image - docker run $IMAGE_REPO_NAME:$IMAGE_TAG bundle exec rake post_build: commands: - echo Build completed on `date` - echo Pushing the Docker image... - docker push $AWS_ACCOUNT_ID.dkr.ecr.$AWS_DEFAULT_REGION.amazonaws.com/$IMAGE_REPO_NAME:$IMAGE_TAG
version: 0.2 phases: pre_build: commands: - echo Logging in to Amazon ECR... - $(aws ecr get-login --region $AWS_DEFAULT_REGION) build: commands: - echo Build started on `date` - echo Building development Docker image... - docker build -t $IMAGE_REPO_NAME --build-arg --build-arg RACK_ENV=development . - echo Testing docker image - docker run --rm $IMAGE_REPO_NAME:$IMAGE_TAG bundle exec rake - echo Building production Docker image... - docker build -t $IMAGE_REPO_NAME --build-arg --build-arg RACK_ENV=production . - docker tag $IMAGE_REPO_NAME:$IMAGE_TAG $AWS_ACCOUNT_ID.dkr.ecr.$AWS_DEFAULT_REGION.amazonaws.com/$IMAGE_REPO_NAME:$IMAGE_TAG post_build: commands: - echo Build completed on `date` - echo Pushing the Docker image... - docker push $AWS_ACCOUNT_ID.dkr.ecr.$AWS_DEFAULT_REGION.amazonaws.com/$IMAGE_REPO_NAME:$IMAGE_TAG
Test development image and push production
Test development image and push production
YAML
mit
mattrayner/packagewith.me,mattrayner/packagewith.me,mattrayner/packagewith.me
5389767400dc5fb6f1153677d5bd47f5ec1ce15a
roles/python/vars/main.yml
roles/python/vars/main.yml
--- python_brew_packages: - name: python - name: python3 python_packages: - pip - virtualenv - virtualenvwrapper - boto - awscli - neovim python_pyenv_install_cmd: "CFLAGS=\"-I$(brew --prefix openssl)/include -I$(xcrun --show-sdk-path)/usr/include\" LDFLAGS=\"-L$(brew --prefix openssl)/lib -L/usr/local/opt/sqlite/lib\" pyenv install" python_use_pyenv: False python_pyenv_versions: - 3.3.6 - 3.5.1
--- python_brew_packages: - name: python - name: python3 python_packages: - pip - virtualenv - virtualenvwrapper - boto - awscli - neovim - ansible-lint python_pyenv_install_cmd: "CFLAGS=\"-I$(brew --prefix openssl)/include -I$(xcrun --show-sdk-path)/usr/include\" LDFLAGS=\"-L$(brew --prefix openssl)/lib -L/usr/local/opt/sqlite/lib\" pyenv install" python_use_pyenv: False python_pyenv_versions: - 3.3.6 - 3.5.1
Add ansible-lint to python packages
Add ansible-lint to python packages
YAML
mit
mtchavez/mac-ansible
e9dd5f4a82a781602468d68b23388715e35176f6
kubernetes/bot-service.yaml
kubernetes/bot-service.yaml
apiVersion: extensions/v1beta1 kind: Deployment metadata: name: bot-service spec: replicas: 3 template: metadata: labels: app: bot-service spec: containers: - name: bot-service image: radumatei/bot-service ports: - containerPort: 3978
apiVersion: extensions/v1beta1 kind: Deployment metadata: name: bot-service spec: replicas: 3 template: metadata: labels: app: bot-service spec: containers: - name: bot-service image: radumatei/bot-service ports: - containerPort: 3978 env: - name: LUIS_URI valueFrom: secretKeyRef: name: luis-url key: luis-url - name: MICROSOFT_APP_ID valueFrom: secretKeyRef: name: microsoft-app-values key: microsoft-app-id - name: MICROSOFT_APP_PASSWORD valueFrom: secretKeyRef: name: microsoft-app-values key: microsoft-app-password
Add LUIS and Bot Framework secrets
Add LUIS and Bot Framework secrets Signed-off-by: radu-matei <5658ddc86f190a3ca12b15ca39a24e2d214bc7d0@gmail.com>
YAML
mit
radu-matei/kube-bot,radu-matei/kube-bot
bdd94e289742132cc01dd92790dd0c3103ecdc69
playbook/roles/elasticsearch/defaults/main.yml
playbook/roles/elasticsearch/defaults/main.yml
elasticsearch_config: node_name: node1 cluster_name: cluster1 plugin_dir: /usr/share/elasticsearch/plugins home_dir: /usr/share/elasticsearch # by default the kopf ui and hq plugin are installed. elasticsearch_plugins: - { name: 'royrusso/elasticsearch-HQ', shortname: 'hq'} elasticsearch_heap_size: 2g elasticsearch_version: 6 elasticsearch_cluster: False
elasticsearch_config: node_name: node1 cluster_name: cluster1 plugin_dir: /usr/share/elasticsearch/plugins home_dir: /usr/share/elasticsearch # by default the kopf ui and hq plugin are installed. elasticsearch_plugins: - { name: 'royrusso/elasticsearch-HQ', shortname: 'hq'} # Heap size should be 50% of the total memory allocated for elasticsearch to leave some room for kernel disk caches to be used by Lucene elasticsearch_heap_size: 2g elasticsearch_version: 6 elasticsearch_cluster: False
Add suggestion about proper es_heap memory size.
Add suggestion about proper es_heap memory size.
YAML
mit
wunderkraut/WunderMachina,wunderkraut/WunderMachina,wunderkraut/WunderMachina,wunderkraut/WunderMachina
76226ff01f8646e67f60f025b5357772248ca4df
.cirrus.yml
.cirrus.yml
test_task: env: ELVISH_TEST_TIME_SCALE: 20 go_modules_cache: fingerprint_script: cat go.sum folder: $GOPATH/pkg/mod matrix: - name: Test on gccgo container: image: debian:unstable-slim setup_script: - apt-get -y update - apt-get -y install ca-certificates gccgo-go env: # gccgo doesn't support race test TEST_FLAG: "" - name: Test on FreeBSD freebsd_instance: image_family: freebsd-12-1 setup_script: pkg install -y go env: GOPATH: $HOME/go TEST_FLAG: -race go_version_script: go version test_script: go test $TEST_FLAG ./...
test_task: env: ELVISH_TEST_TIME_SCALE: 20 go_modules_cache: fingerprint_script: cat go.sum folder: $GOPATH/pkg/mod matrix: - name: Test on gccgo container: image: debian:unstable-slim setup_script: - apt-get -y update - apt-get -y install ca-certificates gccgo-go env: # gccgo doesn't support race test TEST_FLAG: "" # Debian's gccgo hasn't caught up with Go 1.16 yet allow_failures: true - name: Test on FreeBSD freebsd_instance: image_family: freebsd-12-1 setup_script: pkg install -y go env: GOPATH: $HOME/go TEST_FLAG: -race go_version_script: go version test_script: go test $TEST_FLAG ./...
Allow gccgo failures - it's too old.
Allow gccgo failures - it's too old.
YAML
bsd-2-clause
elves/elvish,elves/elvish,elves/elvish,elves/elvish,elves/elvish
9562a00f886a69d023d92323533de11f00a867b4
environment.yml
environment.yml
# You can use this file to create a conda environment for this pipeline: # conda env create -f environment.yml name: nf-core-methylseq-1.2dev channels: - bioconda - conda-forge - defaults dependencies: # bismark - conda-forge::openjdk=8.0.144 # Needed for FastQC - conda build hangs without this - fastqc=0.11.8 - trim-galore=0.5.0 - samtools=1.9 - bowtie2=2.3.4.3 - bismark=0.20.0 - qualimap=2.2.2b - multiqc=1.7 # bwa-meth aligner - picard=2.18.21 - bwameth=0.2.2 - methyldackel=0.3.0
# You can use this file to create a conda environment for this pipeline: # conda env create -f environment.yml name: nf-core-methylseq-1.2dev channels: - bioconda - conda-forge - defaults dependencies: # Dependencies for FastQC - conda-forge::openjdk=8.0.144 - font-ttf-dejavu-sans-mono=2.37 - fontconfig=2.12.6 - fastqc=0.11.8 # Default bismark pipeline - trim-galore=0.5.0 - samtools=1.9 - bowtie2=2.3.4.3 - bismark=0.20.0 - qualimap=2.2.2b - multiqc=1.7 # bwa-meth pipeline - picard=2.18.21 - bwameth=0.2.2 - methyldackel=0.3.0
Add font dependencies to fix FastQC
Conda: Add font dependencies to fix FastQC
YAML
mit
ewels/NGI-MethylSeq,ewels/NGI-MethylSeq,ewels/NGI-MethylSeq
839ed0c23dc2c2de991a39689e1f56929cc76da5
.coveralls.yml
.coveralls.yml
repo_token: ic8IH7CrUrtweVbmY3VZQ7ncEGe1XJA5E
service_name: travis-ci repo_token: ic8IH7CrUrtweVbmY3VZQ7ncEGe1XJA5E
Set the service_name in coverals.yml
Set the service_name in coverals.yml
YAML
apache-2.0
mrkm4ntr/incubator-airflow,lyft/incubator-airflow,airbnb/airflow,jlowin/airflow,mrares/incubator-airflow,jfantom/incubator-airflow,jiwang576/incubator-airflow,d-lee/airflow,rishibarve/incubator-airflow,zodiac/incubator-airflow,jfantom/incubator-airflow,lyft/incubator-airflow,owlabs/incubator-airflow,cfei18/incubator-airflow,cfei18/incubator-airflow,yati-sagade/incubator-airflow,zoyahav/incubator-airflow,KL-WLCR/incubator-airflow,sergiohgz/incubator-airflow,lyft/incubator-airflow,dud225/incubator-airflow,jgao54/airflow,Twistbioscience/incubator-airflow,jhsenjaliya/incubator-airflow,nathanielvarona/airflow,brandsoulmates/incubator-airflow,skudriashev/incubator-airflow,malmiron/incubator-airflow,brandsoulmates/incubator-airflow,brandsoulmates/incubator-airflow,mylons/incubator-airflow,lxneng/incubator-airflow,mrares/incubator-airflow,btallman/incubator-airflow,apache/incubator-airflow,jgao54/airflow,fenglu-g/incubator-airflow,wileeam/airflow,plypaul/airflow,subodhchhabra/airflow,jfantom/incubator-airflow,cfei18/incubator-airflow,mistercrunch/airflow,easytaxibr/airflow,Tagar/incubator-airflow,ty707/airflow,nathanielvarona/airflow,yk5/incubator-airflow,wxiang7/airflow,dhuang/incubator-airflow,RealImpactAnalytics/airflow,wooga/airflow,dud225/incubator-airflow,skudriashev/incubator-airflow,jiwang576/incubator-airflow,mrares/incubator-airflow,adrpar/incubator-airflow,OpringaoDoTurno/airflow,wolfier/incubator-airflow,sergiohgz/incubator-airflow,hgrif/incubator-airflow,janczak10/incubator-airflow,subodhchhabra/airflow,mistercrunch/airflow,subodhchhabra/airflow,cademarkegard/airflow,CloverHealth/airflow,zoyahav/incubator-airflow,ty707/airflow,ledsusop/airflow,cjqian/incubator-airflow,mtdewulf/incubator-airflow,sergiohgz/incubator-airflow,hamedhsn/incubator-airflow,jiwang576/incubator-airflow,NielsZeilemaker/incubator-airflow,akosel/incubator-airflow,mattuuh7/incubator-airflow,jfantom/incubator-airflow,criccomini/airflow,dgies/incubator-airflow,gilt/incubator-airflow,kerzhner/airflow,aminghadersohi/airflow,alexvanboxel/airflow,saguziel/incubator-airflow,jlowin/airflow,sid88in/incubator-airflow,mtdewulf/incubator-airflow,CloverHealth/airflow,jhsenjaliya/incubator-airflow,danielvdende/incubator-airflow,ronfung/incubator-airflow,bolkedebruin/airflow,zoyahav/incubator-airflow,hamedhsn/incubator-airflow,andrewmchen/incubator-airflow,dhuang/incubator-airflow,caseyching/incubator-airflow,plypaul/airflow,mtdewulf/incubator-airflow,gritlogic/incubator-airflow,dgies/incubator-airflow,holygits/incubator-airflow,brandsoulmates/incubator-airflow,d-lee/airflow,easytaxibr/airflow,MetrodataTeam/incubator-airflow,OpringaoDoTurno/airflow,ProstoMaxim/incubator-airflow,nathanielvarona/airflow,DinoCow/airflow,jgao54/airflow,DEVELByte/incubator-airflow,sid88in/incubator-airflow,zack3241/incubator-airflow,NielsZeilemaker/incubator-airflow,modsy/incubator-airflow,zoyahav/incubator-airflow,aminghadersohi/airflow,lyft/incubator-airflow,sdiazb/airflow,NielsZeilemaker/incubator-airflow,forevernull/incubator-airflow,Tagar/incubator-airflow,vineet-rh/incubator-airflow,danielvdende/incubator-airflow,sdiazb/airflow,gritlogic/incubator-airflow,fenglu-g/incubator-airflow,holygits/incubator-airflow,Acehaidrey/incubator-airflow,criccomini/airflow,lxneng/incubator-airflow,hgrif/incubator-airflow,dmitry-r/incubator-airflow,modsy/incubator-airflow,yati-sagade/incubator-airflow,janczak10/incubator-airflow,gtoonstra/airflow,adrpar/incubator-airflow,wndhydrnt/airflow,adamhaney/airflow,wxiang7/airflow,lxneng/incubator-airflow,rishibarve/incubator-airflow,saguziel/incubator-airflow,AllisonWang/incubator-airflow,lxneng/incubator-airflow,wileeam/airflow,hamedhsn/incubator-airflow,plypaul/airflow,apache/airflow,mrkm4ntr/incubator-airflow,ledsusop/airflow,holygits/incubator-airflow,cademarkegard/airflow,zodiac/incubator-airflow,akosel/incubator-airflow,N3da/incubator-airflow,zack3241/incubator-airflow,hgrif/incubator-airflow,holygits/incubator-airflow,btallman/incubator-airflow,sid88in/incubator-airflow,preete-dixit-ck/incubator-airflow,DEVELByte/incubator-airflow,adrpar/incubator-airflow,skudriashev/incubator-airflow,sekikn/incubator-airflow,yk5/incubator-airflow,juvoinc/airflow,apache/incubator-airflow,saguziel/incubator-airflow,kerzhner/airflow,DEVELByte/incubator-airflow,r39132/airflow,alexvanboxel/airflow,edgarRd/incubator-airflow,modsy/incubator-airflow,RealImpactAnalytics/airflow,apache/incubator-airflow,apache/airflow,jwi078/incubator-airflow,Fokko/incubator-airflow,edgarRd/incubator-airflow,malmiron/incubator-airflow,jbhsieh/incubator-airflow,gilt/incubator-airflow,caseyching/incubator-airflow,sekikn/incubator-airflow,jesusfcr/airflow,artwr/airflow,MortalViews/incubator-airflow,owlabs/incubator-airflow,jhsenjaliya/incubator-airflow,andrewmchen/incubator-airflow,forevernull/incubator-airflow,rishibarve/incubator-airflow,N3da/incubator-airflow,preete-dixit-ck/incubator-airflow,nathanielvarona/airflow,AllisonWang/incubator-airflow,adamhaney/airflow,asnir/airflow,MetrodataTeam/incubator-airflow,forevernull/incubator-airflow,wndhydrnt/airflow,hamedhsn/incubator-airflow,aminghadersohi/airflow,skudriashev/incubator-airflow,artwr/airflow,dud225/incubator-airflow,Acehaidrey/incubator-airflow,alexvanboxel/airflow,stverhae/incubator-airflow,danielvdende/incubator-airflow,Fokko/incubator-airflow,mistercrunch/airflow,asnir/airflow,airbnb/airflow,OpringaoDoTurno/airflow,kerzhner/airflow,spektom/incubator-airflow,gtoonstra/airflow,modsy/incubator-airflow,akosel/incubator-airflow,nathanielvarona/airflow,biln/airflow,sid88in/incubator-airflow,criccomini/airflow,vineet-rh/incubator-airflow,alexvanboxel/airflow,easytaxibr/airflow,bolkedebruin/airflow,andrewmchen/incubator-airflow,malmiron/incubator-airflow,N3da/incubator-airflow,DinoCow/airflow,vijaysbhat/incubator-airflow,DinoCow/airflow,bolkedebruin/airflow,r39132/airflow,MetrodataTeam/incubator-airflow,andyxhadji/incubator-airflow,cfei18/incubator-airflow,subodhchhabra/airflow,apache/airflow,MortalViews/incubator-airflow,dmitry-r/incubator-airflow,edgarRd/incubator-airflow,Tagar/incubator-airflow,wxiang7/airflow,dmitry-r/incubator-airflow,danielvdende/incubator-airflow,airbnb/airflow,dgies/incubator-airflow,juvoinc/airflow,criccomini/airflow,spektom/incubator-airflow,Fokko/incubator-airflow,wndhydrnt/airflow,yiqingj/airflow,ProstoMaxim/incubator-airflow,KL-WLCR/incubator-airflow,mrkm4ntr/incubator-airflow,mtagle/airflow,ledsusop/airflow,plypaul/airflow,easytaxibr/airflow,yk5/incubator-airflow,dmitry-r/incubator-airflow,jbhsieh/incubator-airflow,gritlogic/incubator-airflow,juvoinc/airflow,kerzhner/airflow,andyxhadji/incubator-airflow,r39132/airflow,edgarRd/incubator-airflow,mylons/incubator-airflow,yati-sagade/incubator-airflow,sekikn/incubator-airflow,KL-WLCR/incubator-airflow,ty707/airflow,jwi078/incubator-airflow,cjqian/incubator-airflow,Acehaidrey/incubator-airflow,apache/incubator-airflow,jesusfcr/airflow,mrkm4ntr/incubator-airflow,vineet-rh/incubator-airflow,N3da/incubator-airflow,wolfier/incubator-airflow,biln/airflow,andyxhadji/incubator-airflow,MortalViews/incubator-airflow,btallman/incubator-airflow,ronfung/incubator-airflow,stverhae/incubator-airflow,d-lee/airflow,andrewmchen/incubator-airflow,jesusfcr/airflow,stverhae/incubator-airflow,ledsusop/airflow,mtagle/airflow,jbhsieh/incubator-airflow,yiqingj/airflow,ronfung/incubator-airflow,mtdewulf/incubator-airflow,cfei18/incubator-airflow,ronfung/incubator-airflow,yiqingj/airflow,adamhaney/airflow,vineet-rh/incubator-airflow,mrares/incubator-airflow,ProstoMaxim/incubator-airflow,malmiron/incubator-airflow,mistercrunch/airflow,jbhsieh/incubator-airflow,dgies/incubator-airflow,biln/airflow,owlabs/incubator-airflow,jwi078/incubator-airflow,preete-dixit-ck/incubator-airflow,asnir/airflow,janczak10/incubator-airflow,gilt/incubator-airflow,mattuuh7/incubator-airflow,caseyching/incubator-airflow,jlowin/airflow,apache/airflow,biln/airflow,cademarkegard/airflow,sergiohgz/incubator-airflow,gilt/incubator-airflow,wileeam/airflow,airbnb/airflow,AllisonWang/incubator-airflow,vijaysbhat/incubator-airflow,bolkedebruin/airflow,r39132/airflow,hgrif/incubator-airflow,akosel/incubator-airflow,jhsenjaliya/incubator-airflow,RealImpactAnalytics/airflow,Acehaidrey/incubator-airflow,MortalViews/incubator-airflow,yati-sagade/incubator-airflow,Twistbioscience/incubator-airflow,sekikn/incubator-airflow,mtagle/airflow,dhuang/incubator-airflow,mtagle/airflow,wolfier/incubator-airflow,MetrodataTeam/incubator-airflow,spektom/incubator-airflow,sdiazb/airflow,artwr/airflow,fenglu-g/incubator-airflow,CloverHealth/airflow,Tagar/incubator-airflow,jiwang576/incubator-airflow,btallman/incubator-airflow,wxiang7/airflow,DEVELByte/incubator-airflow,wooga/airflow,preete-dixit-ck/incubator-airflow,spektom/incubator-airflow,janczak10/incubator-airflow,rishibarve/incubator-airflow,bolkedebruin/airflow,vijaysbhat/incubator-airflow,Fokko/incubator-airflow,NielsZeilemaker/incubator-airflow,owlabs/incubator-airflow,nathanielvarona/airflow,wooga/airflow,DinoCow/airflow,cjqian/incubator-airflow,apache/airflow,yk5/incubator-airflow,cademarkegard/airflow,mattuuh7/incubator-airflow,saguziel/incubator-airflow,zodiac/incubator-airflow,juvoinc/airflow,gritlogic/incubator-airflow,aminghadersohi/airflow,OpringaoDoTurno/airflow,jgao54/airflow,jwi078/incubator-airflow,zack3241/incubator-airflow,dud225/incubator-airflow,d-lee/airflow,danielvdende/incubator-airflow,wndhydrnt/airflow,caseyching/incubator-airflow,gtoonstra/airflow,mattuuh7/incubator-airflow,wileeam/airflow,asnir/airflow,jlowin/airflow,forevernull/incubator-airflow,cjqian/incubator-airflow,zack3241/incubator-airflow,danielvdende/incubator-airflow,Acehaidrey/incubator-airflow,Twistbioscience/incubator-airflow,RealImpactAnalytics/airflow,ProstoMaxim/incubator-airflow,wooga/airflow,dhuang/incubator-airflow,Twistbioscience/incubator-airflow,zodiac/incubator-airflow,stverhae/incubator-airflow,apache/airflow,KL-WLCR/incubator-airflow,ty707/airflow,artwr/airflow,adamhaney/airflow,adrpar/incubator-airflow,andyxhadji/incubator-airflow,jesusfcr/airflow,fenglu-g/incubator-airflow,mylons/incubator-airflow,sdiazb/airflow,Acehaidrey/incubator-airflow,CloverHealth/airflow,gtoonstra/airflow,AllisonWang/incubator-airflow,yiqingj/airflow,cfei18/incubator-airflow,wolfier/incubator-airflow,vijaysbhat/incubator-airflow,mylons/incubator-airflow
1ac3bd74103a079d3c62bd2da53d9707bef26889
.travis.yml
.travis.yml
language: ruby sudo: false rvm: - 2.1.5 before_script: - export TZ=America/New_York - psql -c 'create database ddmodels2_test;' -U postgres - bundle exec rake db:create db:schema:load db:migrate cache: bundler addons: postgresql: '9.3' code_climate: repo_token: ebd431336a17c38b101c377f4300158ce02a4a6588502935120f25eb162a4d70
language: ruby sudo: false rvm: - 2.1.5 before_script: - export TZ=America/New_York - psql -c 'create database ddmodels2_test;' -U postgres - bundle exec rake db:create db:structure:load db:migrate cache: bundler addons: postgresql: '9.3' code_climate: repo_token: ebd431336a17c38b101c377f4300158ce02a4a6588502935120f25eb162a4d70
Set up Travis to load structure instead of schema.
Set up Travis to load structure instead of schema. Why: Travis CI errored out (see Build #80) because the database creation command specifies to run `db:schema:load`, but I deleted db/schema.rb in the last commit since we're using structure.sql instead. This change addresses the need by: * Changing the database creation command to `db:structure:load`
YAML
bsd-3-clause
MAPC/developmentdatabase,MAPC/developmentdatabase,MAPC/developmentdatabase,MAPC/developmentdatabase
2fa68b3d37f13256edaf3dd86cdbcd371d48243c
.travis.yml
.travis.yml
language: ruby rvm: - 2.1.1 - 2.1.0 - 2.0.0 - 1.9.3 - 1.9.2 - jruby-19mode - rbx # - ruby-head # seems unstable on travis at this time addons: code_climate: repo_token: d414084f17a07a6b2d7da72eaa35d92281554a4266ab8d6246fee1f6c0c161b6
language: ruby rvm: - 2.1.1 - 2.1.0 - 2.0.0 - 1.9.3 - 1.9.2 - jruby-19mode - rbx - rbx-2 addons: code_climate: repo_token: d414084f17a07a6b2d7da72eaa35d92281554a4266ab8d6246fee1f6c0c161b6
Add specific Rubinius versions to Travis
Add specific Rubinius versions to Travis
YAML
mit
rockarloz/grocer,RobotsAndPencils/grocer,dfried/grocer,utx-tex/grocer,grocer/grocer
fa19f748239aef6f2ce5e1724b7aad9e224dffda
.travis.yml
.travis.yml
sudo: false language: ruby rvm: - 2.0.0 - 2.1.10 - 2.2.7 - 2.3.4 - 2.4.1 - ruby-head before_install: - stty cols 160 - gem install bundler -v 1.15.4
sudo: false language: ruby rvm: - 2.0.0 - 2.1.10 - 2.2.8 - 2.3.5 - 2.4.2 - ruby-head before_install: - stty cols 160 - gem install bundler -v 1.15.4
Update Ruby version on Travis CI
Update Ruby version on Travis CI
YAML
mit
emsk/bundle_outdated_formatter,emsk/bundle_outdated_formatter
75d4d415cd440db21cd82d5c677121c24e098a50
.travis.yml
.travis.yml
language: node_js node_js: - 7 - 6 - 4 cache: yarn matrix: fast_finish: true notifications: email: false
language: node_js node_js: - 10 - 8 - 6 cache: yarn matrix: fast_finish: true notifications: email: false
Test newer versions of node against the package, and remove unsupported versions
Test newer versions of node against the package, and remove unsupported versions
YAML
mit
theplatapi/csv-loader
77b2ef1e1c5c037b148b78d6d43b3791c8b93c56
.travis.yml
.travis.yml
bundler_args: "--without production" rvm: - 1.8.7 - 1.9.2 - 1.9.3 - rbx-18mode - rbx-19mode - ree env: "RAILS_ENV=test"
bundler_args: "--without production" rvm: - 1.8.7 - 1.9.2 - 1.9.3 - rbx - ree env: "RAILS_ENV=test"
Revert "Test against Rubinius in 1.9 mode"
Revert "Test against Rubinius in 1.9 mode" This reverts commit fdb7f1d29fadb40308d9f052eed60bc174e579e2.
YAML
bsd-3-clause
codeforamerica/follow-all,jasnow/follow-all,codeforamerica/follow-all,jasnow/follow-all,BryanH/follow-all,BryanH/follow-all,BryanH/follow-all,codeforamerica/follow-all,jasnow/follow-all
fef80d4bc8cb0a9c6c6487f2b0f023b38f051f08
.travis.yml
.travis.yml
sudo: false language: php php: - 5.6 - 7.0 - 7.1 env: - LARAVEL_VERSION=5.5.* PHPUNIT_VERSION=~6.0 - LARAVEL_VERSION=5.4.* PHPUNIT_VERSION=~5.7 - LARAVEL_VERSION=5.3.* PHPUNIT_VERSION=~5.7 before_script: - composer self-update - composer require "laravel/framework:${LARAVEL_VERSION}" "phpunit/phpunit:${PHPUNIT_VERSION}" - mysql -e 'create database laravel;' script: vendor/bin/phpunit --coverage-clover coverage.xml after_success: - php vendor/bin/coveralls matrix: fast_finish: true exclude: - php: 5.6 env: LARAVEL_VERSION=5.5.* PHPUNIT_VERSION=~6.0
sudo: false language: php php: - 7.2 - 7.1 - 7.0 - 5.6 env: - LARAVEL_VERSION=5.6.* PHPUNIT_VERSION=~7.0 - LARAVEL_VERSION=5.5.* PHPUNIT_VERSION=~6.0 - LARAVEL_VERSION=5.4.* PHPUNIT_VERSION=~5.7 - LARAVEL_VERSION=5.3.* PHPUNIT_VERSION=~5.7 before_script: - composer self-update - composer require "laravel/framework:${LARAVEL_VERSION}" "phpunit/phpunit:${PHPUNIT_VERSION}" - mysql -e 'create database laravel;' script: vendor/bin/phpunit --coverage-clover coverage.xml after_success: - php vendor/bin/coveralls matrix: fast_finish: true exclude: - php: 5.6 env: LARAVEL_VERSION=5.5.* PHPUNIT_VERSION=~6.0 - php: 5.6 env: LARAVEL_VERSION=5.6.* PHPUNIT_VERSION=~7.0
Test PHP 7.2 and Laravel 5.6
Test PHP 7.2 and Laravel 5.6
YAML
mit
aimeos/aimeos-laravel
a2cbd4ba899753724033b9ccb13efc5ac044e029
.travis.yml
.travis.yml
os: - linux language: cpp compiler: - clang jdk: - oraclejdk8 before_install: - wget https://storage.googleapis.com/golang/go1.4.2.linux-amd64.tar.gz - tar zxf go1.4.2.linux-amd64.tar.gz - export PATH=${PATH}:${PWD}/go/bin - jdk_switcher use oraclejdk8 - wget http://dl.google.com/android/android-sdk_r23-linux.tgz - tar xvf android-sdk_r23-linux.tgz - export PATH=${PATH}:${PWD}/android-sdk-linux/tools:${PWD}/android-sdk-linux/platform-tools - ./download_bazel.sh ${PWD} - export PATH=${PATH}:${PWD}/bazel/output - ./setup_bazel.sh - echo "sdk.dir=${PWD}/android-sdk-linux" > local.properties - echo "y" | android update sdk --no-ui --filter platform-tools,tools script: - bazel test //shipshape/...
os: - linux language: cpp compiler: - clang jdk: - oraclejdk8 before_install: - sudo apt-get update -qq - sudo apt-get install -y realpath - wget https://storage.googleapis.com/golang/go1.4.2.linux-amd64.tar.gz - tar zxf go1.4.2.linux-amd64.tar.gz - export PATH=${PATH}:${PWD}/go/bin - jdk_switcher use oraclejdk8 - wget http://dl.google.com/android/android-sdk_r23-linux.tgz - tar xvf android-sdk_r23-linux.tgz - export PATH=${PATH}:${PWD}/android-sdk-linux/tools:${PWD}/android-sdk-linux/platform-tools - ./download_bazel.sh ${PWD} - export PATH=${PATH}:${PWD}/bazel/output - ./setup_bazel.sh - echo "sdk.dir=${PWD}/android-sdk-linux" > local.properties - echo "y" | android update sdk --no-ui --filter platform-tools,tools script: - bazel test //shipshape/...
Install realpath on the Travis worker; this is needed by setup_bazel.sh
Install realpath on the Travis worker; this is needed by setup_bazel.sh
YAML
apache-2.0
google/shipshape,google/shipshape,google/shipshape,google/shipshape,google/shipshape,google/shipshape,google/shipshape
2579fca84962c38a6787883daeee7dbd5f79371e
.travis.yml
.travis.yml
language: objective-c notifications: email: on_success: never on_failure: change before_script: - ./script/add-key - export JANKY_BRANCH=master - export JANKY_SHA1=`git rev-parse --short HEAD` script: - ./script/build # - ./script/run-ci-specs after_script: ./script/remove-key cache: directories: - build/node_modules
language: objective-c notifications: email: on_success: never on_failure: change before_script: - ./script/add-key - export JANKY_BRANCH=master - export JANKY_SHA1=`git rev-parse --short HEAD` script: - ./script/build # - ./script/run-ci-specs after_script: ./script/remove-key cache: directories: - build/node_modules - dist/atom-work-dir/node_modules sudo: false
Migrate to new Travis infrastructure
Migrate to new Travis infrastructure
YAML
apache-2.0
spark/particle-dev
38598ef10432beccf921206414e1d5a175ed3f40
.travis.yml
.travis.yml
language: node_js sudo: false node_js: - stable addons: firefox: latest before_script: - npm install web-component-tester - npm install bower - bower install script: xvfb-run wct
language: node_js sudo: false node_js: - stable addons: firefox: '42.0' before_script: - npm install web-component-tester - npm install bower - bower install script: xvfb-run wct
Fix Firefox version because Travis doesn't find any longer 'latest'
Fix Firefox version because Travis doesn't find any longer 'latest'
YAML
apache-2.0
hyyan/paper-collapse-item,Collaborne/paper-collapse-item,Collaborne/paper-collapse-item
03e291b65758d69da5e03fa85b83f8a43153f007
.travis.yml
.travis.yml
language: go go: - 1.5 - tip matrix: allow_failures: - go: tip before_install: - go get -u github.com/axw/gocov/gocov - go get -u github.com/mattn/goveralls - go get golang.org/x/tools/cmd/cover script: - make build - make test - ./converter --list-filters - make cover - goveralls -service=travis-ci -v -covermode=count -coverprofile=profile.out
language: go go: - 1.5 - 1.6 - 1.7 - 1.8 - tip matrix: allow_failures: - go: tip before_install: - go get -u github.com/axw/gocov/gocov - go get -u github.com/mattn/goveralls - go get golang.org/x/tools/cmd/cover script: - make build - make test - ./converter --list-filters - make cover - goveralls -service=travis-ci -v -covermode=count -coverprofile=profile.out
Test on more recent Golang versions
Test on more recent Golang versions
YAML
mit
moul/converter,moul/converter,moul/converter,moul/converter
69668a5ca65d1eaf6657f84483a0c43aee5fa5c4
.travis.yml
.travis.yml
language: php php: - '7.0' install: - composer install - npm install - node_modules/bower/bin/bower install - pip install numpy --user - pip install biom-format --user services: - postgresql addons: apt: packages: - python-h5py - python-numpy - python-scipy postgresql: "9.4" before_script: - cp test/php/.travis.config.php test/php/config.php script: - phpunit - npm test
language: php php: - '7.0' install: - composer install - npm install - node_modules/bower/bin/bower install services: - postgresql addons: apt: packages: - python-biom-format postgresql: "9.4" before_script: - cp test/php/.travis.config.php test/php/config.php script: - phpunit - npm test
Add python-biom-format to directly installed packages
Add python-biom-format to directly installed packages
YAML
mit
molbiodiv/fennec,molbiodiv/fennec,molbiodiv/fennec,molbiodiv/fennec,molbiodiv/fennec
da930c7ff909b3f89db4dd0164ae76b61211e621
.travis.yml
.travis.yml
language: java jdk: - oraclejdk7 - openjdk7 before_cache: - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock cache: directories: - $HOME/.gradle/caches/ - $HOME/.gradle/wrapper/ # https://github.com/travis-ci/travis-ci/issues/5227 sudo: false
language: java jdk: - oraclejdk8 - openjdk7 before_cache: - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock cache: directories: - $HOME/.gradle/caches/ - $HOME/.gradle/wrapper/ # https://github.com/travis-ci/travis-ci/issues/5227 sudo: false
Use oraclejdk8 instead of 7
Use oraclejdk8 instead of 7
YAML
apache-2.0
GoogleCloudPlatform/gradle-appengine-plugin
3adbcf65b246336653204c26e24e7c641e006923
.travis.yml
.travis.yml
language: php php: - 5.6 - 7.0 - 7.1 - hhvm - nightly matrix: allow_failures: - php: hhvm - php: nightly dist: trusty install: - composer install before_deploy: - tar czvf moonmoon-$TRAVIS_TAG.tgz --exclude ".git" * before_script: - bash -c "if [[ $TRAVIS_PHP_VERSION != hhvm ]]; then (php -S 127.0.0.1:8081 >& /dev/null &); fi" - bash -c "if [[ $TRAVIS_PHP_VERSION = hhvm ]]; then (hhvm -m server -p 8081 >& /dev/null &); fi" script: vendor/bin/phpunit # deploy: # provider: releases # skip_cleanup: true # file: moonmoon-$TRAVIS_TAG.tgz # api_key: # secure: CHANGE-YOUR-KEY # on: # tags: true
language: php php: - 5.6 - 7.0 - 7.1 - hhvm - nightly matrix: allow_failures: - php: hhvm - php: nightly dist: trusty install: - composer install before_deploy: - tar czvf moonmoon-$TRAVIS_TAG.tgz --exclude ".git" * before_script: - phpenv config-rm xdebug.ini - bash -c "if [[ $TRAVIS_PHP_VERSION != hhvm ]]; then (php -S 127.0.0.1:8081 >& /dev/null &); fi" - bash -c "if [[ $TRAVIS_PHP_VERSION = hhvm ]]; then (hhvm -m server -p 8081 >& /dev/null &); fi" script: vendor/bin/phpunit # deploy: # provider: releases # skip_cleanup: true # file: moonmoon-$TRAVIS_TAG.tgz # api_key: # secure: CHANGE-YOUR-KEY # on: # tags: true
Troubleshoot failures on some test targets
Troubleshoot failures on some test targets
YAML
bsd-3-clause
mauricesvay/moonmoon
80fc407aa5bf1e737a18ebc76b048f88b8b29c44
.travis.yml
.travis.yml
language: python python: "3.6" addons: apt: packages: - oracle-java9-set-default install: - pip install flake8 # pytest # add another testing frameworks later before_script: # stop the build if there are Python syntax errors or undefined names - flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide - flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics script: ./test/python/travisci.sh
language: python python: "3.6" install: - pip install flake8 # pytest # add another testing frameworks later before_script: # stop the build if there are Python syntax errors or undefined names - flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide - flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics script: ./test/python/travisci.sh
Remove install of JDK 9
Remove install of JDK 9
YAML
apache-2.0
ddebrunner/streamsx.topology,ddebrunner/streamsx.topology,IBMStreams/streamsx.topology,ddebrunner/streamsx.topology,ddebrunner/streamsx.topology,IBMStreams/streamsx.topology,ddebrunner/streamsx.topology,ddebrunner/streamsx.topology,IBMStreams/streamsx.topology,IBMStreams/streamsx.topology,ddebrunner/streamsx.topology,IBMStreams/streamsx.topology,IBMStreams/streamsx.topology,IBMStreams/streamsx.topology
45e8b658f6ecdd3bf0878a20c4ae9e2473e81b3f
.travis.yml
.travis.yml
language: python python: - "2.7" before_install: - sudo add-apt-repository ppa:git-core/ppa -y - sudo apt-get update - sudo apt-get install git install: "pip install -r requirements-test.txt" script: - export PATH="$PATH:$TRAVIS_BUILD_DIR/bin" # setup git - git --version - git config --global user.email "Brickstertwo@users.noreply.github.com" - git config --global user.name "Marcus Rosenow" # test - nosetests --with-coverage --cover-branches --cover-erase --cover-inclusive - coverage xml --include=bin/* --omit=*/__init__.py,*/utils/* -o coverage.xml # upload coverage report # secure environment variables aren't available for PRs from other repositories - if [[ ! -z "$CODACY_PROJECT_TOKEN" ]]; then python-codacy-coverage -r coverage.xml; fi
language: python python: - "2.7" before_install: - sudo add-apt-repository ppa:git-core/ppa -y - sudo apt-get update - sudo apt-get install git install: "pip install -r requirements-test.txt" script: - export PATH="$PATH:$TRAVIS_BUILD_DIR/bin" # setup git - git --version - git config --global user.email "Brickstertwo@users.noreply.github.com" - git config --global user.name "Marcus Rosenow" # test - nosetests --with-coverage --cover-branches --cover-erase --cover-inclusive - coverage report --include=bin/* --omit=*/__init__.py,*/utils/* - coverage xml --include=bin/* --omit=*/__init__.py,*/utils/* -o coverage.xml # upload coverage report # secure environment variables aren't available for PRs from other repositories - if [[ ! -z "$CODACY_PROJECT_TOKEN" ]]; then python-codacy-coverage -r coverage.xml; fi
Print coverage report to send to Codacy
Print coverage report to send to Codacy
YAML
mit
Brickstertwo/git-commands
8404e8aa0d8641fdadda99c40bbc5418a90be045
.travis.yml
.travis.yml
language: ruby rvm: - 2.0.0 - 2.1.0 - 2.2.0
language: ruby rvm: - 2.1.0 - 2.2.0
Remove Ruby 2.0 from Travis matrix
Remove Ruby 2.0 from Travis matrix
YAML
mit
springboardretail/nuorder
3cec7c66427e311dd1372461f1d3ea05abf5b517
.travis.yml
.travis.yml
language: bash env: - SHUNIT_COLOR='always' script: # Execute the unit tests. - ./test_runner addons: apt: packages: - ksh - mksh - zsh matrix: include: # Ubuntu (https://en.wikipedia.org/wiki/Ubuntu). - os: linux # Support Ubuntu Focal 20.04 through at least Apr 2025. dist: focal - os: linux # Support Ubuntu Bionic 18.04 through at least Apr 2023. dist: bionic - os: linux # Support Ubuntu Xenial 16.04 through at least Apr 2021. dist: xenial - os: linux # Support Ubuntu Trusty 14.04 through at least Apr 2019. dist: trusty # Other OSes. - os: freebsd - os: osx # Run the source through ShellCheck (http://www.shellcheck.net). - os: linux script: - shellcheck shunit2 *_test.sh - shellcheck -s sh shunit2_test_helpers branches: only: - master - 2.1.x # Tags, e.g. v.2.1.8. - /^v\d+\.\d+(\.\d+)?(-\S*)?$/
language: bash env: - SHUNIT_COLOR='always' script: # Execute the unit tests. - ./test_runner addons: apt: packages: - ksh - mksh - zsh matrix: include: ### Ubuntu (https://en.wikipedia.org/wiki/Ubuntu). - os: linux # Support Ubuntu Focal 20.04 through at least Apr 2025. dist: focal - os: linux # Support Ubuntu Bionic 18.04 through at least Apr 2023. dist: bionic - os: linux # Support Ubuntu Xenial 16.04 through at least Apr 2021. dist: xenial - os: linux # Support Ubuntu Trusty 14.04 through at least Apr 2019. dist: trusty ### Other OSes. # [2021-10-22 kward] Disable FreeBSD builds until they actually work. #- os: freebsd - os: osx ### Run the source through ShellCheck (http://www.shellcheck.net). - os: linux script: - shellcheck shunit2 *_test.sh - shellcheck -s sh shunit2_test_helpers branches: only: - master - 2.1.x # Tags, e.g. v.2.1.8. - /^v\d+\.\d+(\.\d+)?(-\S*)?$/
Disable FreeBSD builds until they actually work.
Disable FreeBSD builds until they actually work.
YAML
apache-2.0
kward/shunit2
cadf37691927f6e754ad0ba6a1811109e24a269d
.travis.yml
.travis.yml
language: java jdk: - oraclejdk7 script: "./gradlew pullRequestValidation -q"
language: java jdk: - oraclejdk7 script: - ./gradlew pullRequestValidation env: - TERM=dumb
Tweak Travis build definition to not output ANSI control codes.
Tweak Travis build definition to not output ANSI control codes.
YAML
apache-2.0
robinverduijn/gradle,blindpirate/gradle,lsmaira/gradle,lsmaira/gradle,gstevey/gradle,gstevey/gradle,robinverduijn/gradle,robinverduijn/gradle,blindpirate/gradle,blindpirate/gradle,gstevey/gradle,gradle/gradle,robinverduijn/gradle,gstevey/gradle,gradle/gradle,lsmaira/gradle,gradle/gradle,lsmaira/gradle,gradle/gradle,robinverduijn/gradle,gradle/gradle,blindpirate/gradle,gradle/gradle,lsmaira/gradle,lsmaira/gradle,gstevey/gradle,gradle/gradle,robinverduijn/gradle,gstevey/gradle,robinverduijn/gradle,lsmaira/gradle,blindpirate/gradle,blindpirate/gradle,gradle/gradle,lsmaira/gradle,blindpirate/gradle,lsmaira/gradle,blindpirate/gradle,blindpirate/gradle,gstevey/gradle,gstevey/gradle,gradle/gradle,robinverduijn/gradle,lsmaira/gradle,gradle/gradle,robinverduijn/gradle,blindpirate/gradle,gstevey/gradle,robinverduijn/gradle,robinverduijn/gradle
22a5257c4c2bd61cdfe39b0ec001155736168528
.travis.yml
.travis.yml
language: go go: - 1.3 services: - redis-server - elasticsearch before_install: - sudo apt-get update -qq - sudo apt-get install -qq libpcap-dev python-virtualenv install: - make deps - make script: make testlong notifications: email: - dev@packetbeat.com
language: go go: - 1.3 services: - redis-server - elasticsearch before_install: - sudo apt-get update -qq - sudo apt-get install -qq libpcap-dev python-virtualenv geoip-database install: - make deps - make script: make testlong notifications: email: - dev@packetbeat.com
Install geoip-database for new test
Install geoip-database for new test
YAML
mit
yapdns/yapdnsbeat,yapdns/yapdnsbeat
4b2e5c91372fc78eba782dc978c0e8f95e1f1e82
.travis.yml
.travis.yml
language: php php: - 5.5 - 5.6 - 7.0 - 7.1 env: - DB=MYSQL CORE_RELEASE=4 before_script: - git clone git://github.com/silverstripe/silverstripe-travis-support.git ~/travis-support - php ~/travis-support/travis_setup.php --source `pwd` --target ~/builds/ss - cd ~/builds/ss script: - vendor/bin/phpunit --coverage-clover segment-field/coverage.clover segment-field/tests after_success: - cd segment-field - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover coverage.clover
language: php php: - 5.6 - 7.0 - 7.1 env: - DB=MYSQL CORE_RELEASE=4 before_script: - git clone git://github.com/silverstripe/silverstripe-travis-support.git ~/travis-support - php ~/travis-support/travis_setup.php --source `pwd` --target ~/builds/ss - cd ~/builds/ss script: - vendor/bin/phpunit --coverage-clover segment-field/coverage.clover segment-field/tests after_success: - cd segment-field - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover coverage.clover
Remove PHP 5.5 from Travis builds
Remove PHP 5.5 from Travis builds
YAML
mit
assertchris/silverstripe-segment-field,assertchris/silverstripe-segment-field
41c056bf9e3c1ca95b3b2b7c86d08e89b06bb607
.travis.yml
.travis.yml
language: ruby sudo: false cache: bundler bundler_args: --without profile notifications: irc: "irc.freenode.org#axlsx" email: recipients: - digital.ipseity@gmail.com on_success: always rvm: - 1.9.2 - 1.9.3 - 2.0 - 2.1 - 2.2 - rbx - jruby-19mode - jruby-9.0.0.0 - ruby-head - jruby-head matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head
language: ruby sudo: false cache: bundler bundler_args: --without profile env: - JRUBY_OPTS="-Xcli.debug=true --debug" notifications: irc: "irc.freenode.org#axlsx" email: recipients: - digital.ipseity@gmail.com on_success: always rvm: - 1.9.2 - 1.9.3 - 2.0 - 2.1 - 2.2 - rbx - jruby-19mode - ruby-head - jruby-head matrix: allow_failures: - rvm: ruby-head - rvm: jruby-9.0.0.0 - rvm: jruby-head
Allow jruby-9.0.0.0 to fail for now and try to fix coverage for jruby
Allow jruby-9.0.0.0 to fail for now and try to fix coverage for jruby
YAML
mit
mromulus/axlsx,clarkcutler/axlsx,romuloceccon/axlsx,alexanderfrankel/axlsx,bradstewart/axlsx,VueOps/axlsx,Debiancc/axlsx,woto/axlsx,sh-ft/axlsx,raghavendra-prithvi/axlsx,legitscript/axlsx,pedrogarrett/axlsx,kappiah/axlsx,randym/axlsx
d35dea2718882a7a0e182e68d2dee1c618922ccd
.travis.yml
.travis.yml
language: node_js node_js: - "5" - "6" #- "node" sudo: false env: global: - RACKET_DIR=~/racket - RACKET_RUN_COVERAGE=6.10 matrix: - RACKET_VERSION=HEAD - RACKET_VERSION=RELEASE - RACKET_VERSION=6.10 - RACKET_VERSION=6.7 - RACKET_VERSION=6.4 matrix: allow_failures: - env: RACKET_VERSION=HEAD - env: RACKET_VERSION=RELEASE - node_js: "node" fast_finish: true before_install: - git clone https://github.com/greghendershott/travis-racket.git - cat travis-racket/install-racket.sh | bash - export PATH="${RACKET_DIR}/bin:${PATH}" install: - make setup - make setup-extra - raco pkg install --auto cover-codecov script: - make unit-test - make integration-test after_success: - if [ ${RACKET_RUN_COVERAGE} = ${RACKET_VERSION} ]; then COVERAGE_MODE=1 raco cover -bf codecov -d $TRAVIS_BUILD_DIR/coverage racketscript-compiler/racketscript/ tests/fixture.rkt; else echo "Skipping coverage."; fi after_script:
language: node_js node_js: # TODO: Once Node 8 LTS has been released, switch to it here. - "8.4" sudo: false env: global: - RACKET_DIR=~/racket - RACKET_RUN_COVERAGE=6.10 matrix: - RACKET_VERSION=HEAD - RACKET_VERSION=RELEASE - RACKET_VERSION=6.10 - RACKET_VERSION=6.7 - RACKET_VERSION=6.4 matrix: allow_failures: - env: RACKET_VERSION=HEAD - env: RACKET_VERSION=RELEASE - node_js: "node" fast_finish: true before_install: - git clone https://github.com/greghendershott/travis-racket.git - cat travis-racket/install-racket.sh | bash - export PATH="${RACKET_DIR}/bin:${PATH}" install: - make setup - make setup-extra - raco pkg install --auto cover-codecov script: - make unit-test - make integration-test after_success: - if [ ${RACKET_RUN_COVERAGE} = ${RACKET_VERSION} ]; then COVERAGE_MODE=1 raco cover -bf codecov -d $TRAVIS_BUILD_DIR/coverage racketscript-compiler/racketscript/ tests/fixture.rkt; else echo "Skipping coverage."; fi after_script:
Switch to only supporting Node 8
Switch to only supporting Node 8 Ahead of its becoming an LTS release a few months from now. Fixes #101
YAML
mit
vishesh/racketscript,vishesh/racketscript,vishesh/racketscript
d4f3778a7f9b13f2dec1b4e36f64bc71d9ac3b2c
.travis.yml
.travis.yml
language: python python: - "3.3" - "3.4" - "3.5" - "3.6" script: - pip install . - cd tests && python3 -m pytest
language: python python: - "3.4" - "3.5" - "3.6" script: - pip install . - cd tests && python3 -m pytest
Drop 3.3 support as it has reached end of life
Drop 3.3 support as it has reached end of life
YAML
lgpl-2.1
antidot/Pyckson
8e0b466bba8aff75890b39308ef1cb68f71ba2b9
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - "10" - "8" - "6"
sudo: false language: node_js node_js: - "12" - "10" - "8"
Include Node 12 in CI
Include Node 12 in CI
YAML
mit
silas/node-papi
c8d900d77c812dd16006b2e1f75bd04aa072f163
.travis.yml
.travis.yml
language: ruby rvm: - 2.1.2 - ruby-head - jruby-head - rbx-2 env: - COVERALLS=true matrix: allow_failures: - rvm: jruby-head
language: ruby rvm: - 2.1 - 2.2 - ruby-head - jruby-head - rbx-2 env: - COVERALLS=true matrix: allow_failures: - rvm: jruby-head
Build with new Ruby 2 versions
Build with new Ruby 2 versions
YAML
mit
saturnflyer/direction
479bdcae788dcfa92ec3cf699b2878190ba390fe
.travis.yml
.travis.yml
if: tag IS present OR type = pull_request OR (branch = master AND type = push) # we only CI the master, tags and PRs language: python # Main test jobs: The lowest and highest current Python versions. python: - 3.6 - 3.9 # List additional test configurations individually, instead of using # matrix expansion, to prevent an exponential growth of test jobs. matrix: include: # Python versions that are EOL, but we still support. # PY2.7 here should bring out any PY3.5 incompatibilities as well. - python: 2.7 arch: amd64 # pydot itself should be architecture-independent. Still, some # limited testing on other architectures to catch corner cases. - python: 2.7 arch: ppc64le - python: 3.9 arch: ppc64le addons: apt: packages: - graphviz install: - pip install -U pip setuptools - python setup.py sdist - pip install dist/pydot-*.tar.gz - pip install -r requirements.txt script: - cd test/ - python pydot_unittest.py # after_success: # - coveralls
if: tag IS present OR type = pull_request OR (branch = master AND type = push) # we only CI the master, tags and PRs language: python # Main test jobs: The lowest and highest current Python versions. python: - 3.6 - 3.9 # List additional test configurations individually, instead of using # matrix expansion, to prevent an exponential growth of test jobs. matrix: include: # Python versions that are EOL, but we still support. # PY2.7 here should bring out any PY3.5 incompatibilities as well. - python: 2.7 arch: amd64 # pydot itself should be architecture-independent. Still, some # limited testing on other architectures to catch corner cases. - python: 2.7 arch: ppc64le - python: 3.9 arch: ppc64le # Additional job to run linters that only need to run once. - name: black language: python python: 3.6 arch: amd64 addons: apt: packages: [] install: - pip install -e .[dev] script: - black --check --diff . addons: apt: packages: - graphviz install: - pip install -U pip setuptools - python setup.py sdist - pip install dist/pydot-*.tar.gz - pip install -r requirements.txt script: - cd test/ - python pydot_unittest.py
Switch to code formatter Black: Travis integration
Switch to code formatter Black: Travis integration This adds a new job for running `black` to our Travis CI continuous integration configuration. See the previous commits for more details on Black. If `black` finds a problem with the formatting, its job will be marked as "Failed". A diff of the required changes can be found on Travis CI by clicking on job `black` and scrolling down the Job log. You may also run `black` on your local machine to let it make the corrections for you. The new job is added to the default stage (`test`), meaning it will run alongside the regular test suite jobs. `black` is kept separate from the test suite, because it only needs to run once, not on multiple Python versions and architectures. A failure reported by `black` will not stop the test suite jobs from running, but will result in the build as a whole to be marked "Failed" in the end, even if the other jobs all passed. Using a separate Travis CI "stage" (named `lint`) was attempted, but considered inadequate: - Running stage `lint` *after* stage `test` meant long waiting for what was actually the fastest job. - Running stage `lint` *before* stage `test` meant a minor formatting issue could prevent the test suite from running at all. - Defining stage `lint` as an `allowed_failure` meant its outcome would become irrelevant for the outcome of the build as a whole, i.e. the build would pass even if `lint` had failed.
YAML
mit
pydot/pydot,erocarrera/pydot
90a79a4b0db4bf8b0939dd3d6873181b34e433ce
.travis.yml
.travis.yml
language: ruby rvm: - 2.1.0 - 2.0.0 - 1.9.3 - 1.8.7 - jruby-19mode - rbx-2.2.1 matrix: allow_failures: - rvm: jruby-19mode - rvm: rbx-2.2.1
language: ruby rvm: - 2.1.0 - 2.0.0 - 1.9.3 - 1.8.7 - jruby-19mode - rbx-2.2.1 matrix: allow_failures: - rvm: jruby-19mode - rvm: rbx-2.2.1 - rvm: 1.8.7
Mark 1.8.x as an allowed failure
Mark 1.8.x as an allowed failure
YAML
mit
ddfreyne/cri
aedd2513eb806e7aa3b305064881f4fc751eafcf
.travis.yml
.travis.yml
language: php sudo: false php: [5.3, 5.4, 5.5, 5.6, nightly, hhvm] matrix: fast_finish: true allow_failures: - php: nightly cache: directories: - $HOME/.composer/cache install: - composer install script: phpunit -v --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.3, 5.4, 5.5, 5.6, nightly, hhvm] matrix: fast_finish: true allow_failures: - php: nightly cache: directories: - $HOME/.composer/cache install: - composer install script: phpunit -v --coverage-clover=coverage.clover after_script: - if [ "nightly" != "$TRAVIS_PHP_VERSION" ]; then wget https://scrutinizer-ci.com/ocular.phar && php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
Disable the code coverage upload on PHP nightly
Disable the code coverage upload on PHP nightly PHP nightly does not have XDebug and so cannot upload code coverage. This check avoids notifying scrutinizer that there is no coverage in case the PHP nightly job finishes first.
YAML
mit
Chekote/Mink,talib570/Mink,Chekote/Mink,jhedstrom/Mink,minkphp/Mink,jordi12100/Mink,talib570/Mink,jordi12100/Mink,minkphp/Mink,jhedstrom/Mink
520680df6c73dbd7fbceafa969275aa8c25333cb
.travis.yml
.travis.yml
before_install: - yes | sudo add-apt-repository ppa:hansjorg/rust - yes | sudo add-apt-repository ppa:otto-kesselgulasch/gimp-standalone - sudo apt-get update env: PCRE_LIBS="-L/opt/gimp-standalone/lib/x86_64-linux-gnu -lpcre" LD_LIBRARY_PATH="/opt/gimp-standalone/lib/x86_64-linux-gnu" install: - sudo apt-get --download-only install libpcre3gsa - sudo dpkg -i --force-overwrite /var/cache/apt/archives/libpcre3gsa_1%3a8.31-2precise30~ppa_amd64.deb - sudo apt-get --download-only install libpcrecpp0gsa - sudo dpkg -i --force-overwrite /var/cache/apt/archives/libpcrecpp0gsa_1%3a8.31-2precise30~ppa_amd64.deb - sudo apt-get --download-only install libpcre3gsa-dev - sudo dpkg -i --force-overwrite /var/cache/apt/archives/libpcre3gsa-dev_1%3a8.31-2precise30~ppa_amd64.deb - sudo apt-get install rust-nightly script: - make install - make test
before_install: - yes | sudo add-apt-repository ppa:hansjorg/rust - yes | sudo add-apt-repository ppa:otto-kesselgulasch/gimp-standalone - sudo apt-get update env: PCRE_LIBS="-L/opt/gimp-standalone/lib/x86_64-linux-gnu -lpcre" LD_LIBRARY_PATH="/opt/gimp-standalone/lib/x86_64-linux-gnu" install: - sudo apt-get --download-only install libpcre3gsa - sudo dpkg -i --force-overwrite /var/cache/apt/archives/libpcre3gsa_*.deb - sudo apt-get --download-only install libpcrecpp0gsa - sudo dpkg -i --force-overwrite /var/cache/apt/archives/libpcrecpp0gsa_*.deb - sudo apt-get --download-only install libpcre3gsa-dev - sudo dpkg -i --force-overwrite /var/cache/apt/archives/libpcre3gsa-dev_*.deb - sudo apt-get install rust-nightly script: - make install - make test
Use asterisks/file globs to be less dependent on the exact .deb filenames
Use asterisks/file globs to be less dependent on the exact .deb filenames
YAML
apache-2.0
alexcrichton/rust-pcre,cadencemarseille/rust-pcre
fbbc9fa975ca6c0cc61fa565eb3f10a11186f288
.travis.yml
.travis.yml
language: go dist: xenial go: - "1.12.5" sudo: required install: - sudo pip install awscli - snap install hugo script: - cd "$TRAVIS_BUILD_DIR/src" - hugo before_deploy: - cd "$TRAVIS_BUILD_DIR/src/public" deploy: provider: s3 access_key_id: "$AWS_ACCESS_KEY_ID" secret_access_key: "$AWS_SECRET_ACCESS_KEY" bucket: "hoangpaul.com" skip_cleanup: true region: "ap-southeast-2" after_deploy: | aws configure set preview.cloudfront true && \ aws cloudfront create-invalidation --distribution-id "$AWS_CLOUDFRONT_ID" --paths "/index.html" "/*" notifications: email: on_failure: always
language: go dist: xenial go: - "1.12.5" sudo: required install: - sudo pip install awscli - sudo snap install hugo script: - cd "$TRAVIS_BUILD_DIR/src" - hugo before_deploy: - cd "$TRAVIS_BUILD_DIR/src/public" deploy: provider: s3 access_key_id: "$AWS_ACCESS_KEY_ID" secret_access_key: "$AWS_SECRET_ACCESS_KEY" bucket: "hoangpaul.com" skip_cleanup: true region: "ap-southeast-2" after_deploy: | aws configure set preview.cloudfront true && \ aws cloudfront create-invalidation --distribution-id "$AWS_CLOUDFRONT_ID" --paths "/index.html" "/*" notifications: email: on_failure: always
Add sudo to snap command
Add sudo to snap command
YAML
mit
HoangPaul/hoangpaul.com
b203f91dd3d29f1dd07bf036fb38a4a2857e1a8f
.travis.yml
.travis.yml
language: java jdk: - openjdk6 before_script: - git submodule update --init --recursive - ant jar - ant -f src/main/integrator.xml strict script: ant test integration-test env: CLASSPATH=src/main/lib/xercesImpl.jar:src/main/lib/xml-apis.jar:src/main/lib/resolver.jar:src/main/lib/commons-codec-1.4.jar:src/main/lib/icu4j.jar:src/main/lib/saxon/saxon9-dom.jar:src/main/lib/saxon/saxon9.jar:target/classes:src/main/:src/main/lib/:src/main/lib/dost.jar branches: only: - /^(develop|hotfix\/.*)$/
language: java jdk: - openjdk6 before_script: - git submodule update --init --recursive - ant jar - ant -f src/main/integrator.xml strict script: ant test integration-test env: CLASSPATH=src/main/lib/xercesImpl.jar:src/main/lib/xml-apis.jar:src/main/lib/resolver.jar:src/main/lib/commons-codec-1.4.jar:src/main/lib/icu4j.jar:src/main/lib/saxon/saxon9-dom.jar:src/main/lib/saxon/saxon9.jar:target/classes:src/main/:src/main/lib/:src/main/lib/dost.jar branches: only: - /^(v2\/)?(develop|hotfix\/.*)$/
Add 2.0 branches to Travis
Add 2.0 branches to Travis
YAML
apache-2.0
infotexture/dita-ot,jelovirt/muuntaja,queshaw/dita-ot,eerohele/dita-ot,robander/dita-ot,shaneataylor/dita-ot,Hasimir/dita-ot,eerohele/dita-ot,eerohele/dita-ot,jelovirt/muuntaja,Hasimir/dita-ot,zanyants/dita-ot,queshaw/dita-ot,drmacro/dita-ot,doctales/dita-ot,queshaw/dita-ot,shaneataylor/dita-ot,robander/dita-ot,zanyants/dita-ot,dita-ot/dita-ot,robander/dita-ot,eerohele/dita-ot,doctales/dita-ot,zanyants/dita-ot,drmacro/dita-ot,infotexture/dita-ot,dita-ot/dita-ot,shaneataylor/dita-ot,jelovirt/muuntaja,infotexture/dita-ot,Hasimir/dita-ot,dita-ot/dita-ot,infotexture/dita-ot,robander/dita-ot,dita-ot/dita-ot,doctales/dita-ot,drmacro/dita-ot,dita-ot/dita-ot,shaneataylor/dita-ot,infotexture/dita-ot,robander/dita-ot,doctales/dita-ot,shaneataylor/dita-ot,zanyants/dita-ot,Hasimir/dita-ot,queshaw/dita-ot,drmacro/dita-ot,drmacro/dita-ot