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
fa1ec3617abf07ec6e4317925251f2035e5aff2f
.circleci/config.yml
.circleci/config.yml
version: 2 jobs: build: docker: - image: circleci/openjdk:8-jdk working_directory: ~/repo steps: - checkout # Download and cache dependencies - restore_cache: keys: - v1-dependencies-{{ checksum "pom.xml" }} # fallback to using the latest cache if no exact match is found - v1-dependencies- - run: mvn dependency:go-offline - save_cache: paths: - ~/.m2 key: v1-dependencies-{{ checksum "pom.xml" }} - run: name: Build war file command: mvn package - persist_to_workspace: root: target paths: - courses.war deploy: machine: enabled: true working_directory: ~/repo steps: - add_ssh_keys: fingerprints: - "de:20:51:fb:e5:c6:eb:62:56:9a:f0:f3:43:01:09:94" - attach_workspace: at: target - run: ls -lah ~/repo/target/ - run: name: Deploy to server command: | scp -P $SSH_PORT $CIRCLE_WORKING_DIRECTORY/target/courses.war $SSH_USER@$SSH_HOST:/home/$SSH_USER workflows: version: 2 main_flow: jobs: - build - deploy: requires: - build
version: 2 jobs: build: docker: - image: circleci/openjdk:8-jdk working_directory: ~/repo steps: - checkout # Download and cache dependencies - restore_cache: keys: - v1-dependencies-{{ checksum "pom.xml" }} # fallback to using the latest cache if no exact match is found - v1-dependencies- - run: mvn dependency:go-offline - save_cache: paths: - ~/.m2 key: v1-dependencies-{{ checksum "pom.xml" }} - run: name: Build war file command: mvn package - persist_to_workspace: root: target paths: - courses.war deploy: machine: enabled: true working_directory: ~/repo steps: - add_ssh_keys: fingerprints: - "de:20:51:fb:e5:c6:eb:62:56:9a:f0:f3:43:01:09:94" - attach_workspace: at: target - run: ls -lah ~/repo/target/ - run: name: Deploy to server command: | scp -P $SSH_PORT ~/repo/target/courses.war $SSH_USER@$SSH_HOST:/home/$SSH_USER workflows: version: 2 main_flow: jobs: - build - deploy: requires: - build
Change directory to artifact in deploy stage
Change directory to artifact in deploy stage
YAML
mit
Vovas11/courses,Vovas11/courses,Vovas11/courses
1f8dab4bb8ce60b44dd3ee1c0a6fe4296677be32
.circleci/config.yml
.circleci/config.yml
version: 2 .build_template: &build_definition steps: - checkout - run: bundle install - run: bundle exec rake rubocop - run: bundle exec rspec -r rspec_junit_formatter --format RspecJunitFormatter -o $CIRCLE_TEST_REPORTS/rspec/junit.xml working_directory: ~/app jobs: build: <<: *build_definition docker: - image: ruby:2.5 build_ruby2_4: <<: *build_definition docker: - image: ruby:2.4 build_ruby2_3: <<: *build_definition docker: - image: ruby:2.3 workflows: version: 2 build_ruby_versions: jobs: - build - build_ruby2_4 - build_ruby2_3
version: 2 .build_template: &build_definition steps: - checkout - run: bundle install - run: bundle exec rake rubocop - run: bundle exec rspec -r rspec_junit_formatter --format RspecJunitFormatter -o $CIRCLE_TEST_REPORTS/rspec/junit.xml working_directory: ~/app jobs: build_ruby2_6rc: <<: *build_definition docker: - image: ruby:2.6-rc build_ruby2_5: <<: *build_definition docker: - image: ruby:2.5 build_ruby2_4: <<: *build_definition docker: - image: ruby:2.4 build_ruby2_3: <<: *build_definition docker: - image: ruby:2.3 workflows: version: 2 build_ruby_versions: jobs: - build_ruby2_6rc - build_ruby2_5 - build_ruby2_4 - build_ruby2_3
Add ruby 2.6rc to build jobs
feat: Add ruby 2.6rc to build jobs
YAML
mit
mtchavez/circleci,mtchavez/circleci
b7cd5193d5025039dba97b83dc84708a46b892c8
.circleci/config.yml
.circleci/config.yml
# PHP CircleCI 2.0 configuration file # # Check https://circleci.com/docs/2.0/language-php/ for more details # version: 2 jobs: build: docker: # Image for build runner. - image: docker:17.06 steps: - checkout - setup_remote_docker - run: name: Setup build runner command: | # Bash and PHP needed for test scripts. apk --no-cache add bash php5 # Needed to push built Docker images to registry. docker login -u $DOCKER_USER -p $DOCKER_PASS - run: name: Jessie image - Build, test, push command: | # --squash not allowed as Docker daemon doesn't have experimental features. docker build -t eugenesia/phpfarm:jessie -t eugenesia/phpfarm:latest -f Dockerfile-Jessie . ./test.sh jessie docker push eugenesia/phpfarm:jessie docker push eugenesia/phpfarm:latest - run: name: Wheezy image - Build, test, push command: | # --squash not allowed as Docker daemon doesn't have experimental features. docker build -t eugenesia/phpfarm:wheezy -t eugenesia/phpfarm:latest -f Dockerfile-Wheezy . ./test.sh wheezy docker push eugenesia/phpfarm:wheezy
# PHP CircleCI 2.0 configuration file # # Check https://circleci.com/docs/2.0/language-php/ for more details # version: 2 jobs: build: docker: # Image for build runner. - image: docker:17.06 steps: - checkout - setup_remote_docker - run: name: Setup build runner command: | # Bash and PHP needed for test scripts. apk --no-cache add bash php5 ln -s /usr/bin/php5 /usr/bin/php # Needed to push built Docker images to registry. docker login -u $DOCKER_USER -p $DOCKER_PASS - run: name: 'Jessie: build' command: | # --squash not allowed as Docker daemon doesn't have experimental features. docker build -t eugenesia/phpfarm:jessie -t eugenesia/phpfarm:latest -f Dockerfile-Jessie . - run: name: 'Jessie: test and push' command: | ./test.sh jessie docker push eugenesia/phpfarm:jessie docker push eugenesia/phpfarm:latest - run: name: 'Wheezy: build' command: | # --squash not allowed as Docker daemon doesn't have experimental features. docker build -t eugenesia/phpfarm:wheezy -t eugenesia/phpfarm:latest -f Dockerfile-Wheezy . - run: name: 'Wheezy: test and push' command: | ./test.sh wheezy docker push eugenesia/phpfarm:wheezy
Enable 'php' command in build runner
Enable 'php' command in build runner
YAML
mit
eugenesia/docker-phpfarm,eugenesia/docker-phpfarm
6cea5ad45d4ed2b9f90241b388619f0e66720666
packages/un/unit.yaml
packages/un/unit.yaml
homepage: http://github.com/cxfreeio/unit#readme changelog-type: '' hash: d56ae5e3a36574aeb98a0a4328c8e6a19b71f8870566bffaab0fa48edb6f0728 test-bench-deps: base: -any hspec: -any unit: -any maintainer: [email protected] synopsis: Aliases for (). changelog: '' basic-deps: base: ! '>=4.7 && <5' all-versions: - '0.1.0.0' author: Andrew Mohrland latest: '0.1.0.0' description-type: haddock description: Please see README.md license-name: BSD3
homepage: https://github.com/amohrland/haskell-unit changelog-type: '' hash: 602bbac68b9f77a568f63e2bcd9642232973afab10bbf4f7759eb5e62efa90ae test-bench-deps: base: -any hspec: -any unit: -any maintainer: [email protected] synopsis: Aliases for `()`. changelog: '' basic-deps: base: ! '>=4.7 && <5' all-versions: - '0.1.0.0' - '0.1.0.1' author: Andrew Mohrland latest: '0.1.0.1' description-type: haddock description: Aliases for `()`. license-name: BSD3
Update from Hackage at 2018-01-15T21:30:15Z
Update from Hackage at 2018-01-15T21:30:15Z
YAML
mit
commercialhaskell/all-cabal-metadata
6ad18d15b6342e5ca7e711b58d7a9d747c4f3b94
packages/pe/persistent-instances-iproute.yaml
packages/pe/persistent-instances-iproute.yaml
homepage: '' changelog-type: '' hash: 591b7ca825e8b61df1e2856de60fb9c3b8768294181e1f006ee1c4e0e6879c00 test-bench-deps: {} maintainer: [email protected] synopsis: Persistent instances for types in iproute changelog: '' basic-deps: bytestring: -any base: ! '>=4 && <5' persistent: -any iproute: -any all-versions: - '0.1.0.0' author: Lana Black latest: '0.1.0.0' description-type: haddock description: '' license-name: BSD3
homepage: '' changelog-type: '' hash: 9733762e01c978a43378196f2a35f831a53b61350a241a9d30ebcd3de48fc082 test-bench-deps: {} maintainer: [email protected] synopsis: Persistent instances for types in iproute changelog: '' basic-deps: bytestring: -any base: ! '>=4 && <5' persistent: -any iproute: -any all-versions: - '0.1.0.0' - '0.1.0.1' author: Lana Black latest: '0.1.0.1' description-type: haddock description: '' license-name: BSD3
Update from Hackage at 2015-07-23T15:39:12+0000
Update from Hackage at 2015-07-23T15:39:12+0000
YAML
mit
commercialhaskell/all-cabal-metadata
399bd83bb5c4369cf6f37ad41431c2d018c2abc4
app/config/security.yml
app/config/security.yml
security: encoders: FOS\UserBundle\Model\UserInterface: sha512 role_hierarchy: ROLE_ADMIN: ROLE_USER ROLE_SUPER_ADMIN: ROLE_ADMIN providers: fos_userbundle: id: fos_user.user_provider.username firewalls: main: pattern: ^/ form_login: provider: fos_userbundle csrf_provider: form.csrf_provider default_target_path: /loginsuccess logout: true anonymous: true access_control: - { path: ^/login$, role: IS_AUTHENTICATED_ANONYMOUSLY } - { path: ^/register, role: IS_AUTHENTICATED_ANONYMOUSLY } - { path: ^/resetting, role: IS_AUTHENTICATED_ANONYMOUSLY } - { path: ^/admin/, role: ROLE_ADMIN } - { path: ^/sales/, role: [ROLE_ADMIN, ROLE_SALES] }
security: encoders: FOS\UserBundle\Model\UserInterface: sha512 role_hierarchy: ROLE_ADMIN: ROLE_USER ROLE_SUPER_ADMIN: ROLE_ADMIN providers: fos_userbundle: id: fos_user.user_provider.username firewalls: main: pattern: ^/ form_login: provider: fos_userbundle csrf_provider: form.csrf_provider default_target_path: /loginsuccess logout: true anonymous: true access_control: - { path: ^/login$, role: IS_AUTHENTICATED_ANONYMOUSLY } - { path: ^/register, role: IS_AUTHENTICATED_ANONYMOUSLY } - { path: ^/resetting, role: IS_AUTHENTICATED_ANONYMOUSLY } - { path: ^/admin/, role: ROLE_ADMIN } - { path: ^/sales/site/, role: [ROLE_ADMIN] } - { path: ^/sales/messages/, role: [ROLE_ADMIN] } - { path: ^/sales/client/contact/, role: [ROLE_ADMIN] } - { path: ^/sales/, role: [ROLE_ADMIN, ROLE_SALES] }
Reduce permission to sales role
Reduce permission to sales role
YAML
mit
lexbar/desportADM,lexbar/desportADM,lexbar/desportADM
06bac3d7eff74defc9213db825833371c1cf6f9f
binder/environment.yml
binder/environment.yml
name: kotlin-jupyter dependencies: - kotlin-jupyter-kernel>=0.8.0.10 - python=3.6 channels: - jetbrains
name: kotlin-jupyter dependencies: - kotlin-jupyter-kernel>=0.8.1.83 - python=3.6 channels: - jetbrains
Update kernel version for binder
Update kernel version for binder
YAML
apache-2.0
ligee/kotlin-jupyter
5a43bc2bdd57372fe37d1ab1fd9a5753dba7423a
config/ctf.yml
config/ctf.yml
application: logo: JuiceShopCTF_Logo.png favicon: favicon_ctf.ico showVersionNumber: false showGitHubLinks: false localBackupEnabled: false welcomeBanner: showOnFirstStart: false challenges: showHints: false showCodeSnippets: solved safetyOverride: true hackingInstructor: isEnabled: false ctf: showFlagsInNotifications: true
application: logo: JuiceShopCTF_Logo.png favicon: favicon_ctf.ico showVersionNumber: false showGitHubLinks: false localBackupEnabled: false welcomeBanner: showOnFirstStart: false challenges: showHints: false safetyOverride: true hackingInstructor: isEnabled: false ctf: showFlagsInNotifications: true
Remove override of coding challenge visibility
Remove override of coding challenge visibility (as "solved" is now the default)
YAML
mit
bkimminich/juice-shop,bkimminich/juice-shop,bkimminich/juice-shop,bkimminich/juice-shop,bkimminich/juice-shop,bkimminich/juice-shop
07d8540838c1aab448a6de2599a3fd8a310c3635
config/sidekiq.yml
config/sidekiq.yml
--- :verbose: true :concurrency: 2 :logfile: ./log/sidekiq.json.log :queues: - content_store # Deprecated, will be removed once all jobs are worked - content_store_high - content_store_low - dependency_resolution - experiments - default
--- :verbose: true :logfile: ./log/sidekiq.json.log :queues: - content_store # Deprecated, will be removed once all jobs are worked - content_store_high - content_store_low - dependency_resolution - experiments - default
Use the default concurency level
Use the default concurency level
YAML
mit
alphagov/publishing-api,alphagov/publishing-api
6cc4487ce184700ef2144f43f7a4e30e56b45763
bitbucket-pipelines.yml
bitbucket-pipelines.yml
# This is a sample build configuration for Javascript. # Check our guides at https://confluence.atlassian.com/x/VYk8Lw for more examples. # Only use spaces to indent your .yml configuration. # ----- # You can specify a custom docker image from Docker Hub as your build environment. image: node-jdk-chrome-firefox pipelines: default: - step: script: # Modify the commands below to build your repository. - npm install - npm test
# This is a sample build configuration for Javascript. # Check our guides at https://confluence.atlassian.com/x/VYk8Lw for more examples. # Only use spaces to indent your .yml configuration. # ----- # You can specify a custom docker image from Docker Hub as your build environment. pipelines: default: - step: script: # Modify the commands below to build your repository. ubuntu 14.04 - nvm install v6.9.4 - nvm use v6.9.4 - npm install - npm test
Use nvm to switch to a more recent version of node
Use nvm to switch to a more recent version of node
YAML
mit
jonathanweiss/sk-progress-circle,jonathanweiss/sk-progress-circle
52914153d4c196ad8d5f3fc6947f6cbb55943726
circle.yml
circle.yml
machine: environment: PATH: $PATH:~/bin DISABLE_NOTIFIER: true PAGES_BRANCH: pages-test GULP_DESTINATION: $CIRCLE_ARTIFACTS BUNDLE_PATH: ~/.bundle post: - mkdir -p ~/bin node: version: "v6.1.0" ruby: version: "ruby-2.2.5" dependencies: override: - bash ./ci-install-hugo.sh - npm install -g gulp - npm install - gem install bundler - cd api && bundle install - git config user.name "barricade-machine" - git config user.email "[email protected]" cache_directories: - ~/bin test: override: - hugo -v - hugo -t barricade -d $CIRCLE_ARTIFACTS - cd api && bundle exec middleman build --clean --build_dir $CIRCLE_ARTIFACTS/api - gulp - cp CNAME $CIRCLE_ARTIFACTS/ deployment: master: branch: master commands: - git checkout $PAGES_BRANCH - rm -rf . - cp -r $CIRCLE_ARTIFACTS/* . - git add -A - git commit -am "Build $CIRCLE_BUILD_NUM for $CIRCLE_SHA1" - git push -f origin $PAGES_BRANCH
machine: environment: PATH: $PATH:~/bin DISABLE_NOTIFIER: true PAGES_BRANCH: pages-test GULP_DESTINATION: $CIRCLE_ARTIFACTS BUNDLE_PATH: ~/.bundle post: - mkdir -p ~/bin node: version: "v6.1.0" ruby: version: "ruby-2.2.5" dependencies: override: - bash ./ci-install-hugo.sh - npm install -g gulp - npm install - gem install bundler - cd api && bundle install - git config user.name "barricade-machine" - git config user.email "[email protected]" cache_directories: - ~/bin test: override: - hugo -v - hugo -t barricade -d $CIRCLE_ARTIFACTS - cd api && bundle exec middleman build --clean --build_dir $CIRCLE_ARTIFACTS/api - gulp - cp CNAME $CIRCLE_ARTIFACTS/ deployment: master: branch: master commands: - git checkout $PAGES_BRANCH - rm -rf . - cp -r $CIRCLE_ARTIFACTS/* . - git add -A - git commit -am "Build $CIRCLE_BUILD_NUM for $CIRCLE_SHA1" - git push -f origin $PAGES_BRANCH
Update email associated with commit user
Update email associated with commit user
YAML
mit
barricadeio/docs,barricadeio/docs,barricadeio/docs,barricadeio/docs
060356908b9def1c827a2edadb25dd313380e362
circle.yml
circle.yml
machine: environment: DATABASE_URL: mysql://ubuntu:@localhost:3306/circle_test CUSTOM_DATABASE_URL: mysql://ubuntu:@localhost:3306/circle_test dependencies: override: - pip install -U -r requirements/test.txt codecov test: #pre: # - mkdir fieldkeys # - keyczart create --location=fieldkeys --purpose=crypt # - keyczart addkey --location=fieldkeys --status=primary --size=256 override: - coverage run manage.py test post: - codecov --token=e40d6920-9464-459f-9bdf-5ff4f57fe6c5
machine: environment: DATABASE_URL: mysql://ubuntu:@localhost:3306/circle_test CUSTOM_DATABASE_URL: mysql://ubuntu:@localhost:3306/circle_test dependencies: override: - pip install -U -r requirements/test.txt codecov flake8 test: #pre: # - mkdir fieldkeys # - keyczart create --location=fieldkeys --purpose=crypt # - keyczart addkey --location=fieldkeys --status=primary --size=256 override: - flake8 tests/ - coverage run manage.py test post: - codecov --token=e40d6920-9464-459f-9bdf-5ff4f57fe6c5
Check for flake8 before running tests
Check for flake8 before running tests
YAML
mit
sqlviz/sqlviz,sqlviz/sqlviz,sqlviz/sqlviz,sqlviz/sqlviz,sqlviz/sqlviz,sqlviz/sqlviz,sqlviz/sqlviz,sqlviz/sqlviz,sqlviz/sqlviz,sqlviz/sqlviz,sqlviz/sqlviz,sqlviz/sqlviz,sqlviz/sqlviz,sqlviz/sqlviz,sqlviz/sqlviz,sqlviz/sqlviz,sqlviz/sqlviz
cc33bc235db1d897e85d990fb9c13a44d04dd0dd
circle.yml
circle.yml
machine: java: version: oraclejdk8 environment: SBT_VERSION: 0.13.9 dependencies: # Cache the resolution-cache and build streams to speed things up cache_directories: - "~/.sbt" - "target/resolution-cache" - "target/streams" - "project/target/resolution-cache" - "project/target/streams" test: override: - sbt coverage test post: - mkdir -p $CIRCLE_TEST_REPORTS/junit/ - find . -type f -regex ".*/target/test-reports/.*xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \; - sbt assemby # - sbt coverageAggregate # - sbt coveralls
machine: java: version: oraclejdk8 environment: SBT_VERSION: 0.13.9 dependencies: # Cache the resolution-cache and build streams to speed things up cache_directories: - "~/.sbt" - "target/resolution-cache" - "target/streams" - "project/target/resolution-cache" - "project/target/streams" test: override: - sbt coverage test post: - mkdir -p $CIRCLE_TEST_REPORTS/junit/ - find . -type f -regex ".*/target/test-reports/.*xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \; - sbt assembly # - sbt coverageAggregate # - sbt coveralls
Build a fat JAR to make deployment / running easier
Build a fat JAR to make deployment / running easier
YAML
mit
mthmulders/hyperion
d929dd29b94dc0baca78779158be71edfdc985d4
circle.yml
circle.yml
dependencies: pre: - createdb pigeon-backend-test - createuser pigeon-backend-test - echo '{:profiles/dev {:env {:connection-uri "jdbc:postgresql://localhost/pigeon-backend?user=pigeon-backend&password=pigeon-backend"}} :profiles/test {:env {:connection-uri "jdbc:postgresql://localhost/pigeon-backend-test?user=pigeon-backend-test&password=pigeon-backend-test"}}}' > profiles.clj test: override: - lein with-profile +test midje - lein with-profile +test cloverage post: - lein run -m pigeon-backend.coverage 86.03 95 deployment: production: tag: /release-.*/ heroku: appname: pigeon-backend staging: branch: master heroku: appname: pigeon-backend-staging
dependencies: pre: - createdb pigeon-backend-test - createuser pigeon-backend-test - echo '{:profiles/dev {:env {:connection-uri "jdbc:postgresql://localhost/pigeon-backend?user=pigeon-backend&password=pigeon-backend"}} :profiles/test {:env {:connection-uri "jdbc:postgresql://localhost/pigeon-backend-test?user=pigeon-backend-test&password=pigeon-backend-test"}}}' > profiles.clj test: override: - lein with-profile +test midje - lein with-profile +test cloverage post: - lein run -m pigeon-backend.coverage 86.03 95
Remove deployment process from CircleCI altogether.
Remove deployment process from CircleCI altogether.
YAML
mit
rulebased-chat/pigeon-backend,rulebased-chat/pigeon-backend
d5647e7f6b568d4fb9cdc83c4c6d50f89042a798
circle.yml
circle.yml
dependencies: pre: - pip install --upgrade setuptools - pip install --upgrade pip
machine: python: version: 3.5.2 dependencies: pre: - pip install --upgrade setuptools - pip install --upgrade pip
Update python version at Circle CI
Update python version at Circle CI
YAML
mit
mpkato/openliveq
d25174f9d3cc8289c11075b31ad5e661d655133a
circle.yml
circle.yml
dependencies: pre: - case $CIRCLE_NODE_INDEX in 0) nvm use 0.10 ;; 1) nvm use 0.12 ;; 2) nvm use 4.2 ;; 3) nvm use 5.5 ;; esac deployment: preview: branch: /.*/ commands: - ./preview.sh npm: tag: /release-.*/ owner: palantir commands: - ./publish.sh
general: artifacts: - docs - preview dependencies: pre: - case $CIRCLE_NODE_INDEX in 0) nvm use 0.10 ;; 1) nvm use 0.12 ;; 2) nvm use 4.2 ;; 3) nvm use 5.5 ;; esac deployment: preview: branch: /.*/ commands: - ./preview.sh npm: tag: /release-.*/ owner: palantir commands: - ./publish.sh
Add artifacts to make previews visible
Add artifacts to make previews visible
YAML
mit
palantir/svg-typewriter,palantir/svg-typewriter,palantir/svg-typewriter
673b912f9dc60d0e3df03c9af4ab81af98d3fbd8
packages/pa/path-extra.yaml
packages/pa/path-extra.yaml
homepage: '' changelog-type: '' hash: 053fbfe644b98a0620987eb507266d4348343acd78d8c9cae0fd16fff1a9f0b8 test-bench-deps: {} maintainer: [email protected] synopsis: Some extensions to Chris Done's path library, for use with urlpath and attoparsec-uri. changelog: '' basic-deps: path: -any base: ! '>=4.8 && <5' all-versions: - '0.0.3' - '0.0.4' - '0.0.5' - '0.0.6' - '0.1.0' author: Athan Clark latest: '0.1.0' description-type: markdown description: ! '# path-REST TODO: Write description here ## Installation TODO: Write installation instructions here ## Usage ### Creating `x` TODO: Write usage instructions here ### Combining `x` TODO: Write usage instructions here ### Consuming `x` TODO: Write usage instructions here ## How to run tests ``` cabal configure --enable-tests && cabal build && cabal test ``` ## Contributing TODO: Write contribution instructions here ' license-name: BSD3
homepage: https://github.com/athanclark/path-extra#readme changelog-type: '' hash: 8142903201421b862911d9f60a66b44e583f1b64af5e84c03dd66bcac4c99aa5 test-bench-deps: {} maintainer: [email protected] synopsis: Some extensions to Chris Done's path library, for use with urlpath and attoparsec-uri. changelog: '' basic-deps: path: -any base: ! '>=4.8 && <5' all-versions: - '0.0.3' - '0.0.4' - '0.0.5' - '0.0.6' - '0.1.0' - '0.1.1' author: Athan Clark latest: '0.1.1' description-type: markdown description: ! '# path-REST TODO: Write description here ## Installation TODO: Write installation instructions here ## Usage ### Creating `x` TODO: Write usage instructions here ### Combining `x` TODO: Write usage instructions here ### Consuming `x` TODO: Write usage instructions here ## How to run tests ``` cabal configure --enable-tests && cabal build && cabal test ``` ## Contributing TODO: Write contribution instructions here ' license-name: BSD3
Update from Hackage at 2018-04-11T04:21:39Z
Update from Hackage at 2018-04-11T04:21:39Z
YAML
mit
commercialhaskell/all-cabal-metadata
7c602280b98ee1d21b48eb929c150e3c2a487eb3
packages/pr/prim-array.yaml
packages/pr/prim-array.yaml
homepage: https://github.com/andrewthad/prim-array#readme changelog-type: '' hash: 3c01a4c53afe3c102d8895d8513b93eb913655466db6a8938791e1f7d59afdb1 test-bench-deps: {} maintainer: [email protected] synopsis: Primitive byte array with type variable changelog: '' basic-deps: base: ! '>=4.9 && <5' semigroups: -any ghc-prim: ! '>=0.5 && <0.6' primitive: ! '>=0.6 && <0.7' all-versions: - '0.1' - '0.2' - '0.2.1' - '0.2.2' author: Andrew Martin latest: '0.2.2' description-type: markdown description: ! '# prim-array ' license-name: BSD3
homepage: https://github.com/andrewthad/prim-array#readme changelog-type: '' hash: b8554a2b667292fbc5af37c24652018755e1c5e05393c68bae46b5081b2a1b88 test-bench-deps: {} maintainer: [email protected] synopsis: Primitive byte array with type variable changelog: '' basic-deps: base: ! '>=4.9 && <5' semigroups: -any ghc-prim: ! '>=0.5 && <0.6' primitive: ! '>=0.6 && <0.6.4' all-versions: - '0.1' - '0.2' - '0.2.1' - '0.2.2' author: Andrew Martin latest: '0.2.2' description-type: markdown description: ! '# prim-array ' license-name: BSD3
Update from Hackage at 2018-10-01T21:16:47Z
Update from Hackage at 2018-10-01T21:16:47Z
YAML
mit
commercialhaskell/all-cabal-metadata
d948fb041f2bde38348669651230afd139c8ecc8
packages/vu/vulkan-api.yaml
packages/vu/vulkan-api.yaml
homepage: https://github.com/achirkin/vulkan#readme changelog-type: '' hash: 83040b6c0613921786d8a62da8d0713f873529fbf7f748869b39160f306f2bff test-bench-deps: {} maintainer: [email protected] synopsis: Low-level low-overhead vulkan api bindings changelog: '' basic-deps: base: ! '>=4.9 && <5' all-versions: - '1.1.1.0' - '1.1.2.0' author: Artem Chirkin latest: '1.1.2.0' description-type: haddock description: ! 'Haskell bindings for vulkan api as described in vk.xml. You can find some simple examples at <https://github.com/achirkin/vulkan/tree/master/vulkan-examples vulkan-examples> page or a more complete triangle rendering program at <https://github.com/achirkin/vulkan/tree/master/vulkan-triangles vulkan-triangles> page. For further information, please refer to <https://github.com/achirkin/vulkan#readme README.md>.' license-name: BSD3
homepage: https://github.com/achirkin/vulkan#readme changelog-type: '' hash: ecbfaf4c8bd6ce1f5a2443d149d0d529fbd019fe8247aa17d4e67ee1c03873be test-bench-deps: {} maintainer: [email protected] synopsis: Low-level low-overhead vulkan api bindings changelog: '' basic-deps: base: ! '>=4.9 && <5' all-versions: - '1.1.1.0' - '1.1.2.0' - '1.1.2.1' author: Artem Chirkin latest: '1.1.2.1' description-type: haddock description: ! 'Haskell bindings for vulkan api as described in vk.xml. You can find some simple examples at <https://github.com/achirkin/vulkan/tree/master/vulkan-examples vulkan-examples> page or a more complete triangle rendering program at <https://github.com/achirkin/vulkan/tree/master/vulkan-triangles vulkan-triangles> page. For further information, please refer to <https://github.com/achirkin/vulkan#readme README.md>.' license-name: BSD3
Update from Hackage at 2018-05-08T13:33:53Z
Update from Hackage at 2018-05-08T13:33:53Z
YAML
mit
commercialhaskell/all-cabal-metadata
46694ae83061f6f13af4f8a15985e603afa2ca50
circle.yml
circle.yml
dependencies: pre: - sudo apt-get update; sudo apt-get install unzip openssl lua5.1 luarocks libev-dev -y; sudo luarocks install luasec OPENSSL_LIBDIR=/usr/lib/x86_64-linux-gnu; sudo luarocks install copas; sudo luarocks install moonscript; sudo luarocks install lua-ev; sudo luarocks install busted; sudo luarocks install ldoc test: override: - make
dependencies: pre: - sudo apt-get update - sudo apt-get install unzip openssl lua5.1 luarocks libev-dev -y - sudo luarocks install luasec OPENSSL_LIBDIR=/usr/lib/x86_64-linux-gnu - sudo luarocks install busted - sudo luarocks install ldoc test: override: - make deployment: production: branch: master commands: - git checkout gh-pages - ./generate.sh - git add . - git config user.email "[email protected]" - git config user.name "circleci" - git commit -am "Automatic Github Page generation" - git push
Update to deploy github pages
Update to deploy github pages
YAML
isc
Afforess/Factorio-Stdlib
5cae050a207e23a3bb69749fb1aae5ed98482fc8
circle.yml
circle.yml
dependencies: override: - bash ./get_selenium.sh - yes | lein upgrade cache_directories: - "libs/" - "target/" test: override: - bash test.sh post: - bash cp_artifacts.sh $CIRCLE_ARTIFACTS/
dependencies: override: - bash ./get_selenium.sh - yes | lein upgrade - lein deps cache_directories: - "libs/" - "target/" test: override: - bash test.sh post: - bash cp_artifacts.sh $CIRCLE_ARTIFACTS/
Make lein deps an explicit part of the build.
Make lein deps an explicit part of the build.
YAML
mit
cardforcoin/shale,mhluongo/shale,cardforcoin/shale,mhluongo/shale
914ea48778540925960e2c27f10489609aa425fc
circle.yml
circle.yml
machine: environment: PATH: $PATH:$HOME/glide/linux-amd64 dependencies: override: # Install the gruntwork-module-circleci-helpers and use it to configure the build environment and run tests. - curl -Ls https://raw.githubusercontent.com/gruntwork-io/gruntwork-installer/master/bootstrap-gruntwork-installer.sh | bash /dev/stdin --version 0.0.9 - gruntwork-install --module-name "gruntwork-module-circleci-helpers" --repo "https://github.com/gruntwork-io/module-ci" --tag "v0.0.6" - configure-environment-for-gruntwork-module --terraform-version NONE --packer-version NONE --go-src-path . cache_directories: - ~/glide test: override: - run-go-tests deployment: release: tag: /v.*/ commands: # If a new release is tagged in GitHub, build the binaries and upload them to GitHub. - build-go-binaries --app-name terragrunt --dest-path bin --ld-flags "-X main.VERSION=$CIRCLE_TAG" - upload-github-release-assets bin/*
machine: environment: PATH: $PATH:$HOME/glide/linux-amd64 dependencies: override: # Install the gruntwork-module-circleci-helpers and use it to configure the build environment and run tests. - curl -Ls https://raw.githubusercontent.com/gruntwork-io/gruntwork-installer/master/bootstrap-gruntwork-installer.sh | bash /dev/stdin --version 0.0.9 - gruntwork-install --module-name "gruntwork-module-circleci-helpers" --repo "https://github.com/gruntwork-io/module-ci" --tag "v0.0.10" - configure-environment-for-gruntwork-module --terraform-version NONE --packer-version NONE --go-src-path . cache_directories: - ~/glide test: override: - run-go-tests deployment: release: tag: /v.*/ commands: # If a new release is tagged in GitHub, build the binaries and upload them to GitHub. - build-go-binaries --app-name terragrunt --dest-path bin --ld-flags "-X main.VERSION=$CIRCLE_TAG" - upload-github-release-assets bin/*
Use latest module-ci, which fixes bugs in upload-github-release-assets
Use latest module-ci, which fixes bugs in upload-github-release-assets
YAML
mit
tamsky/terragrunt,gruntwork-io/terragrunt,tamsky/terragrunt,gruntwork-io/terragrunt
1403037be0f1ed0fc2f991c162ceb35f5bf3260a
circle.yml
circle.yml
machine: python: version: 2.7.10 dependencies: pre: - sudo apt-get update - sudo apt-get install osm2pgsql proj-data - pip install -U python-dateutil - pip install -r requirements.txt test: override: - ./scripts/setup_and_run_tests.sh
machine: python: version: 2.7.10 dependencies: pre: - sudo apt-get update - sudo apt-get install osm2pgsql proj-data - sudo sh -c 'echo -e "# WGS 84 / Pseudo-Mercator\n<900913> +proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs <>" >> /usr/share/proj/epsg"' - pip install -U python-dateutil - pip install -Ur requirements.txt test: override: - ./scripts/setup_and_run_tests.sh
Add 900913 to proj4 data files. Install requirements with update to pick up latest versions.
Add 900913 to proj4 data files. Install requirements with update to pick up latest versions.
YAML
mit
mapzen/vector-datasource,mapzen/vector-datasource,mapzen/vector-datasource
fadfc889e452c845e6f6c0a7de07571bdef9b330
circle.yml
circle.yml
machine: node: version: 4.2.1 dependencies: pre: - bash ./circleci/set-configs.sh test: override: - "true" deployment: production: branch: deploy commands: - npm run build - aws s3 sync build/ s3://cookbook-club-site/
machine: node: version: 8.9.3 dependencies: pre: - bash ./circleci/set-configs.sh test: override: - "true" deployment: production: branch: deploy commands: - npm run build - aws s3 sync build/ s3://cookbook-club-site/
Upgrade node version to 8.9.3
chore: Upgrade node version to 8.9.3
YAML
mit
nprestridge/cookbook-club,nprestridge/cookbook-club,nprestridge/cookbook-club
b43a6f64b88e446e10eb9515d9f4bcabc02cb48b
circle.yml
circle.yml
# Circle.yml for testing python3 with Ubuntu 14.04 machine: environment: REQUESTED_PYTHON_VER: 3.5.1 SRC_PREFIX_DIR: ${HOME}/src INSTALL_PREFIX_DIR: ${HOME}/opt PATH: ${INSTALL_PREFIX_DIR}/Python-3.5.1/bin:${PATH} dependencies: cache_directories: #- ${INSTALL_PREFIX_DIR} - ~/opt pre: # Install python3 from sources # REQUESTED_PYTHON_VER set in machine.environment - ./python_install.sh test: pre: - which python - python --version - which python2 - python2 --version - which python3 - python3 --version override: - python3 -c 'print("OK")'
# Circle.yml for testing python3 with Ubuntu 14.04 machine: pre: - rm .python-version python: version: 3.5.1 test: pre: - which python - python --version - which python2 - python2 --version - which python3 - python3 --version override: - python3 -c 'print("OK")'
Delete .python-version and request version 3.5.1
Delete .python-version and request version 3.5.1 This is the work-around suggested by Hirokuni Kim from CircleCI.
YAML
apache-2.0
winksaville/circleci-python3
a2f7acf4fff8efe7369a4b1c38e7fae5e327daa0
infra/dev/docker-compose.yml
infra/dev/docker-compose.yml
version: '2' services: postgres: image: postgres:9.4 container_name: postgres environment: - POSTGRES_DB=brp_dev volumes: - /opt/apps/postgres/data:/var/lib/postgresql/data restart: always redis: container_name: redis image: redis:3.0.5 restart: always logstash: image: logstash:5.3 volumes: - ../../logstash.conf:/config-dir/logstash.conf restart: always command: logstash -f /config-dir/logstash.conf ehb-service: image: 779047852880.dkr.ecr.us-east-1.amazonaws.com/dbhi/eig/ehb-service:latest container_name: ehb restart: always ports: - "32783:8000" app: image: 779047852880.dkr.ecr.us-east-1.amazonaws.com/dbhi/eig/biorepo-portal:dev container_name: brp env_file: ../../settings.env ports: - "32782:8000" external_links: - postgres - redis - ehb-service:ehb restart: always
version: '2' services: postgres: image: postgres:9.4 container_name: postgres environment: - POSTGRES_DB=brp_dev volumes: - /opt/apps/postgres/data:/var/lib/postgresql/data restart: always redis: container_name: redis image: redis:3.0.5 restart: always logstash: image: logstash:5.3 volumes: - ../../logstash.conf:/config-dir/logstash.conf restart: always command: logstash -f /config-dir/logstash.conf ehb-service: image: 779047852880.dkr.ecr.us-east-1.amazonaws.com/dbhi/eig/ehb-service:latest container_name: ehb restart: always ports: - "32783:8000" app: image: 779047852880.dkr.ecr.us-east-1.amazonaws.com/dbhi/eig/biorepo-portal:dev container_name: brp env_file: ../../settings.env ports: - "32782:8000" external_links: - postgres - redis - ehb-service:ehb - logstash restart: always
Add logstash to linked services
Add logstash to linked services
YAML
bsd-2-clause
chop-dbhi/biorepo-portal,chop-dbhi/biorepo-portal,chop-dbhi/biorepo-portal,chop-dbhi/biorepo-portal
eb902446a56f589368f3f4cd0900d36c55287a0a
config/application.yml
config/application.yml
# Add configuration values here, as shown below. # # pusher_app_id: "2954" # pusher_key: 7381a978f7dd7f9a1117 # pusher_secret: abdc3b896a0ffb85d373 # stripe_api_key: sk_test_2J0l093xOyW72XUYJHE4Dv2r # stripe_publishable_key: pk_test_ro9jV5SNwGb1yYlQfzG17LHK # # production: # stripe_api_key: sk_live_EeHnL644i6zo4Iyq4v1KdV9H # stripe_publishable_key: pk_live_9lcthxpSIHbGwmdO941O1XVU
# Add configuration values here, as shown below. # # pusher_app_id: "2954" # pusher_key: 7381a978f7dd7f9a1117 # pusher_secret: abdc3b896a0ffb85d373 # stripe_api_key: sk_test_2J0l093xOyW72XUYJHE4Dv2r # stripe_publishable_key: pk_test_ro9jV5SNwGb1yYlQfzG17LHK # # production: # stripe_api_key: sk_live_EeHnL644i6zo4Iyq4v1KdV9H # stripe_publishable_key: pk_live_9lcthxpSIHbGwmdO941O1XVU # Twitter API CONFIG_CONSUMER_KEY: "xrk3N03oWmW9CbjYKDNVZq5ah" CONFIG_CONSUMER_SECRET: "EpT8ogyFErA6vHPDU27aAtI0TipDr8T3BmJUJ79WqvBJULNbWn" CONFIG_ACCESS_TOKEN: "834841611615866880-fzwEhqhidPk8XLHZ3tAyp2KXklQw8xr" CONFIG_ACCESS_TOKEN_SECRET: "Hn8O5NrHE1Ggk1pVJ4kX2DqgJPeSX4egOz7mCDd0Teug0"
Update all Twitter access tokens with new ones that are now hidden.
Update all Twitter access tokens with new ones that are now hidden.
YAML
mit
michellebonat/bitparrot,michellebonat/bitparrot,michellebonat/bitparrot
61ce9102831ffda49a3871dc795778f4b69d6f6d
central-config/application.yml
central-config/application.yml
# =================================================================== # JHipster Sample Spring Cloud Config. # =================================================================== # Property used on app startup to check the config server status configserver: name: JHipster Sample Spring Cloud Config status: ${spring.cloud.config.uri}/${spring.cloud.config.label}/${spring.cloud.config.name}-${spring.cloud.config.profile}.yml/
# =================================================================== # JHipster Sample Spring Cloud Config. # =================================================================== # Property used on app startup to check the config server status configserver: name: JHipster Sample Spring Cloud Config status: ${spring.cloud.config.uri}/${spring.cloud.config.label}/${spring.cloud.config.name}-${spring.cloud.config.profile}.yml/ # Default JWT secret token (to be changed in production!) jhipster: security: rememberMe: key: my-secret-token-to-be-changed
Add a default JWT token (for testing only!)
Add a default JWT token (for testing only!)
YAML
apache-2.0
huiqiangyang/registry,huiqiangyang/registry,huiqiangyang/registry,huiqiangyang/registry,huiqiangyang/registry
bc81c79b21b623229a86dafb2e09eb6896d724cd
.travis.yml
.travis.yml
language: go go: - 1.7 - 1.8 - 1.9 before_install: - go get github.com/mattn/goveralls - go get golang.org/x/tools/cover script: - $HOME/gopath/bin/goveralls -service=travis-ci
language: go go: - 1.7 - 1.8 - 1.9 before_install: - go get github.com/mattn/goveralls - go get golang.org/x/tools/cover script: - $HOME/gopath/bin/goveralls -service=travis-ci -race -ignore main.go -show
Add -race -ignore main.go -show to goveralls
Add -race -ignore main.go -show to goveralls
YAML
mit
go-cmd/cmd,go-cmd/cmd
41fc392d19b8aaefd90610439b21527b936e6d93
.travis.yml
.travis.yml
language: ruby before_install: - gem update --system rvm: - "2.4" addons: apt: packages: - libqtwebkit-dev before_script: - cp config/database.travis.yml config/database.yml - cp config/site.example.yml config/site.yml - bundle exec rake db:migrate RAILS_ENV=test script: - bundle exec rubocop - xvfb-run bundle exec rake
language: ruby before_install: - gem update --system rvm: - "2.5" addons: apt: packages: - libqtwebkit-dev before_script: - cp config/database.travis.yml config/database.yml - cp config/site.example.yml config/site.yml - bundle exec rake db:migrate RAILS_ENV=test script: - bundle exec rubocop - xvfb-run bundle exec rake
Update ruby version for nokogiri 1.11
Update ruby version for nokogiri 1.11
YAML
agpl-3.0
openSUSE/travel-support-program,openSUSE/travel-support-program,openSUSE/travel-support-program
69524a8be574c24433d6e87967ec391a1f1476af
.travis.yml
.travis.yml
language: node_js node_js: - 0.10 before_script: - bower install - bower install after_success: - grunt coveralls deploy: provider: heroku api_key: secure: bNRd9ba3QLhBfSbxMBb1chOZ0EogBbiGTjDP+R44BdwXkZSlu/2w5Jg4w/VGzG82IfZLYHDjCFCMJflQQlmCSE0/IStq3P+y/yu/4DIVY5GNLfTE6EUxF66YMsv0HorG8OMg6KR/e2USbCI1bZpT/SwJ0XOYD1LCCkvreJr8U+A= strategy: git app: javiercejudo on: repo: javiercejudo/javiercejudo.com
language: node_js node_js: - 0.10 before_script: - bower install - bower install after_success: - grunt coveralls deploy: provider: heroku api_key: secure: bNRd9ba3QLhBfSbxMBb1chOZ0EogBbiGTjDP+R44BdwXkZSlu/2w5Jg4w/VGzG82IfZLYHDjCFCMJflQQlmCSE0/IStq3P+y/yu/4DIVY5GNLfTE6EUxF66YMsv0HorG8OMg6KR/e2USbCI1bZpT/SwJ0XOYD1LCCkvreJr8U+A= strategy: git app: master: javiercejudo staging: javiercejudo-staging on: repo: javiercejudo/javiercejudo.com
Deploy master/staging branches to different heroku apps
Deploy master/staging branches to different heroku apps
YAML
mit
javiercejudo/javiercejudo.com,javiercejudo/javiercejudo.com,javiercejudo/javiercejudo.com,javiercejudo/javiercejudo.com,javiercejudo/javiercejudo.com
528e3a1c2dbd4fe077ffca13a12d486c210dbaeb
.travis.yml
.travis.yml
language: python python: - "3.5" - "3.6" - "2.7" install: - pip install "tox<2.5" - pip install "coveralls>=1.0a" script: - tox -e $(echo py$TRAVIS_PYTHON_VERSION | tr -d . ) -- -a "\"--cov-report term-missing --cov critics\"" after_success: - coveralls deploy: provider: script script: make travis-build-docker on: branch: master
language: python python: - "3.5" - "3.6" install: - pip install "tox<2.5" - pip install "coveralls>=1.0a" script: - tox -e $(echo py$TRAVIS_PYTHON_VERSION | tr -d . ) -- -a "\"--cov-report term-missing --cov critics\"" after_success: - coveralls deploy: provider: script script: make travis-build-docker on: branch: master
Stop testing against python 2.7 on Travis to regain sanity
Stop testing against python 2.7 on Travis to regain sanity Do not bother with old openssl problems or whatever
YAML
bsd-3-clause
coagulant/critics
13fc0a26cac798364f7409e556646036f9ce0e5a
.travis.yml
.travis.yml
language: objective-c osx_image: xcode9.1 ## Setup # Travis initializes git submodules before `install` runs install: - gem install xcpretty --no-rdoc --no-ri --no-document --quiet script: - set -o pipefail && xcodebuild build test -workspace AnalyticsKit/AnalyticsKit.xcworkspace -scheme AnalyticsKit -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 7,OS=10.3.1' | xcpretty # Can't use xctool until this is fixed: https://github.com/travis-ci/travis-ci/issues/3986 #- xctool -project AnalyticsKit/AnalyticsKit.xcodeproj -scheme AnalyticsKit -sdk iphonesimulator #- xctool test -project AnalyticsKit/AnalyticsKit.xcodeproj -scheme AnalyticsKit -sdk iphonesimulator
language: objective-c osx_image: xcode10 ## Setup # Travis initializes git submodules before `install` runs install: - gem install xcpretty --no-rdoc --no-ri --no-document --quiet script: - set -o pipefail && xcodebuild build test -workspace AnalyticsKit/AnalyticsKit.xcworkspace -scheme AnalyticsKit -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 7,OS=10.3.1' | xcpretty # Can't use xctool until this is fixed: https://github.com/travis-ci/travis-ci/issues/3986 #- xctool -project AnalyticsKit/AnalyticsKit.xcodeproj -scheme AnalyticsKit -sdk iphonesimulator #- xctool test -project AnalyticsKit/AnalyticsKit.xcodeproj -scheme AnalyticsKit -sdk iphonesimulator
Update Travis config to Xcode 10
Update Travis config to Xcode 10
YAML
mit
twobitlabs/AnalyticsKit,twobitlabs/AnalyticsKit,twobitlabs/AnalyticsKit
70ff0381dc5a9cdd55ed194cc3cc673f6d56e46e
.travis.yml
.travis.yml
language: node_js node_js: - "0.11" - "0.10" notifications: email: false
language: node_js node_js: - node notifications: email: false
Test against the latest node
Test against the latest node
YAML
mit
smashwilson/hubot-markov
07aaace72f56baa90e8f34097937084d15b10302
.travis.yml
.travis.yml
env: global: - secure: LhiHXBKaxsubX45eMukb39IDKaM0mdMzE8Ow4DCnq/yFTZn22ju/H3nMawk0X74gCMXsrADErcBke/7+mHV5GgToqtKjr8RaZDwAmZtzDgdrvJlqy+w59WbvJKuPXYGN0dPiVSkt/fFGf7qGFjLj0DiGZHw05XmBSq+90Qn3Iqw= language: rust script: - cargo build -v - cargo test -v - cargo doc compiler: clang after_script: - mv target/doc . && curl http://www.rust-ci.org/artifacts/put?t=$RUSTCI_TOKEN | sh
env: global: - secure: LhiHXBKaxsubX45eMukb39IDKaM0mdMzE8Ow4DCnq/yFTZn22ju/H3nMawk0X74gCMXsrADErcBke/7+mHV5GgToqtKjr8RaZDwAmZtzDgdrvJlqy+w59WbvJKuPXYGN0dPiVSkt/fFGf7qGFjLj0DiGZHw05XmBSq+90Qn3Iqw= language: rust before_install: - yes | sudo add-apt-repository "deb http://llvm.org/apt/precise/ llvm-toolchain-precise-3.4 main" - yes | sudo add-apt-repository "deb http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu precise main" - sudo apt-get update install: - sudo apt-get install --force-yes libclang-3.4-dev script: - LIBCLANG_PATH=/usr/lib/llvm-3.4/lib cargo build --verbose - cargo test -v - cargo doc after_script: - mv target/doc . && curl http://www.rust-ci.org/artifacts/put?t=$RUSTCI_TOKEN | sh
Fix Travis: Add llvm to environment
Fix Travis: Add llvm to environment
YAML
apache-2.0
lisael/lmdb-rs,danburkert/lmdb-rs
aa6608dc2fd0a0562bad3668d2dd3017d3a2e922
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - '4' - '6' - '7'
sudo: false language: node_js node_js: - '9' - '8' - '6'
Update Travis CI node versions
Test(config): Update Travis CI node versions
YAML
unlicense
fvdm/nodejs-piwik
cbae5a64741267261a39703a6fce54f56be4efb6
.travis.yml
.travis.yml
language: python python: - "2.5" - "2.6" - "2.7" env: - DJANGO_VERSION=1.3.1 - DJANGO_VERSION=1.4 install: - pip install --use-mirrors -q pytest - pip install --use-mirrors -q django==$DJANGO_VERSION - python setup.py develop script: py.test
language: python python: - "2.5" - "2.6" - "2.7" env: - DJANGO_VERSION=1.3.1 - DJANGO_VERSION=1.4 install: - pip install --use-mirrors -q pytest - pip install --use-mirrors -q django==$DJANGO_VERSION - python setup.py develop script: DJANGO_SETTINGS_MODULE=tests.settings py.test
Set DJANGO_SETTINGS_MODULE for Travis-CI tests
Set DJANGO_SETTINGS_MODULE for Travis-CI tests
YAML
bsd-3-clause
bforchhammer/pytest-django,thedrow/pytest-django,ktosiek/pytest-django,hoh/pytest-django,pombredanne/pytest_django,davidszotten/pytest-django,tomviner/pytest-django,felixonmars/pytest-django,ojake/pytest-django,reincubate/pytest-django,aptivate/pytest-django,RonnyPfannschmidt/pytest_django,pelme/pytest-django
62b88141b8a5642fabc36e951ea0a15f41b95f2c
.travis.yml
.travis.yml
language: php sudo: false cache: directories: - $HOME/.composer/cache matrix: include: - php: 5.4 - php: 5.5 - php: 5.6 - php: 5.6 env: COMPOSER_FLAGS='--prefer-lowest --prefer-stable' - php: nightly allow_failures: - php: nightly fast_finish: true install: composer update $COMPOSER_FLAGS -n script: vendor/bin/phpunit
language: php sudo: false cache: directories: - $HOME/.composer/cache matrix: include: - php: 5.4 - php: 5.5 - php: 5.6 - php: 5.6 env: COMPOSER_FLAGS='--prefer-lowest --prefer-stable' - php: 7 - php: hhvm install: composer update $COMPOSER_FLAGS -n script: vendor/bin/phpunit
Add support of PHP7 and HHVM
Add support of PHP7 and HHVM
YAML
mit
FriendsOfSymfony/FOSMessage
c6351dd844aedb45fcd3ce428c7f1ae1c5053b97
.travis.yml
.travis.yml
language: python python: - "3.2" - "3.3" - "3.4" install: - pip install -r requirements.txt script: nosetests -s -v tests/
language: python python: - "3.3" - "3.4" install: - pip install -r requirements.txt script: nosetests -s -v tests/
Remove Python 3.2 support for now
Remove Python 3.2 support for now
YAML
apache-2.0
nathanIL/openews
d73fbe09aade570efce2aac1d6de1ab9aadb2212
.travis.yml
.travis.yml
sudo: required dist: trusty language: c++ compiler: - clang - gcc install: - sudo add-apt-repository -y ppa:beineri/opt-qt58-trusty - sudo apt-get update -qq - sudo apt-get install -qq cmake qt58base before_script: - export PATH=$PATH:/opt/qt57/bin script: - cmake -DBUILD_TESTS=on . - make - ctest
sudo: required dist: trusty language: c++ compiler: - clang - gcc install: - sudo add-apt-repository -y ppa:beineri/opt-qt58-trusty - sudo apt-get update -qq - sudo apt-get install -qq cmake qt58base before_script: - export PATH=$PATH:/opt/qt58/bin script: - cmake -DBUILD_TESTS=on . - make - ctest
Fix path to Qt 5.8 binaries for Travis-CI.
Fix path to Qt 5.8 binaries for Travis-CI.
YAML
mit
nitroshare/qhttpengine
f8b10170c7e146c7601fcc4d8b4125ab8ea4fec8
.travis.yml
.travis.yml
language: php sudo: false php: - 7.2 - nightly cache: directories: - $HOME/.composer/cache before_script: - if [[ $TRAVIS_PHP_VERSION = '7.1' ]]; then PHPUNIT_FLAGS="--coverage-clover ./clover.xml"; else PHPUNIT_FLAGS=""; fi - composer update --prefer-source --ignore-platform-reqs script: - ./vendor/bin/phpstan analyse - ./vendor/bin/phpunit $PHPUNIT_FLAGS - php examples/index.php > /dev/null - if php -i |grep -qE xdebug; then ./vendor/bin/infection; fi - ./vendor/bin/phpcs after_script: - wget https://scrutinizer-ci.com/ocular.phar - if [ -f clover.xml ]; then php ocular.phar code-coverage:upload --format=php-clover ./clover.xml; fi
language: php sudo: false php: - 7.2 - nightly cache: directories: - $HOME/.composer/cache before_script: - if [[ $TRAVIS_PHP_VERSION = '7.1' ]]; then PHPUNIT_FLAGS="--coverage-clover ./clover.xml"; else PHPUNIT_FLAGS=""; fi - composer update --prefer-source --ignore-platform-reqs script: - ./vendor/bin/phpstan analyse - ./vendor/bin/phpunit $PHPUNIT_FLAGS - php examples/index.php > /dev/null - if php -i |grep -qE xdebug; then ./vendor/bin/infection; fi - ./vendor/bin/phpcs after_script: - wget https://scrutinizer-ci.com/ocular.phar - if [ -f clover.xml ]; then php ocular.phar code-coverage:upload --format=php-clover ./clover.xml; fi matrix: allow_failures: - php: nightly
Allow failures on nightly (phpstan currently segfaults)
Allow failures on nightly (phpstan currently segfaults)
YAML
mit
Ocramius/StorageLessSession,psr7-sessions/storageless,Ocramius/PSR7Session
4c0f0c504286ee4ec5a0977fe50b2b204e3d26d6
.travis.yml
.travis.yml
language: java
language: java notifications: email: recipients: - [email protected] - [email protected] on_success: change on_failure: change
Add @statuswoe as a build status change receiver
Add @statuswoe as a build status change receiver
YAML
mit
markmckenna/robocalypse
5b56703e854e71656cea969e57c6c690dd9ff145
.travis.yml
.travis.yml
language: php php: - 7.0 - 7.1 - nightly install: composer install addons: code_climate: repo_token: 146c9c0df65c4144142d6065c580dcbed2c0130a2203adae38a4ce13e8afcfca
language: php php: - 7.0 - 7.1 - 7.2 - nightly install: composer install before_script: - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter - chmod +x ./cc-test-reporter - ./cc-test-reporter before-build script: - ./vendor/phpunit/phpunit/phpunit --coverage-clover clover.xml after_script: - ./cc-test-reporter after-build --coverage-input-type clover --id 146c9c0df65c4144142d6065c580dcbed2c0130a2203adae38a4ce13e8afcfca --exit-code $TRAVIS_TEST_RESULT
Add PHP 7.2 and update Code Climate
Add PHP 7.2 and update Code Climate
YAML
mit
mcordingley/LinearAlgebra
d60313e2f2ec739d3fbdb862599a0562514f6f9a
.travis.yml
.travis.yml
language: node_js node_js: - "6" - "4" - "0.12"
language: node_js node_js: - stable - "6" - "4" - "0.12"
Add latest node.js to Travis CI
Add latest node.js to Travis CI
YAML
mit
postcss/postcss-safe-parser
4004eee0ddbdab6edfdb1f169cb25795890d0b88
.travis.yml
.travis.yml
language: ruby rvm: - 2.0.0 - 2.1.10 - 2.2.10 - 2.3.8 - 2.4.10 - 2.5.8 - 2.6.6 - 2.7.1 - ruby-head before_install: - | if [[ `ruby -v` =~ 2\.[0-2]\.[0-9]+ ]]; then gem install rubygems-update -v '<3' && update_rubygems gem install bundler -v '<2' else gem update --system gem update bundler fi
language: ruby rvm: - 2.0.0 - 2.1.10 - 2.2.10 - 2.3.8 - 2.4.10 - 2.5.8 - 2.6.6 - 2.7.2 - 3.0.0 - ruby-head before_install: - | if [[ `ruby -v` =~ 2\.[0-2]\.[0-9]+ ]]; then gem install rubygems-update -v '<3' && update_rubygems gem install bundler -v '<2' else gem update --system gem update bundler fi
Update Ruby versions on Travis CI
Update Ruby versions on Travis CI
YAML
mit
emsk/bundle_outdated_formatter,emsk/bundle_outdated_formatter
98cf49df0c344a9646537dc9237a2abaaef2f181
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" install: "pip install --user ." script: pygraphc
language: python python: "2.7" install: "pip install ." script: pygraphc
Remove Python 2.6 test and remove --user parameter in pip
Remove Python 2.6 test and remove --user parameter in pip
YAML
mit
studiawan/pygraphc
e7691edcf22864283793fe47bed252582da665ff
.travis.yml
.travis.yml
language: php services: mongodb sudo: false php: - 5.6 - 7.0 before_script: - yes "" | pecl install mongodb - yes "" | pecl install APCu || true - echo 'apc.enable_cli = 1' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini - ./composer.phar install script: vendor/bin/phpunit
language: php services: mongodb sudo: false php: - 5.6 - 7.0 before_script: - yes "" | pecl install mongodb - yes "" | pecl install APCu || true - echo 'extension = apc.so' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini - echo 'apc.enabled = 1' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini - echo 'apc.enable_cli = 1' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini - ./composer.phar install script: vendor/bin/phpunit
Install APCu from the repository
Install APCu from the repository
YAML
mit
netom/mandango,netom/mandango,netom/mandango
40a6087818b4f252204f4ad02a347da682d36d52
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" - "0.12" before_install: "npm install -g npm && npm cache clean" script: "npm run-script travis"
language: node_js node_js: - "0.10" - "0.12" before_install: "sudo apt-get update && sudo apt-get install -y pngcrush && npm install -g npm && npm cache clean" script: "npm run-script travis"
Install pngcrush in the before_install hook.
Travis: Install pngcrush in the before_install hook.
YAML
bsd-3-clause
papandreou/node-pngcrush,Munter/node-pngcrush
3b5133fbb1470779f6b0a81545be1c91d992167a
.travis.yml
.travis.yml
language: go sudo: false go: - 1.1.2 - 1.2.2 - 1.3.3 - 1.4.2 - 1.5.1 - tip matrix: allow_failures: - go: tip script: - go vet ./... - go test -v ./...
language: go sudo: false go: - 1.1.2 - 1.2.2 - 1.3.3 - 1.4.2 - 1.5.1 - tip matrix: allow_failures: - go: tip before_script: - go get github.com/meatballhat/gfmxr/... script: - go vet ./... - go test -v ./... - gfmxr
Add gfmxr integration for checking examples in README.md
Add gfmxr integration for checking examples in README.md now that we support the legacy Action func signature.
YAML
mit
cmars/tools,pjvds/cli,codegangsta/cli,ykanda/cli,murdinc/cli,minio/cli,cmars/tools,cmars/tools,codegangsta/cli,murdinc/cli,minio/cli,pjvds/cli,phinnaeus/cli,cmars/tools,urfave/cli,urfave/cli,phinnaeus/cli,ykanda/cli,ykanda/cli,phinnaeus/cli,pjvds/cli,murdinc/cli,minio/cli
7348b1842bf4dd46487e40cee3caf828a8d62610
.travis.yml
.travis.yml
script: "gem install foodcritic -v 1.7.0 && foodcritic -f any ." rvm: - 1.9.3
script: "gem install foodcritic -v 2.0.0 && foodcritic -f any ." rvm: - 1.9.3
Update to the latest TravisCI
Update to the latest TravisCI
YAML
apache-2.0
realityforge/chef-hosts,realityforge/chef-hosts
c28eda126adfaa70039c3dc9c765f791118fe6ea
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - 'stable' - '0.12' - '0.10' before_script: - npm install -g gulp - gulp lint after_success: npm run coveralls # whitelist branches: only: - master notifications: email: - [email protected]
sudo: false language: node_js node_js: - '8' - '6' - '4' before_script: - npm install -g gulp - gulp lint after_success: npm run coveralls # whitelist branches: only: - master notifications: email: - [email protected]
Update node versions for Travis CI.
Update node versions for Travis CI.
YAML
mit
jonkemp/href-content
0369816094faca3d30ee03bfe74878c07df68048
.travis.yml
.travis.yml
language: ruby rvm: - 2.2.7 - 2.3.4 - 2.4.1 gemfile: - gemfiles/rails_4.1.gemfile - gemfiles/rails_4.2.gemfile - gemfiles/rails_5.0.gemfile - gemfiles/rails_5.1.gemfile matrix: exclude: - rvm: 2.4.1 gemfile: gemfiles/rails_4.1.gemfile before_install: - gem update bundler before_script: - RAILS_ENV=test bundle exec rake app:db:create app:db:migrate script: - bundle exec rspec after_script: - RAILS_ENV=test bundle exec rake app:db:drop
language: ruby cache: bundler: true rvm: - 2.2.7 - 2.3.4 - 2.4.1 gemfile: - gemfiles/rails_4.1.gemfile - gemfiles/rails_4.2.gemfile - gemfiles/rails_5.0.gemfile - gemfiles/rails_5.1.gemfile matrix: exclude: - rvm: 2.4.1 gemfile: gemfiles/rails_4.1.gemfile before_install: - gem update bundler before_script: - RAILS_ENV=test bundle exec rake app:db:create app:db:migrate script: - bundle exec rspec after_script: - RAILS_ENV=test bundle exec rake app:db:drop
Enable gem caching in CI build
Enable gem caching in CI build
YAML
mit
G5/devise_g5_authenticatable,G5/devise_g5_authenticatable,G5/devise_g5_authenticatable
837d465fa57c266df95258dcbcd8e7a44332f5fe
.travis.yml
.travis.yml
dist: xenial sudo: required # Not technically required but suppresses 'Ruby' in Job status message. language: java os: - linux - osx before_install: - | if [ "${TRAVIS_OS_NAME}" = "osx" ]; then OS=darwin else sysctl kernel.unprivileged_userns_clone=1 OS=linux fi BAZEL=$(cat ".bazelversion") wget -O install.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL}/bazel-${BAZEL}-installer-${OS}-x86_64.sh" chmod +x install.sh ./install.sh --user rm -f install.sh before_script: - echo "startup --output_base=$HOME/.cache/bazel" >> .bazelrc # Avoid progress indicators that can blow out log which makes using WEB UI difficult - echo "common --noshow_progress" >> .bazelrc - echo "common --noshow_loading_progress" >> .bazelrc # This is so we understand failures better - echo "build --verbose_failures" >> .bazelrc script: ./bazel_build_test.sh notifications: email: false
dist: xenial sudo: required language: python3 os: - linux - osx before_install: - | if [ "${TRAVIS_OS_NAME}" = "osx" ]; then OS=darwin else sysctl kernel.unprivileged_userns_clone=1 OS=linux fi BAZELISK_VERSION=v1.5.0 if [ ! -d "${HOME}/bin" ]; then mkdir "${HOME}/bin" fi wget -O "${HOME}/bin/bazel" "https://github.com/bazelbuild/bazelisk/releases/download/${BAZELISK_VERSION}/bazelisk-${OS}-amd64" chmod +x "${HOME}/bin/bazel" before_script: - echo "startup --output_base=$HOME/.cache/bazel" >> .bazelrc # Avoid progress indicators that can blow out log which makes using WEB UI difficult - echo "common --noshow_progress" >> .bazelrc - echo "common --noshow_loading_progress" >> .bazelrc # This is so we understand failures better - echo "build --verbose_failures" >> .bazelrc script: ./bazel_build_test.sh notifications: email: false
Use Bazelisk to select and download Bazel version
Use Bazelisk to select and download Bazel version Closes https://github.com/google/j2cl/pull/69 PiperOrigin-RevId: 318006301
YAML
apache-2.0
google/j2cl,google/j2cl,google/j2cl,google/j2cl,google/j2cl
453d223ddb6adb5376cd69903732e8185d83c99d
.travis.yml
.travis.yml
language: java notifications: # Email notifications are disabled to not annoy anybody. # See http://about.travis-ci.org/docs/user/build-configuration/ to learn more # about configuring notification recipients and more. email: false
language: java script: mvn -Pitest -DargLine="-Dcom.basho.riak.search=true -Dcom.basho.riak.2i=true" clean verify notifications: # Email notifications are disabled to not annoy anybody. # See http://about.travis-ci.org/docs/user/build-configuration/ to learn more # about configuring notification recipients and more. webhooks: http://basho-engbot.herokuapp.com/travis?key=a8f477c8cdaabc8118d2a650281ff4a71eff875f email: false
Enable chat bot hook and integration tests on Travis.
Enable chat bot hook and integration tests on Travis.
YAML
apache-2.0
basho/riak-java-client,basho/riak-java-client
4f8b37b824d8cb90b4b73920b61d6c6899ebd212
.travis.yml
.travis.yml
language: go go: - tip - "1.13" - "1.12" - "1.11" - "1.10" before_install: - go get golang.org/x/tools/cmd/cover script: - go test -coverprofile=coverage.txt -covermode=atomic ./ ./completion/ ./option ./help after_success: - bash <(curl -s https://codecov.io/bash)
language: go go: - tip - "1.14" - "1.13" - "1.12" - "1.11" - "1.10" before_install: - go get golang.org/x/tools/cmd/cover script: - go test -coverprofile=coverage.txt -covermode=atomic ./ ./completion/ ./option ./help after_success: - bash <(curl -s https://codecov.io/bash)
Add Go 1.14 to test matrix
Add Go 1.14 to test matrix
YAML
mpl-2.0
DavidGamba/go-getoptions
6c02f6601e9c4ece0c1b237b27fff7b183610e67
.travis.yml
.travis.yml
language: python python: 3.5 env: - TOX_ENV=py34 - TOX_ENV=py35 - TOX_ENV=docs install: - pip install tox coveralls script: - tox -e $TOX_ENV after_success: - coveralls notifications: slack: secure: XZ9C7sBBWsCBKWZY2nDBkaCaePqbb3ham+FLtXTiaRCq+rfl5Q3Effm91YvKmT2i/7rqXjgDb8moVA9NEBF1SLsZlMMVdvY7BIDwf21m26Nm/a3Z0VdTxexAUp4N6O6SqRVua+XcDuYvEWBpDAksiLlbHlI+Z1aQiEHvQx0UqW0=
language: python matrix: include: - python: 3.4 env: TOXENV=py34 - python: 3.5 env: TOXENV=py35 - env: TOXENV=docs install: pip install tox coveralls script: tox -e $TOX_ENV after_success: coveralls notifications: slack: secure: XZ9C7sBBWsCBKWZY2nDBkaCaePqbb3ham+FLtXTiaRCq+rfl5Q3Effm91YvKmT2i/7rqXjgDb8moVA9NEBF1SLsZlMMVdvY7BIDwf21m26Nm/a3Z0VdTxexAUp4N6O6SqRVua+XcDuYvEWBpDAksiLlbHlI+Z1aQiEHvQx0UqW0=
Fix test matrix (how long has py34 been using 3.5 >.<)
Fix test matrix (how long has py34 been using 3.5 >.<)
YAML
mit
numberoverzero/bloop,numberoverzero/bloop
a59f2d5f1873289935ad43eab6dbf2b397aae199
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - "4.1" - "4.0" - "0.12" - "0.11" - "0.10" matrix: allow_failures: - node_js: "0.11"
sudo: false language: node_js node_js: - "4.1" - "4.0" - "0.12" - "0.11" - "0.10" matrix: allow_failures: - node_js: "0.11" compiler: clang-3.6 env: - CXX=clang-3.6 addons: apt: sources: - llvm-toolchain-precise-3.6 - ubuntu-toolchain-r-test packages: - clang-3.6 - g++-4.8
Update Travis config to include compiler info
[tools] Update Travis config to include compiler info See https://docs.travis-ci.com/user/languages/javascript-with-nodejs#Node.js-v4-(or-io.js-v3)-compiler-requirements
YAML
mit
tonyganch/gonzales-pe,tonyganch/gonzales-pe
1729a4e4b75b95dcb77537070f2f8f2df83c6734
.travis.yml
.travis.yml
language: node_js node_js: - "iojs" - "0.12" - "0.11" - "0.10" - "0.8" matrix: allow_failures: - node_js: "0.11" before_install: - "npm update -g npm" - "( pushd $(dirname `which npm`)/../lib/; npm update npm; popd; )" - "npm install -g grunt-cli"
language: node_js node_js: - "iojs" - "0.12" - "0.11" - "0.10" - "0.8" matrix: allow_failures: - node_js: "0.11" - node_js: "0.8" before_install: - "npm install -g grunt-cli"
Remove NPM self-updating NPM from Travis CI config but allow Node.js 0.8.x runs to fail
Remove NPM self-updating NPM from Travis CI config but allow Node.js 0.8.x runs to fail
YAML
mit
JamesMGreene/node-partty,JamesMGreene/node-partty,JamesMGreene/node-partty
96e1cadfafd0900e53104678e928aaeceb1d50b9
.travis.yml
.travis.yml
language: node_js node_js: - "6" before_install: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start - sleep 3 script: - yarn test cache: yarn
language: node_js node_js: - "10" - "8" before_install: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start - sleep 3 - npm install -g npm@latest - npm install -g greenkeeper-lockfile install: npm install before_script: greenkeeper-lockfile-update after_script: greenkeeper-lockfile-upload script: - npm test
Add greenkeeper support with lockfile tracking
Add greenkeeper support with lockfile tracking
YAML
mit
z-kit/z-checkbox
c7c62e9ffe5fe529e0e54c873381254bca872acc
.travis.yml
.travis.yml
# Config file for automatic testing at travis-ci.org language: python python: - "3.3" - "2.7" install: pip install -r requirements/dev.txt script: py.test tests
# Config file for automatic testing at travis-ci.org language: python python: - "3.3" - "2.7" install: pip install -r requirements/dev.txt script: py.test tests addons: postgresql: "9.3" env: global: - SQLALCHEMY_DATABASE_URI=postgres://postgres@localhost/clearstate
Add env variable for Travis test
Add env variable for Travis test
YAML
bsd-3-clause
sharoonthomas/clearstate,sharoonthomas/clearstate,sharoonthomas/clearstate
b04d935be598ad827f3afaffcce0ef2141963615
.travis.yml
.travis.yml
sudo: false language: java after_success: - if [[ "${TRAVIS_JDK_VERSION}" == "oraclejdk8" ]]; then mvn -B jacoco:report coveralls:report; fi jdk: - openjdk7 - oraclejdk7 - oraclejdk8
sudo: false language: java after_success: - if [[ "${TRAVIS_JDK_VERSION}" == "oraclejdk8" ]]; then mvn -B jacoco:report coveralls:report; fi jdk: - openjdk7 - oraclejdk8
Remove Oracle JDK7 from Travis CI build
Remove Oracle JDK7 from Travis CI build
YAML
apache-2.0
joschi/JadConfig
2381b789ab4860f9ed34d6cd6e302de449d35471
examples/event-interceptors/github-validate.yaml
examples/event-interceptors/github-validate.yaml
# Copyright 2019 The Tekton Authors # # 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 # # https://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. apiVersion: apps/v1 kind: Deployment metadata: name: gh-validate namespace: default spec: replicas: 1 selector: matchLabels: app: gh-validate template: metadata: labels: app: gh-validate spec: serviceAccountName: default containers: - name: validate image: github.com/tektoncd/triggers/examples/event-interceptors/gh-validate env: - name: GITHUB_SECRET_TOKEN valueFrom: secretKeyRef: name: github-secret key: secret-token --- apiVersion: v1 kind: Service metadata: name: gh-validate namespace: default spec: type: ClusterIP selector: app: gh-validate ports: - protocol: TCP port: 80 targetPort: 8080
# Copyright 2019 The Tekton Authors # # 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 # # https://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. apiVersion: apps/v1 kind: Deployment metadata: name: gh-validate namespace: default spec: replicas: 1 selector: matchLabels: app: gh-validate template: metadata: labels: app: gh-validate spec: serviceAccountName: default containers: - name: validate image: github.com/tektoncd/triggers/examples/event-interceptors env: - name: GITHUB_SECRET_TOKEN valueFrom: secretKeyRef: name: github-secret key: secret-token --- apiVersion: v1 kind: Service metadata: name: gh-validate namespace: default spec: type: ClusterIP selector: app: gh-validate ports: - protocol: TCP port: 80 targetPort: 8080
Fix image path in github validate yaml
Fix image path in github validate yaml
YAML
apache-2.0
tektoncd/triggers,tektoncd/triggers
cdf64a679b76b904799ef02468ede0510db3f165
ide/pubspec.yaml
ide/pubspec.yaml
name: spark author: Chrome Team <[email protected]> version: 0.1.4-dev homepage: https://github.com/GoogleChrome/spark description: A Chrome app based development environment. dependencies: ace: '>=0.1.3' analyzer: any bootjack: any browser: any chrome_gen: '>=0.3.0' crc32: 0.1.3 crypto: any intl: any logging: any mime: any spark_widgets: path: ../widgets unittest: any uuid: any dev_dependencies: args: any grinder: '>=0.4.3'
name: spark author: Chrome Team <[email protected]> version: 0.1.4-dev homepage: https://github.com/GoogleChrome/spark description: A Chrome app based development environment. dependencies: ace: '>=0.1.3' analyzer: any bootjack: any browser: any chrome_gen: '>=0.3.0' crc32: 0.1.3 crypto: any intl: any logging: any mime: any polymer_elements: git: https://github.com/ErikGrimes/polymer_elements spark_widgets: path: ../widgets unittest: any uuid: any dev_dependencies: args: any grinder: '>=0.4.3'
Make polymer_elements a direct dependency (was indirect via spark_widgets)
Make polymer_elements a direct dependency (was indirect via spark_widgets)
YAML
bsd-3-clause
2947721120/choredev,devoncarew/spark,googlearchive/chromedeveditor,devoncarew/spark,ussuri/chromedeveditor,vivalaralstin/chromedeveditor,valmzetvn/chromedeveditor,googlearchive/chromedeveditor,vivalaralstin/chromedeveditor,ussuri/chromedeveditor,vivalaralstin/chromedeveditor,2947721120/choredev,yikaraman/chromedeveditor,b0dh1sattva/chromedeveditor,valmzetvn/chromedeveditor,valmzetvn/chromedeveditor,2947721120/chromedeveditor,hxddh/chromedeveditor,2947721120/choredev,googlearchive/chromedeveditor,modulexcite/chromedeveditor,ussuri/chromedeveditor,2947721120/choredev,modulexcite/chromedeveditor,vivalaralstin/chromedeveditor,yikaraman/chromedeveditor,valmzetvn/chromedeveditor,googlearchive/chromedeveditor,beaufortfrancois/chromedeveditor,hxddh/chromedeveditor,valmzetvn/chromedeveditor,googlearchive/chromedeveditor,yikaraman/chromedeveditor,2947721120/chromedeveditor,2947721120/chromedeveditor,2947721120/choredev,valmzetvn/chromedeveditor,b0dh1sattva/chromedeveditor,googlearchive/chromedeveditor,b0dh1sattva/chromedeveditor,yikaraman/chromedeveditor,hxddh/chromedeveditor,devoncarew/spark,ussuri/chromedeveditor,yikaraman/chromedeveditor,ussuri/chromedeveditor,yikaraman/chromedeveditor,valmzetvn/chromedeveditor,yikaraman/chromedeveditor,hxddh/chromedeveditor,beaufortfrancois/chromedeveditor,googlearchive/chromedeveditor,vivalaralstin/chromedeveditor,devoncarew/spark,modulexcite/chromedeveditor,hxddh/chromedeveditor,beaufortfrancois/chromedeveditor,hxddh/chromedeveditor,modulexcite/chromedeveditor,b0dh1sattva/chromedeveditor,beaufortfrancois/chromedeveditor,beaufortfrancois/chromedeveditor,b0dh1sattva/chromedeveditor,2947721120/choredev,modulexcite/chromedeveditor,2947721120/chromedeveditor,b0dh1sattva/chromedeveditor,beaufortfrancois/chromedeveditor,2947721120/chromedeveditor,b0dh1sattva/chromedeveditor,2947721120/chromedeveditor,vivalaralstin/chromedeveditor,2947721120/choredev,hxddh/chromedeveditor,ussuri/chromedeveditor,ussuri/chromedeveditor,devoncarew/spark,vivalaralstin/chromedeveditor,modulexcite/chromedeveditor,devoncarew/spark,modulexcite/chromedeveditor,2947721120/chromedeveditor,beaufortfrancois/chromedeveditor
2d32ed1b614dbce9c13d85819bc2db8aa68dee5f
metadata/com.oF2pks.kalturadeviceinfos.yml
metadata/com.oF2pks.kalturadeviceinfos.yml
Categories: - System License: Unlicense WebSite: https://bitbucket.org/oF2pks/kaltura-device-info-android SourceCode: https://bitbucket.org/oF2pks/kaltura-device-info-android/src IssueTracker: https://forum.xda-developers.com/android/apps-games/appfoss-googleserviceframework-gsf-t3849908 AutoName: (F-Droid) Kaltura Device Info Summary: GSF, Widevine L1/2/3, Treble & A/B device infos (+other IDs) Description: |- Re-branded KalturaDeviceInfo to provides GSF id (needed for Google uncertified devices), checks about Widevine & media decoders plus detection for Treble & a/b Seamless update (and others system IDs). This app is a basic json example that shows how much any app, with <internet> permission granted, can leak your device info on the net... RepoType: git Repo: https://bitbucket.org/oF2pks/kaltura-device-info-android/src Builds: - versionName: 1.3.1-2 versionCode: 2 commit: v1.3.1-2 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 1.3.1-2 CurrentVersionCode: 2
Categories: - System License: Unlicense WebSite: https://bitbucket.org/oF2pks/kaltura-device-info-android SourceCode: https://bitbucket.org/oF2pks/kaltura-device-info-android/src IssueTracker: https://forum.xda-developers.com/android/apps-games/appfoss-googleserviceframework-gsf-t3849908 AutoName: (F-Droid) Kaltura Device Info Summary: GSF, Widevine L1/2/3, Treble & A/B device infos (+other IDs) Description: |- Re-branded KalturaDeviceInfo to provides GSF id (needed for Google uncertified devices), checks about Widevine & media decoders plus detection for Treble & a/b Seamless update (and others system IDs). This app is a basic json example that shows how much any app, with <internet> permission granted, can leak your device info on the net... RepoType: git Repo: https://bitbucket.org/oF2pks/kaltura-device-info-android/src Builds: - versionName: 1.3.1-2 versionCode: 2 commit: v1.3.1-2 subdir: app gradle: - yes - versionName: 1.3.1-4 versionCode: 4 commit: v1.3.1-4 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 1.3.1-4 CurrentVersionCode: 4
Update (F-Droid) Kaltura Device Info to 1.3.1-4 (4)
Update (F-Droid) Kaltura Device Info to 1.3.1-4 (4)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroid-data,f-droid/fdroiddata
299148c60f9a5cb4f50fb82cd4a61316953d771a
recipes/statmorph/meta.yaml
recipes/statmorph/meta.yaml
{% set name = "statmorph" %} {% set version = "0.1.0" %} {% set sha256 = "5e92600867b3ddbd3bd1194ca8689c5e99e214d909588e29860c05be5f14712e" %} package: name: {{ name|lower }} version: {{ version }} source: fn: {{ name }}-{{ version }}.tar.gz url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz sha256: {{ sha256 }} build: noarch: python number: 0 script: python setup.py install --single-version-externally-managed --record record.txt requirements: build: - python - setuptools - scikit-image - astropy - photutils run: - python test: imports: - statmorph about: home: https://github.com/vrodgom/statmorph license: BSD-3-Clause license_family: BSD license_file: LICENSE summary: 'Non-parametric morphological diagnostics of galaxy images' description: | Python code for calculating non-parametric morphological diagnostics of galaxy images. doc_url: http://statmorph.readthedocs.io/ dev_url: https://github.com/vrodgom/statmorph extra: recipe-maintainers: - vrodgom
{% set name = "statmorph" %} {% set version = "0.1.0" %} {% set sha256 = "5e92600867b3ddbd3bd1194ca8689c5e99e214d909588e29860c05be5f14712e" %} package: name: {{ name|lower }} version: {{ version }} source: fn: {{ name }}-{{ version }}.tar.gz url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz sha256: {{ sha256 }} build: noarch: python number: 0 script: python setup.py install --single-version-externally-managed --record record.txt requirements: build: - python - setuptools - numpy - scipy - scikit-image - astropy - photutils run: - python test: imports: - statmorph about: home: https://github.com/vrodgom/statmorph license: BSD-3-Clause license_family: BSD license_file: LICENSE summary: 'Non-parametric morphological diagnostics of galaxy images' description: | Python code for calculating non-parametric morphological diagnostics of galaxy images. doc_url: http://statmorph.readthedocs.io/ dev_url: https://github.com/vrodgom/statmorph extra: recipe-maintainers: - vrodgom
Add numpy and scipy requirements.
[statmorph] Add numpy and scipy requirements.
YAML
bsd-3-clause
goanpeca/staged-recipes,rvalieris/staged-recipes,isuruf/staged-recipes,kwilcox/staged-recipes,patricksnape/staged-recipes,scopatz/staged-recipes,sodre/staged-recipes,asmeurer/staged-recipes,cpaulik/staged-recipes,patricksnape/staged-recipes,rmcgibbo/staged-recipes,Cashalow/staged-recipes,pmlandwehr/staged-recipes,ceholden/staged-recipes,barkls/staged-recipes,synapticarbors/staged-recipes,jjhelmus/staged-recipes,NOAA-ORR-ERD/staged-recipes,jochym/staged-recipes,chohner/staged-recipes,larray-project/staged-recipes,chohner/staged-recipes,hadim/staged-recipes,ReimarBauer/staged-recipes,kwilcox/staged-recipes,mcs07/staged-recipes,guillochon/staged-recipes,johanneskoester/staged-recipes,igortg/staged-recipes,conda-forge/staged-recipes,Juanlu001/staged-recipes,mcs07/staged-recipes,jjhelmus/staged-recipes,larray-project/staged-recipes,dschreij/staged-recipes,asmeurer/staged-recipes,Cashalow/staged-recipes,SylvainCorlay/staged-recipes,basnijholt/staged-recipes,sannykr/staged-recipes,shadowwalkersb/staged-recipes,pmlandwehr/staged-recipes,barkls/staged-recipes,SylvainCorlay/staged-recipes,basnijholt/staged-recipes,jakirkham/staged-recipes,mariusvniekerk/staged-recipes,petrushy/staged-recipes,sodre/staged-recipes,ocefpaf/staged-recipes,chrisburr/staged-recipes,birdsarah/staged-recipes,rvalieris/staged-recipes,hadim/staged-recipes,dschreij/staged-recipes,sodre/staged-recipes,mariusvniekerk/staged-recipes,rmcgibbo/staged-recipes,glemaitre/staged-recipes,NOAA-ORR-ERD/staged-recipes,stuertz/staged-recipes,petrushy/staged-recipes,Juanlu001/staged-recipes,scopatz/staged-recipes,ceholden/staged-recipes,ReimarBauer/staged-recipes,conda-forge/staged-recipes,sannykr/staged-recipes,synapticarbors/staged-recipes,stuertz/staged-recipes,shadowwalkersb/staged-recipes,jakirkham/staged-recipes,isuruf/staged-recipes,goanpeca/staged-recipes,glemaitre/staged-recipes,johanneskoester/staged-recipes,guillochon/staged-recipes,jochym/staged-recipes,cpaulik/staged-recipes,birdsarah/staged-recipes,chrisburr/staged-recipes,ocefpaf/staged-recipes,igortg/staged-recipes
f7531d1a3d5621a5c03fe31febc0b2fa0c11604f
config/govuk_index/migrated_formats.yaml
config/govuk_index/migrated_formats.yaml
migrated: - help_page indexable: - answer - guide - licence - transaction - simple_smart_answer
migrated: - help_page indexable: - answer - guide - licence - local_transaction - transaction - simple_smart_answer
Make local transaction format indexable
Make local transaction format indexable
YAML
mit
alphagov/rummager,alphagov/rummager
09992b09470051a610643c77712c79a38f4a8aec
examples/multi-user-chat/swindon.yaml
examples/multi-user-chat/swindon.yaml
listen: - 127.0.0.1:8080 debug-routing: true routing: localhost/empty.gif: empty-gif localhost/favicon.ico: public localhost: chat # we can't proxy websockets for now, so we disable websocket to webpack localhost/sockjs-node: html handlers: chat: !SwindonChat session-pool: chat http-route: html message-handlers: "*": chat empty-gif: !EmptyGif public: !Static mode: relative_to_domain_root path: ./public text-charset: utf-8 html: !Proxy destination: webpack session-pools: chat: listen: [127.0.0.1:8081] inactivity-handlers: [chat] http-destinations: chat: addresses: - 127.0.0.1:8082 webpack: addresses: - 127.0.0.1:3000
listen: - 127.0.0.1:8080 debug-routing: true routing: localhost/empty.gif: empty-gif localhost/favicon.ico: public localhost: chat localhost/sockjs-node: socksjs handlers: chat: !SwindonChat session-pool: chat http-route: html message-handlers: "*": chat empty-gif: !EmptyGif public: !Static mode: relative_to_domain_root path: ./public text-charset: utf-8 html: !Proxy destination: webpack # The way socksjs does websocket emulation: it creates a response with # chunked encoding. While we might be able to process it well, it occupies # connection and the request that is pipelined after this one hangs # indefinitely. So we need separate connection pool for such connections socksjs: !Proxy destination: socksjs-emu session-pools: chat: listen: [127.0.0.1:8081] inactivity-handlers: [chat] http-destinations: chat: addresses: - 127.0.0.1:8082 webpack: addresses: - 127.0.0.1:3000 socksjs-emu: addresses: - 127.0.0.1:3000 backend-connections-per-ip-port: 100 in-flight-requests-per-backend-connection: 1 queue-size-for-503: 1
Fix config of MUC example
Fix config of MUC example
YAML
apache-2.0
swindon-rs/swindon,swindon-rs/swindon,swindon-rs/swindon,swindon-rs/swindon
bfe862f438a304c9a1bcb37473f30227b677fd90
recipes/benchmark-4dn/meta.yaml
recipes/benchmark-4dn/meta.yaml
{% set name = "Benchmark-4dn" %} {% set version = "0.5.6" %} package: name: "{{ name|lower }}" version: "{{ version }}" source: url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz" sha256: "f44a5d8274710828045955dae92e7ee093174ed88cdc695840f4a250ab9003a3" build: number: 0 script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed -vv " requirements: host: - pip - python run: - python test: imports: - Benchmark - tests about: home: "https://github.com/SooLee/Benchmark/" license: "MIT" license_family: "MIT" license_file: "LICENSE.txt" summary: "Benchmark functions that returns total space, mem, cpu given input size and parameters for the CWL workflows" doc_url: "https://github.com/SooLee/Benchmark" extra: recipe-maintainers: - soolee
{% set name = "Benchmark-4dn" %} {% set version = "0.5.6" %} package: name: "{{ name|lower }}" version: "{{ version }}" source: url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz" sha256: "f44a5d8274710828045955dae92e7ee093174ed88cdc695840f4a250ab9003a3" build: number: 0 script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed -vv " noarch: python requirements: host: - pip - python run: - python test: imports: - Benchmark - tests about: home: "https://github.com/SooLee/Benchmark/" license: "MIT" license_family: "MIT" license_file: "LICENSE.txt" summary: "Benchmark functions that returns total space, mem, cpu given input size and parameters for the CWL workflows" doc_url: "https://github.com/SooLee/Benchmark" extra: recipe-maintainers: - soolee
Make benchmark-4dn a noarch package
Make benchmark-4dn a noarch package
YAML
bsd-3-clause
patricksnape/staged-recipes,birdsarah/staged-recipes,isuruf/staged-recipes,dschreij/staged-recipes,SylvainCorlay/staged-recipes,jakirkham/staged-recipes,hadim/staged-recipes,igortg/staged-recipes,scopatz/staged-recipes,petrushy/staged-recipes,SylvainCorlay/staged-recipes,goanpeca/staged-recipes,ocefpaf/staged-recipes,ocefpaf/staged-recipes,mariusvniekerk/staged-recipes,kwilcox/staged-recipes,Juanlu001/staged-recipes,johanneskoester/staged-recipes,johanneskoester/staged-recipes,chrisburr/staged-recipes,jochym/staged-recipes,patricksnape/staged-recipes,ReimarBauer/staged-recipes,petrushy/staged-recipes,kwilcox/staged-recipes,asmeurer/staged-recipes,isuruf/staged-recipes,mariusvniekerk/staged-recipes,scopatz/staged-recipes,stuertz/staged-recipes,goanpeca/staged-recipes,igortg/staged-recipes,asmeurer/staged-recipes,conda-forge/staged-recipes,mcs07/staged-recipes,birdsarah/staged-recipes,dschreij/staged-recipes,jochym/staged-recipes,stuertz/staged-recipes,ReimarBauer/staged-recipes,jakirkham/staged-recipes,Juanlu001/staged-recipes,mcs07/staged-recipes,hadim/staged-recipes,chrisburr/staged-recipes,conda-forge/staged-recipes
1e87b19a9cd62a989dca2d6feab7e87918b84e72
recipes/progressbar33/meta.yaml
recipes/progressbar33/meta.yaml
package: name: progressbar33 version: "2.4" source: fn: progressbar33-2.4.tar.gz url: https://files.pythonhosted.org/packages/71/fc/7c8e01f41a6e671d7b11be470eeb3d15339c75ce5559935f3f55890eec6b/progressbar33-2.4.tar.gz md5: 94c114ea62aaae93489848f5bdb0bbe7 build: number: 0 requirements: build: - python - setuptools run: - python test: imports: - progressbar about: home: http://github.com/germangh/python-progressbar license: GNU Library or Lesser General Public License (LGPL) or BSD License summary: 'Text progress bar library for Python.' license_family: LGPL extra: recipe-maintainers: - npavlovikj
package: name: progressbar33 version: "2.4" source: fn: progressbar33-2.4.tar.gz url: https://files.pythonhosted.org/packages/71/fc/7c8e01f41a6e671d7b11be470eeb3d15339c75ce5559935f3f55890eec6b/progressbar33-2.4.tar.gz md5: 94c114ea62aaae93489848f5bdb0bbe7 build: number: 0 requirements: build: - python - setuptools run: - python test: imports: - progressbar about: home: http://github.com/germangh/python-progressbar license: GNU Library or LGPL or BSD summary: 'Text progress bar library for Python.' extra: recipe-maintainers: - npavlovikj
Remove word License from license
Remove word License from license
YAML
bsd-3-clause
kwilcox/staged-recipes,sodre/staged-recipes,conda-forge/staged-recipes,scopatz/staged-recipes,dschreij/staged-recipes,jjhelmus/staged-recipes,synapticarbors/staged-recipes,isuruf/staged-recipes,mcs07/staged-recipes,kwilcox/staged-recipes,birdsarah/staged-recipes,basnijholt/staged-recipes,synapticarbors/staged-recipes,SylvainCorlay/staged-recipes,chrisburr/staged-recipes,hadim/staged-recipes,jochym/staged-recipes,ReimarBauer/staged-recipes,SylvainCorlay/staged-recipes,jjhelmus/staged-recipes,chrisburr/staged-recipes,petrushy/staged-recipes,petrushy/staged-recipes,birdsarah/staged-recipes,stuertz/staged-recipes,goanpeca/staged-recipes,igortg/staged-recipes,cpaulik/staged-recipes,mariusvniekerk/staged-recipes,rvalieris/staged-recipes,mariusvniekerk/staged-recipes,conda-forge/staged-recipes,johanneskoester/staged-recipes,dschreij/staged-recipes,Juanlu001/staged-recipes,ocefpaf/staged-recipes,Juanlu001/staged-recipes,patricksnape/staged-recipes,rmcgibbo/staged-recipes,goanpeca/staged-recipes,pmlandwehr/staged-recipes,barkls/staged-recipes,jochym/staged-recipes,ceholden/staged-recipes,ReimarBauer/staged-recipes,igortg/staged-recipes,stuertz/staged-recipes,mcs07/staged-recipes,shadowwalkersb/staged-recipes,sodre/staged-recipes,patricksnape/staged-recipes,isuruf/staged-recipes,pmlandwehr/staged-recipes,johanneskoester/staged-recipes,barkls/staged-recipes,guillochon/staged-recipes,shadowwalkersb/staged-recipes,cpaulik/staged-recipes,jakirkham/staged-recipes,basnijholt/staged-recipes,ocefpaf/staged-recipes,rvalieris/staged-recipes,sodre/staged-recipes,scopatz/staged-recipes,jakirkham/staged-recipes,guillochon/staged-recipes,ceholden/staged-recipes,asmeurer/staged-recipes,hadim/staged-recipes,rmcgibbo/staged-recipes,asmeurer/staged-recipes
59c27a8e00e610e3318747c70e5f2fd079bec67a
packages/ca/category.yaml
packages/ca/category.yaml
homepage: '' changelog-type: '' hash: d7abb2e1c8d1d05da2e7afd7b3ba0750a0b4ee82147fa8eafaf67e003a8a30a8 test-bench-deps: {} maintainer: [email protected] synopsis: Categorical types and classes changelog: '' basic-deps: alg: ! '>=0.2 && <0.3' base: ! '>=4.10 && <5' transformers: ! '>=0.5 && <0.6' all-versions: - 0.1.0.0 - 0.1.0.1 - 0.1.1.0 - 0.2.0.0 - 0.2.0.1 - 0.2.1.0 - 0.2.2.0 - 0.2.3.0 - 0.2.4.0 author: M Farkas-Dyck latest: 0.2.4.0 description-type: haddock description: '' license-name: BSD-3-Clause
homepage: '' changelog-type: '' hash: 20acf2112dab0fa6d887429669529d766439f351e4bd02350e2b81f84e353d72 test-bench-deps: {} maintainer: [email protected] synopsis: Categorical types and classes changelog: '' basic-deps: alg: ! '>=0.2 && <0.3' base: ! '>=4.10 && <5' transformers: ! '>=0.5 && <0.6' all-versions: - 0.1.0.0 - 0.1.0.1 - 0.1.1.0 - 0.2.0.0 - 0.2.0.1 - 0.2.1.0 - 0.2.2.0 - 0.2.3.0 - 0.2.4.0 - 0.2.4.1 author: M Farkas-Dyck latest: 0.2.4.1 description-type: haddock description: '' license-name: BSD-3-Clause
Update from Hackage at 2019-07-26T18:32:34Z
Update from Hackage at 2019-07-26T18:32:34Z
YAML
mit
commercialhaskell/all-cabal-metadata
662b0a4ca1f3d6b2f1a273ed8e17d575dc7cd5c4
roles/programming/python/pyenv/tasks/main.yml
roles/programming/python/pyenv/tasks/main.yml
--- - name: Install Pyenv from git repo git: repo: https://github.com/pyenv/pyenv.git dest: "{{ pyenv_install_dir }}" - name: Install pyenv-virtualenv plugin git: repo: https://github.com/pyenv/pyenv-virtualenv.git dest: "{{ virtualenv_install_dir }}" - name: Change owner and group of pyenv and virtualenv directory file: path: "{{ item }}" owner: "{{ user.name }}" group: "{{ user.group }}" recurse: yes with_items: - "{{ pyenv_install_dir }}" - "{{ virtualenv_install_dir }}" - name: Define evironment variables for Pyenv template: src: configure_pyenv_profile.sh dest: "{{ shell_conf_dir }}/profile" mode: 0700 owner: "{{ user.name }}" group: "{{ user.group }}" - name: Configure Pyenv for usage in Bash copy: src: configure_pyenv_bash.sh dest: "{{ shell_conf_dir }}/bash" mode: 0700 owner: "{{ user.name }}" group: "{{ user.group }}"
--- # See https://github.com/pyenv/pyenv/wiki/Common-build-problems for complete # list of dependencies. - name: Install dependencies for building python with pyenv package: name={{ item }} state=present with_items: - make - build-essential - libssl-dev - zlib1g-dev - libbz2-dev - libreadline-dev - libsqlite3-dev - wget - curl - llvm - libncurses5-dev - libncursesw5-dev - xz-utils - name: Install Pyenv from git repo git: repo: https://github.com/pyenv/pyenv.git dest: "{{ pyenv_install_dir }}" - name: Install pyenv-virtualenv plugin git: repo: https://github.com/pyenv/pyenv-virtualenv.git dest: "{{ virtualenv_install_dir }}" - name: Change owner and group of pyenv and virtualenv directory file: path: "{{ item }}" owner: "{{ user.name }}" group: "{{ user.group }}" recurse: yes with_items: - "{{ pyenv_install_dir }}" - "{{ virtualenv_install_dir }}" - name: Define evironment variables for Pyenv template: src: configure_pyenv_profile.sh dest: "{{ shell_conf_dir }}/profile" mode: 0700 owner: "{{ user.name }}" group: "{{ user.group }}" - name: Configure Pyenv for usage in Bash copy: src: configure_pyenv_bash.sh dest: "{{ shell_conf_dir }}/bash" mode: 0700 owner: "{{ user.name }}" group: "{{ user.group }}"
Install dependencies for building python
pyenv: Install dependencies for building python
YAML
cc0-1.0
kulla/my-ansible-scripts,kulla/my-ansible-scripts
0291b156804b8e46eaece040381ebf11e2882bd6
packages/en/entangle.yaml
packages/en/entangle.yaml
homepage: '' changelog-type: '' hash: 5a298994fdc943e5614621d6e5f136b5be74cc36e56ab8230cf257f5bd5d858a test-bench-deps: {} maintainer: [email protected] synopsis: An application (and library) to convert quipper circuits into Qpmc models. changelog: '' basic-deps: base: ! '>=4.0 && <5.0' matrix: ! '>=0.3 && <0.5' containers: ! '>=0.5 && <0.6' quipper-core: ! '>=0.7 && <0.9' mtl: ! '>=2.1 && <2.3' entangle: -any all-versions: - '0.1.0' author: '' latest: '0.1.0' description-type: haddock description: '' license-name: MIT
homepage: '' changelog-type: '' hash: 5d23f9a8472911bf859084e04999ccef13561b723d6df6a608abd995fb5d8cac test-bench-deps: {} maintainer: [email protected] synopsis: An application (and library) to convert quipper circuits into Qpmc models. changelog: '' basic-deps: base: ! '>=4.0 && <5.0' matrix: ! '>=0.3 && <0.5' containers: ! '>=0.5 && <0.6' quipper-core: ! '>=0.7 && <0.9' mtl: ! '>=2.1 && <2.3' entangle: -any all-versions: - '0.1.0' - '0.1.1' author: '' latest: '0.1.1' description-type: haddock description: '' license-name: MIT
Update from Hackage at 2017-01-06T22:37:45Z
Update from Hackage at 2017-01-06T22:37:45Z
YAML
mit
commercialhaskell/all-cabal-metadata
65755757ab5daa4865a1f9cbd84ff69fc4f13ea9
packages/lights_tuya.yaml
packages/lights_tuya.yaml
################################################## ## Customize ################################################## homeassistant: customize: light.2424806784f3eb2103c8: friendly_name: "Spot Light 1" icon: mdi:spotlight-beam light.12204702807d3a252d9b: friendly_name: "Spot Light 2" icon: mdi:spotlight-beam light.12204702807d3a252c69: friendly_name: "Spot Light 3" icon: mdi:spotlight-beam light.12204702ecfabc20a0a1: friendly_name: "Spot Light 4" icon: mdi:spotlight-beam ################################################## ## Groups ################################################## group: frasers_room_lights: name: Frasers Lights entities: - light.2424806784f3eb2103c8 - light.12204702807d3a252d9b - light.12204702807d3a252c69 - light.12204702ecfabc20a0a1 ################################################## ## Components/Sensors ################################################## tuya: # https://www.home-assistant.io/components/tuya/ username: !secret tuya_username password: !secret tuya_password country_code: !secret tuya_country_code platform: smart_life
################################################## ## Customize ################################################## homeassistant: customize: light.2424806784f3eb2103c8: friendly_name: "Spot Light 1" icon: mdi:spotlight-beam light.12204702ecfabc20a0a1: friendly_name: "Spot Light 2" icon: mdi:spotlight-beam light.12204702807d3a252d9b: friendly_name: "Spot Light 3" icon: mdi:spotlight-beam light.01802003cc50e3501f3e: friendly_name: "Spot Light 4" icon: mdi:spotlight-beam ################################################## ## Groups ################################################## group: frasers_room_lights: name: Frasers Lights entities: - light.2424806784f3eb2103c8 - light.12204702ecfabc20a0a1 - light.12204702807d3a252d9b - light.01802003cc50e3501f3e ################################################## ## Components/Sensors ################################################## tuya: # https://www.home-assistant.io/components/tuya/ username: !secret tuya_username password: !secret tuya_password country_code: !secret tuya_country_code platform: smart_life
Update IDs for replacement bulb
Update IDs for replacement bulb
YAML
mit
shortbloke/home_assistant_config
b53295bcb44dcc184a8ee38ceb37c31389f6fa78
packages/sd/sdl2-fps.yaml
packages/sd/sdl2-fps.yaml
homepage: https://github.com/jxv/sdl2-fps#readme changelog-type: '' hash: e228fbadb0bd39787955f3277e74f085cfcb32ef82959d8b97909e64f168593e test-bench-deps: {} maintainer: Joe Vargas synopsis: Run of the mill, frames per second timer implementation changelog: '' basic-deps: base: ! '>=4.7 && <5' sdl2: ! '>=2.4.0.1 && <2.5' all-versions: - '0.0.0' - '0.0.1' author: '' latest: '0.0.1' description-type: markdown description: ! '# sdl2-fps Run of the mill, frames per second timer implementation' license-name: BSD3
homepage: https://github.com/jxv/sdl2-fps#readme changelog-type: '' hash: 94235beb4a1d9facd448324e924b9655941b5e0903bb53e08c63a60ffdce753a test-bench-deps: {} maintainer: Joe Vargas synopsis: Run of the mill, frames per second timer implementation changelog: '' basic-deps: base: ! '>=4.7 && <5' sdl2: ! '>=2.4.0.1 && <2.5' all-versions: - '0.0.0' - '0.0.1' - '0.0.2' author: '' latest: '0.0.2' description-type: markdown description: ! '# sdl2-fps Run of the mill, frames per second timer implementation' license-name: BSD3
Update from Hackage at 2018-05-20T01:10:37Z
Update from Hackage at 2018-05-20T01:10:37Z
YAML
mit
commercialhaskell/all-cabal-metadata
1fbbeb651e9886f8b12f9d8d290bc3e4883adbcc
packages/se/seqalign.yaml
packages/se/seqalign.yaml
homepage: '' changelog-type: '' hash: c16973e935950d6dde791d92fb3d463bde992886b4100acf1af66b4e2228772a test-bench-deps: {} maintainer: [email protected] synopsis: Sequence Alignment changelog: '' basic-deps: bytestring: -any base: ! '>=4.6 && <5' vector: -any all-versions: - '0.2.0.0' - '0.2.0.1' - '0.2.0.2' - '0.2.0.3' author: Rob O'Callahan latest: '0.2.0.3' description-type: haddock description: FFI wrappers for global and local string alignment functions license-name: BSD3
homepage: '' changelog-type: '' hash: dbf574ed677f0db7dd023a549ab3ee8c8bdb3559433fd03b098f1f90eae21f25 test-bench-deps: {} maintainer: [email protected] synopsis: Sequence Alignment changelog: '' basic-deps: bytestring: -any base: ! '>=4.6 && <5' vector: -any all-versions: - '0.2.0.0' - '0.2.0.1' - '0.2.0.2' - '0.2.0.3' - '0.2.0.4' author: Rob O'Callahan latest: '0.2.0.4' description-type: haddock description: FFI wrappers for global and local string alignment functions license-name: BSD3
Update from Hackage at 2015-07-03T14:19:43+0000
Update from Hackage at 2015-07-03T14:19:43+0000
YAML
mit
commercialhaskell/all-cabal-metadata
7346a05624dcca8529333dd3ded993552fab2151
app/config/config_test.yml
app/config/config_test.yml
imports: - { resource: functional_testing.yml } - { resource: config_dev.yml } framework: test: ~ session: storage_id: session.storage.mock_file router: resource: "%kernel.root_dir%/config/routing_test.yml" strict_requirements: true profiler: collect: false liip_functional_test: ~ web_profiler: toolbar: false intercept_redirects: false # override the logging settings so that we can log to readable files on travis monolog: channels: ["%logger.channel%", "authentication"] handlers: main: type: fingers_crossed activation_strategy: engineblock.logger.manual_or_error_activation_strategy passthru_level: "%logger.fingers_crossed.passthru_level%" handler: file file: type: stream path: "%kernel.logs_dir%/%kernel.environment%.log" level: DEBUG
imports: - { resource: functional_testing.yml } - { resource: config_dev.yml } framework: test: ~ session: storage_id: session.storage.mock_file router: resource: "%kernel.root_dir%/config/routing_test.yml" strict_requirements: true profiler: collect: false liip_functional_test: ~ web_profiler: toolbar: false intercept_redirects: false # override the logging settings so that we can log to readable files on travis monolog: channels: ["%logger.channel%", "authentication"] handlers: main: type: fingers_crossed activation_strategy: engineblock.logger.manual_or_error_activation_strategy passthru_level: "%logger.fingers_crossed.passthru_level%" handler: file file: type: stream path: "%kernel.logs_dir%/%kernel.environment%.log" level: DEBUG security: providers: in_memory: memory: users: no_roles: password: no_roles roles: []
Add test user without any roles for functional testing
Add test user without any roles for functional testing
YAML
apache-2.0
thijskh/OpenConext-engineblock,thijskh/OpenConext-engineblock,thijskh/OpenConext-engineblock,thijskh/OpenConext-engineblock
ab4082a2b7a4898bc0d2ad7a2801f73719910a13
paypal/merchant-sdk-php/CVE-2017-6099.yaml
paypal/merchant-sdk-php/CVE-2017-6099.yaml
title: Cross-site scripting (XSS) vulnerability in Paypal-Merchant-SDK-PHP link: https://github.com/paypal/merchant-sdk-php/tree/v3.9.1 cve: CVE-2017-6099 branches: 2.x: time: 2017-03-31, versions: ['<2.1.96'] master: time: 2017-03-31, versions: ['<3.10.0'] reference: composer://paypal/merchant-sdk-php
title: Cross-site scripting (XSS) vulnerability in Paypal-Merchant-SDK-PHP link: https://github.com/paypal/merchant-sdk-php/tree/v3.9.1 cve: CVE-2017-6099 branches: 2.x: time: 2017-03-31, versions: ['<=2.11.118'] master: time: 2017-03-31, versions: ['<3.10.0'] reference: composer://paypal/merchant-sdk-php
Fix version constraints and version number.
Fix version constraints and version number.
YAML
unlicense
marcomenzel/security-advisories,FriendsOfPHP/security-advisories,markstory/security-advisories,kdambekalns/security-advisories
796f3dceaf941dcd6693940d65d8d29531aded4a
stack.yaml
stack.yaml
resolver: lts-4.1 packages: - '.' flags: idris: FFI: true GMP: True curses: True extra-deps: - annotated-wl-pprint-0.7.0 - cheapskate-0.1.0.4 - hscurses-1.4.2.0 - libffi-0.1
resolver: lts-4.1 packages: - '.' flags: idris: FFI: true GMP: True curses: True extra-deps: - annotated-wl-pprint-0.7.0 - cheapskate-0.1.0.4 - hscurses-1.4.2.0 - libffi-0.1 nix: enable: false packages: [ libffi, zlib, ncurses, gmp, pkgconfig ]
Add the Nix package dependencies
Stack: Add the Nix package dependencies
YAML
bsd-3-clause
Heather/Idris-dev,enolan/Idris-dev,ben-schulz/Idris-dev,ben-schulz/Idris-dev,jmitchell/Idris-dev,FranklinChen/Idris-dev,mpkh/Idris-dev,bravit/Idris-dev,tpsinnem/Idris-dev,markuspf/Idris-dev,kojiromike/Idris-dev,ozgurakgun/Idris-dev,ben-schulz/Idris-dev,Heather/Idris-dev,FranklinChen/Idris-dev,ozgurakgun/Idris-dev,mpkh/Idris-dev,eklavya/Idris-dev,markuspf/Idris-dev,tpsinnem/Idris-dev,ozgurakgun/Idris-dev,markuspf/Idris-dev,tpsinnem/Idris-dev,mpkh/Idris-dev,mpkh/Idris-dev,tpsinnem/Idris-dev,bravit/Idris-dev,KaneTW/Idris-dev,eklavya/Idris-dev,tpsinnem/Idris-dev,ben-schulz/Idris-dev,FranklinChen/Idris-dev,mpkh/Idris-dev,jmitchell/Idris-dev,kojiromike/Idris-dev,eklavya/Idris-dev,jmitchell/Idris-dev,ozgurakgun/Idris-dev,kojiromike/Idris-dev,eklavya/Idris-dev,markuspf/Idris-dev,markuspf/Idris-dev,kojiromike/Idris-dev,uuhan/Idris-dev,FranklinChen/Idris-dev,Heather/Idris-dev,uuhan/Idris-dev,uuhan/Idris-dev,kojiromike/Idris-dev,KaneTW/Idris-dev,uuhan/Idris-dev,ben-schulz/Idris-dev,KaneTW/Idris-dev,KaneTW/Idris-dev,uuhan/Idris-dev,kojiromike/Idris-dev,jmitchell/Idris-dev,tpsinnem/Idris-dev,eklavya/Idris-dev,bravit/Idris-dev,markuspf/Idris-dev,enolan/Idris-dev,eklavya/Idris-dev,enolan/Idris-dev,bravit/Idris-dev,enolan/Idris-dev,Heather/Idris-dev,uuhan/Idris-dev,uuhan/Idris-dev,KaneTW/Idris-dev,markuspf/Idris-dev,bravit/Idris-dev,FranklinChen/Idris-dev,enolan/Idris-dev,ozgurakgun/Idris-dev,jmitchell/Idris-dev,Heather/Idris-dev,Heather/Idris-dev,bravit/Idris-dev,ozgurakgun/Idris-dev,enolan/Idris-dev,ben-schulz/Idris-dev,jmitchell/Idris-dev,mpkh/Idris-dev,KaneTW/Idris-dev,FranklinChen/Idris-dev
0f38e1a3be6e1363f4aa3310e47bf5acbf2f2d63
stack.yaml
stack.yaml
flags: {} extra-package-dbs: [] packages: - '.' resolver: nightly-2016-04-17
flags: {} extra-package-dbs: [] packages: - '.' resolver: lts-6.0
Move to Stack LTS 6.
Move to Stack LTS 6.
YAML
isc
diku-dk/futhark,mrakgr/futhark,diku-dk/futhark,diku-dk/futhark,diku-dk/futhark,ihc/futhark,HIPERFIT/futhark,mrakgr/futhark,mrakgr/futhark,diku-dk/futhark,ihc/futhark,ihc/futhark,HIPERFIT/futhark,HIPERFIT/futhark
6f202023f0c04457b49552d0e21080fab9c9b686
_data/navigation.yml
_data/navigation.yml
# Site navigation links - title: Home url: / - title: Blog url: /blog/ - title: Eko url: /eko/ - title: Let's Developer url: http://letsdeveloper.com - title: Publications url: /publications/ - title: Contact url: /contact/
# Site navigation links - title: Home url: / - title: Publications url: /publications/ - title: Blog url: /blog/ - title: Academics code url: http://academicscode.com - title: Let's Developer url: http://letsdeveloper.com - title: Eko url: /eko/ - title: Contact url: /contact/
Add “Academics code” to menu.
Add “Academics code” to menu.
YAML
mit
salsolatragus/sven-amann.de,salsolatragus/sven-amann.de,salsolatragus/sven-amann.de,salsolatragus/sven-amann.de
140217d0fed02c869a9919947f2151f530ea6a8c
.travis.yml
.travis.yml
sudo: false language: cpp compiler: - gcc env: - FX_VERSION="54.0b" - FX_VERSION="45.0.2esr" matrix: fast_finish: true #allow_failures: # - env: FX_CHANNEL="beta" notifications: email: false install: - if [ $FX_VERSION = "45.0.2esr" ]; then wget -O tarball "https://archive.mozilla.org/pub/firefox/releases/45.0.2esr/linux-x86_64/en-US/firefox-45.0.2esr.tar.bz2"; fi - if [ $FX_VERSION = "54.0b9" ]; then wget -O tarball "https://archive.mozilla.org/pub/firefox/tinderbox-builds/mozilla-beta-linux64-add-on-devel/1496339244/firefox-54.0.en-US.linux-x86_64-add-on-devel.tar.bz2"; fi - tar xf tarball before_script: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start - npm i - node_modules/.bin/gulp build script: - test/runtests.sh -x firefox/firefox
sudo: false language: cpp compiler: - gcc env: - FX_VERSION="54.0b" - FX_VERSION="45.0.2esr" matrix: fast_finish: true #allow_failures: # - env: FX_CHANNEL="beta" notifications: email: false install: - if [ $FX_VERSION = "45.0.2esr" ]; then wget -O tarball "https://archive.mozilla.org/pub/firefox/releases/45.0.2esr/linux-x86_64/en-US/firefox-45.0.2esr.tar.bz2"; fi - if [ $FX_VERSION = "54.0b" ]; then wget -O tarball "https://archive.mozilla.org/pub/firefox/tinderbox-builds/mozilla-beta-linux64-add-on-devel/1496339244/firefox-54.0.en-US.linux-x86_64-add-on-devel.tar.bz2"; fi - tar xf tarball before_script: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start - npm i - node_modules/.bin/gulp build script: - test/runtests.sh -x firefox/firefox
Fix Firefox 54 download on Travis
Fix Firefox 54 download on Travis
YAML
agpl-3.0
gracile-fr/zotero,gracile-fr/zotero,gracile-fr/zotero
2e31e6c8b30addb48c0390f06a06cea572ec99c2
.travis.yml
.travis.yml
language: node_js sudo: false node_js: - "4.2.2"
language: node_js sudo: false node_js: - "4" - "5"
Use latest node version on Travis
Use latest node version on Travis
YAML
mit
suitcss/components-grid,suitcss/components-grid
4ff432a33b69de2068be4d0b2fd2cbdea43baac1
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - '4' - '6' - '7' - '8' branches: only: - master cache: directories: - node_modules before_install: - if [[ `npm -v` != 3* ]]; then npm i -g npm@3; fi install: - npm prune - npm install notifications: email: false
sudo: false language: node_js node_js: - '4' - '6' - '7' branches: only: - master cache: directories: - node_modules before_install: - if [[ `npm -v` != 3* ]]; then npm i -g npm@3; fi install: - npm prune - npm install notifications: email: false
Revert "test(node): add node 8 to test versions"
Revert "test(node): add node 8 to test versions" This reverts commit ba291645a3f0c0149dc2e9c0d79f2c72acd7d8b1. We'll revisit this later.
YAML
mit
citycide/trilogy
06b9799089aea434a12ce216d8319106bcead83c
playbooks/ci_servers.yaml
playbooks/ci_servers.yaml
--- - hosts: ci_log_servers template: src: templates/puppet_manifests/log_server_common.yaml.j2 dest: /etc/puppet/environments/common.yaml - hosts: ci_jenkins_servers template: src: templates/puppet_manifests/ci_server_common.yaml.j2 dest: /etc/puppet/environments/common.yaml
--- - hosts: ci_log_servers tasks: - name: "Render out puppet environment" template: src: templates/puppet_manifests/log_server_common.yaml.j2 dest: /etc/puppet/environments/common.yaml - hosts: ci_jenkins_servers tasks: - name: "Render out puppet environment" template: src: templates/puppet_manifests/ci_server_common.yaml.j2 dest: /etc/puppet/environments/common.yaml
Fix issue with ci servers playbook
Fix issue with ci servers playbook Change-Id: I0145b0a259a506e46b3aefc7ccbf99de5498cbe3
YAML
apache-2.0
CiscoSystems/project-config-third-party,CiscoSystems/project-config-third-party
09f59fcd49d4171e4606392c10154dbd68e778e2
.travis.yml
.travis.yml
language: node_js node_js: - "4" before_install: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" addons: firefox: "29.0"
language: node_js node_js: - "4" before_install: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" addons: firefox: "latest"
Use "latest" Firefox version in Travis test run
Use "latest" Firefox version in Travis test run
YAML
mit
alexgibson/notify.js,alexgibson/notify.js
54d964ff2d8e868c3610d0cf4226fcffd1eb6520
.travis.yml
.travis.yml
language: ruby rvm: - "1.9.3" - "2.0.0" - "2.1.0" gemfile: - gemfiles/rails_3.gemfile - gemfiles/rails_4.gemfile env: - DB=mysql - DB=postgresql before_script: - mysql -e 'create database redirector_dummy_test; create database redirector_dummy_development;' - psql -c 'create database redirector_dummy_test' -U postgres - psql -c 'create database redirector_dummy_development' -U postgres - cp spec/dummy/config/database.travis.yml spec/dummy/config/database.yml - bundle exec rake db:migrate
language: ruby rvm: - "1.9.3" - "2.0.0" - "2.1.0" - "2.1.1" gemfile: - gemfiles/rails_3.gemfile - gemfiles/rails_4.gemfile env: - DB=mysql - DB=postgresql before_script: - mysql -e 'create database redirector_dummy_test; create database redirector_dummy_development;' - psql -c 'create database redirector_dummy_test' -U postgres - psql -c 'create database redirector_dummy_development' -U postgres - cp spec/dummy/config/database.travis.yml spec/dummy/config/database.yml - bundle exec rake db:migrate
Add Ruby 2.1.1 version to test against
Add Ruby 2.1.1 version to test against
YAML
mit
vigetlabs/redirector,vigetlabs/redirector,vigetlabs/redirector
89cb5ad5379d863c9aed367aa15610086444010b
.travis.yml
.travis.yml
language: cpp sudo: required notifications: email: true services: - docker before_install: - docker build -t nazara . script: - docker run --name Nazara -v `pwd`:/NazaraEngine nazara sh -c " cd build && ./premake5-linux64 --cc=clang gmake && cd gmake && make -j4 " after_script: - docker exec Nazara sh -c " cd ../../tests && export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:../lib/gmake/x64/:../extlibs/lib/gmake/x64/ && ./NazaraUnitTestsServer "
language: cpp sudo: required notifications: email: true services: - docker before_install: - docker build -t nazara . script: - docker run --name Nazara -v `pwd`:/NazaraEngine nazara sh -c " cd build && ./premake5-linux64 --cc=clang gmake && cd gmake && make -j4 && cd ../../tests && export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:../lib/gmake/x64/:../extlibs/lib/gmake/x64/ && ./NazaraUnitTestsServer "
Fix execution of units tests
Travis: Fix execution of units tests
YAML
mit
DigitalPulseSoftware/NazaraEngine
51b70205c61bb96d935beaa5719c1be12efb64df
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.3" - "3.4" - "3.5" - "3.6" install: - pip install nose script: nosetests
language: python python: - "2.6" - "2.7" - "3.3" - "3.4" - "3.5" - "3.6" # Enable 3.7 without globally enabling `dist: xenial` for other build jobs. matrix: include: - python: "3.7" dist: xenial install: - pip install nose script: nosetests
Enable Python 3.7 to be tested against
ci: Enable Python 3.7 to be tested against Now that Python 3.7 is available, enable CI to run tests against it.
YAML
mit
matze/pkgconfig
ce9add4b6b97525875ab3e3b46ceec6279af5367
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 - hhvm before_script: - composer self-update - composer install --prefer-source --dev script: phpunit
language: php php: - 5.4 - 5.5 - hhvm before_script: - composer self-update || echo '' - composer install --prefer-source --dev script: phpunit
Allow composer self-update to fail
Allow composer self-update to fail
YAML
mit
hannesvdvreken/guzzle-clockwork
aa6872be27acccad6f1ac5b9c7cf03698669ff5a
.travis.yml
.travis.yml
language: nix sudo: true git: depth: 1 env: global: matrix: - GHCVERSION=ghc822 - GHCVERSION=ghc842 matrix: allow_failures: exclude: script: - nix-build --argstr compiler $GHCVERSION branches: only: - master
language: nix sudo: true git: depth: 1 env: global: matrix: - GHCVERSION=ghc802 - GHCVERSION=ghc822 - GHCVERSION=ghc842 matrix: allow_failures: exclude: script: - nix-build --argstr compiler $GHCVERSION branches: only: - master
Add GHC 8.0.2 to the Travis build
Add GHC 8.0.2 to the Travis build
YAML
bsd-3-clause
jwiegley/pipes-files
aa69721b0d8c49c565b80051ea65288a7dcb66f1
.travis.yml
.travis.yml
language: rust script: - cargo build --verbose - cargo test --verbose - cargo doc after_success: | [ $TRAVIS_BRANCH = master ] && [ $TRAVIS_PULL_REQUEST = false ] && echo '<meta http-equiv=refresh content=0;url=conduit-conditional-get/index.html>' > target/doc/index.html && sudo pip install ghp-import && ghp-import -n target/doc && git push -fq https://${TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages env: global: secure: gqLf/klvb6URp60MTNOYDwcucCD2JUbMI147cPWlZMJkZ5/HGVx0jO9w1DSjl8c7/wwgFr81MWwPNLiFQ1822GJGxGBTF+U1IdzGUARUrNlqvOaEATemSFnPBH7pwe9bSiy7b8Cs1Zj++19TljonPr1l6X7x6vO0A1C1hKLMHzI= notifications: email: on_success: never
language: rust rust: - 1.0.0 - beta - nightly sudo: false script: - cargo build --verbose - cargo test --verbose - cargo doc after_success: | [ $TRAVIS_BRANCH = master ] && [ $TRAVIS_PULL_REQUEST = false ] && [ $TRAVIS_RUST_VERSION = nightly ] && echo '<meta http-equiv=refresh content=0;url=conduit-conditional-get/index.html>' > target/doc/index.html && pip install ghp-import --user $USER && $HOME/.local/bin/ghp-import -n target/doc && git push -qf https://${TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages env: global: secure: gqLf/klvb6URp60MTNOYDwcucCD2JUbMI147cPWlZMJkZ5/HGVx0jO9w1DSjl8c7/wwgFr81MWwPNLiFQ1822GJGxGBTF+U1IdzGUARUrNlqvOaEATemSFnPBH7pwe9bSiy7b8Cs1Zj++19TljonPr1l6X7x6vO0A1C1hKLMHzI= notifications: email: on_success: never
Test on rust 1.0.0, nightly, and beta
Test on rust 1.0.0, nightly, and beta
YAML
mit
conduit-rust/conduit-conditional-get,conduit-rust/conduit
7b44fef3fc5d25d0b58b645b1cae18a5e8c085da
.travis.yml
.travis.yml
language: go sudo: false go: - 1.7 - 1.8 - tip before_install: - go get github.com/mattn/goveralls script: - $HOME/gopath/bin/goveralls -service=travis-ci
language: go sudo: false go: - 1.7 - 1.9 - tip before_install: - go get github.com/mattn/goveralls script: - $HOME/gopath/bin/goveralls -service=travis-ci
Replace tesetd go 1.8 by 1.9 in Travis CI
Replace tesetd go 1.8 by 1.9 in Travis CI
YAML
mit
adlio/trello
80c32934dd59ecbda7a12f36dc5855fdef40d533
.travis.yml
.travis.yml
before_script: - sudo apt-get install -qq doxygen language: cpp script: BOOST_ROOT=/usr cd build && cmake .. && make && make test
before_script: - sudo apt-get install -qq doxygen - sudo apt-get install -qq libboost-dev language: cpp script: BOOST_ROOT=/usr cd build && cmake .. && make && make test
Make sure boost dev is installed before compiling
Make sure boost dev is installed before compiling
YAML
mit
naderman/pddl-qi
4672de225897dc9bb01dc165d08d067c52b282e5
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" # download test suite and run tests... submodule? meta testing project with # all of the reference implementations? script: - npm run test notifications: email: on_success: change on_failure: change
language: node_js node_js: - "0.10" - "0.12" - iojs sudo: false # download test suite and run tests... submodule? meta testing project with # all of the reference implementations? script: - npm run test notifications: email: on_success: change on_failure: change
Use container build and more node versions.
Use container build and more node versions.
YAML
bsd-3-clause
digitalbazaar/jsonld-signatures
f24b2fe75ada6be66c7661284b15f4dbc504fd9e
.travis.yml
.travis.yml
language: node_js node_js: - 'stable' - '8.10.0' env: global: - TWILIO_ACCOUNT_SID=Your-Account-SID - TWILIO_API_KEY=Your-Twilio-API-KEY - TWILIO_API_SECRET=Your-Twilio-API-SECRET - TWILIO_IPM_SERVICE_SID=Your-Twilio-IPM-SERVICE-SID cache: directories: - node_modules
language: node_js node_js: - 'stable' - '8.10.0' env: global: - TWILIO_ACCOUNT_SID=Your-Account-SID - TWILIO_API_KEY=Your-Twilio-API-KEY - TWILIO_API_SECRET=Your-Twilio-API-SECRET - TWILIO_CHAT_SERVICE_SID=Your-Twilio-CHAT-SERVICE-SID cache: directories: - node_modules
Fix IPM Service ID reference
Fix IPM Service ID reference
YAML
mit
TwilioDevEd/twiliochat-node,TwilioDevEd/twiliochat-node
dea36141ce251ceeb0d2f54faaaa7959657ec56d
.travis.yml
.travis.yml
language: c os: - linux - osx env: global: - SETUP_XVFB=True - CONDA_CHANNELS='conda-forge' - HDF5_VERSION=1.8 - HYPERION_HDF5_VERSION=18 - CONDA_DEPENDENCIES='numpy astropy h5py matplotlib yt mpich hdf5 gcc' - SETUP_CMD='test' - MPLBACKEND='Agg' matrix: - PYTHON_VERSION=2.7 - PYTHON_VERSION=3.5 - PYTHON_VERSION=3.6 install: - git clone git://github.com/astropy/ci-helpers.git - source ci-helpers/travis/setup_conda.sh script: - ./configure - make serial - sudo make install - python setup.py install # to get the hyperion script installed - python setup.py $SETUP_CMD
language: c os: - linux - osx env: global: - SETUP_XVFB=True - CONDA_CHANNELS='conda-forge' - HDF5_VERSION=1.8 - HYPERION_HDF5_VERSION=18 - CONDA_DEPENDENCIES='numpy astropy h5py matplotlib yt mpich hdf5 gcc_linux-64' - SETUP_CMD='test' - MPLBACKEND='Agg' matrix: - PYTHON_VERSION=2.7 - PYTHON_VERSION=3.5 - PYTHON_VERSION=3.6 install: - git clone git://github.com/astropy/ci-helpers.git - source ci-helpers/travis/setup_conda.sh script: - ./configure - make serial - sudo make install - python setup.py install # to get the hyperion script installed - python setup.py $SETUP_CMD
Change which compiler we use on Travis
Change which compiler we use on Travis
YAML
bsd-2-clause
hyperion-rt/hyperion,hyperion-rt/hyperion,hyperion-rt/hyperion
68468508763a2836ce8bc68ed007c22925d18600
.travis.yml
.travis.yml
sudo: false language: d os: - linux d: - dmd-2.068.2 - dmd-2.067.1 - dmd-2.066.1 - ldc-0.15.1 - gdc-5.2.0 matrix: allow_failures: - env: ARCH=x86 d: gdc-5.2.0 addons: apt: packages: - gcc-multilib notifications: email: false env: global: - secure: "Xa3ZSmQPQytDFrMBMdhO0ObnrIb0GdvUsz0LEKxHerQN/+qSos5In5WI7ATddJyCxK1RvvzaxWdiMRurfQSSW5vAW0KCRpXnEIZ1q70+WGgXH7eOT5ZVt0bHo3L2Jo9kYXwCSWxEfiQsREliEj5RXyD4SCbGFbeP2a/4x9A1VuI=" matrix: - ARCH=x86 - ARCH=x86_64 script: dub test --arch=$ARCH; after_success: - ./push-ddoc.sh
sudo: false language: d os: - linux d: - dmd-2.068.2 - dmd-2.067.1 - dmd-2.066.1 - ldc-0.15.1 - gdc-5.2.0 addons: apt: packages: - gcc-multilib notifications: email: false env: global: - secure: "Xa3ZSmQPQytDFrMBMdhO0ObnrIb0GdvUsz0LEKxHerQN/+qSos5In5WI7ATddJyCxK1RvvzaxWdiMRurfQSSW5vAW0KCRpXnEIZ1q70+WGgXH7eOT5ZVt0bHo3L2Jo9kYXwCSWxEfiQsREliEj5RXyD4SCbGFbeP2a/4x9A1VuI=" matrix: - ARCH=x86 - ARCH=x86_64 script: dub test --arch=$ARCH; after_success: - ./push-ddoc.sh
Remove allow_failures from Travis config
Remove allow_failures from Travis config
YAML
mit
JakobOvrum/Dirk
08f612700adbf832a212be81cb535fe1bc69cdc8
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" script: "node tests/tests.js"
sudo: false language: node_js node_js: - "0.10" - "0.12" - "iojs"
Test in Node v0.12 and io.js
Test in Node v0.12 and io.js
YAML
mit
mathiasbynens/Array.of
d797d67aa8e92c78950daa1a8c15a748dec7a0f3
.travis.yml
.travis.yml
language: python python: - "2.7" env: - DJANGO=1.2.7 - DJANGO=1.3.7 - DJANGO=1.4.20 - DJANGO=1.5.12 - DJANGO=1.6.11 - DJANGO=1.7.8 - DJANGO=1.8.2 install: - pip install -q Django==$DJANGO --use-mirrors - pip install pep8 --use-mirrors - pip install pyflakes - pip install -q -e . --use-mirrors #before_script: #- "pep8 --exclude=migrations --ignore=E501,E225 datatableview" #- pyflakes datatableview script: - python datatableview/tests/example_project/manage.py test
language: python python: - "2.7" env: - DJANGO=1.4.20 - DJANGO=1.5.12 - DJANGO=1.6.11 - DJANGO=1.7.8 - DJANGO=1.8.2 install: - pip install -q Django==$DJANGO --use-mirrors - pip install pep8 --use-mirrors - pip install pyflakes - pip install -q -e . --use-mirrors #before_script: #- "pep8 --exclude=migrations --ignore=E501,E225 datatableview" #- pyflakes datatableview script: - python datatableview/tests/example_project/manage.py test
Remove Django 1.2 and 1.3 from Travis Testing
Remove Django 1.2 and 1.3 from Travis Testing
YAML
apache-2.0
doganmeh/django-datatable-view,pivotal-energy-solutions/django-datatable-view,doganmeh/django-datatable-view,jangeador/django-datatable-view,greenbender/django-datatable-view,CloudNcodeInc/django-datatable-view,annaproch/django-datatable-view,annabed/django-datatable-view,jangeador/django-datatable-view,addgene/django-datatable-view,CloudNcodeInc/django-datatable-view,annabed/django-datatable-view,annabed/django-datatable-view,jangeador/django-datatable-view,pivotal-energy-solutions/django-datatable-view,annaproch/django-datatable-view,addgene/django-datatable-view,pivotal-energy-solutions/django-datatable-view,johnrtipton/django-datatable-view,greenbender/django-datatable-view,CloudNcodeInc/django-datatable-view,greenbender/django-datatable-view,johnrtipton/django-datatable-view,addgene/django-datatable-view,johnrtipton/django-datatable-view,doganmeh/django-datatable-view,annaproch/django-datatable-view
7eff7710bcc67fcb7b4121320a6d7a5ac3380cf5
.travis.yml
.travis.yml
{ "language": "node_js", "node_js": 8.5.0, "env": "CXX=g++-4.8", "addons": { "apt": { "sources": ubuntu-toolchain-r-test, "packages": ["g++-4.8", "libgif-dev"] } }, "install": [ "npm install typescript -g", "npm install mocha -g", "npm install ts-mocha -g", "npm install amd-loader -g", "npm install typedoc -g", "npm install jquery -g", "npm install jquery", "npm install --save-dev @types/jquery", "npm install jsdom", "npm install jsdom-global", "npm install canvas" ], "script": [ "make all", "make test" ], "group": "stable", "dist": "precise", "os": "linux", "notifications": { "email": false }, "deploy": { "provider": "pages", "skip_cleanup": true, "local_dir": "build", "github_token": $GITHUB_TOKEN, "on": { "branch": master } } }
{ "language": "node_js", "node_js": 8.5.0, "env": "CXX=g++-4.8", "addons": { "apt": { "sources": ubuntu-toolchain-r-test, "packages": ["g++-4.8", "libgif-dev"] } }, "install": [ "npm install typescript -g", "npm install mocha -g", "npm install ts-mocha -g", "npm install amd-loader -g", "npm install typedoc -g", "npm install jquery -g", "npm install jquery", "npm install --save-dev @types/jquery", "npm install jsdom", "npm install jsdom-global", "npm install [email protected]" ], "script": [ "make all", "make test" ], "group": "stable", "dist": "precise", "os": "linux", "notifications": { "email": false }, "deploy": { "provider": "pages", "skip_cleanup": true, "local_dir": "build", "github_token": $GITHUB_TOKEN, "on": { "branch": master } } }
Put specific version of canvas, since last version (2.0.0-alpha) has bugs.
Put specific version of canvas, since last version (2.0.0-alpha) has bugs.
YAML
mit
Daru13/RubEns,Daru13/RubEns