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
3c2416c648a6d7248de90493fa0b70cee98547d5
stack.yaml
stack.yaml
resolver: lts-8.2 packages: - ./persistent - ./persistent-template - ./persistent-sqlite - ./persistent-test - ./persistent-mongoDB - ./persistent-mysql - ./persistent-postgresql - ./persistent-redis extra-deps: - monad-logger-0.3.28 - mysql-simple-0.4.4
resolver: lts-8.2 packages: - ./persistent - ./persistent-template - ./persistent-sqlite - ./persistent-test - ./persistent-mongoDB - ./persistent-mysql - ./persistent-postgresql - ./persistent-redis extra-deps: - monad-logger-0.3.28 - mysql-simple-0.4.4 - mono-traversable-1.0.8.1 - unliftio-0.2.4.0 - unliftio-core-0.1.1.0 - async-2.1.1.1 - typed-process-0.2.1.0 - git: https://github.com/snoyberg/conduit commit: 7f75bfca8d479e1737861a75437a288af662a3cf subdirs: - conduit - conduit-extra - resourcet
Include extra-deps for conduit 1.3
Include extra-deps for conduit 1.3
YAML
mit
gbwey/persistent,paul-rouse/persistent,gbwey/persistent,bitemyapp/persistent,erikd/persistent,gbwey/persistent,plow-technologies/persistent,naushadh/persistent,yesodweb/persistent,creichert/persistent
7bebc4b9321194c5f5ca72a2dd347feeffe6a25b
recipes/pyolog/meta.yaml
recipes/pyolog/meta.yaml
package: name: pyolog version: {{ environ['GIT_DESCRIBE_TAG'] }}.post{{ environ['GIT_DESCRIBE_NUMBER'] }} source: git_url: https://github.com/NSLS-II-CSX/pyOlog.git git_tag: master build: string: {{ environ.get('GIT_BUILD_STR', '') }}_np{{ np }}py{{ py }} requirements: build: - python - setuptools run: - python - setuptools - requests - keyring - six - ipython test: imports: - pyOlog # this has a user input on import (?!?) so don't test #- pyOlog.cli.ipy about: home: http://olog.github.io/ license: MIT summary: Python client for the OLog
package: name: pyolog version: {{ environ['GIT_DESCRIBE_TAG'] }}.post{{ environ['GIT_DESCRIBE_NUMBER'] }} source: git_url: https://github.com/NSLS-II/pyOlog.git git_tag: master build: string: {{ environ.get('GIT_BUILD_STR', '') }}_np{{ np }}py{{ py }} requirements: build: - python - setuptools run: - python - setuptools - requests - keyring - six - ipython test: imports: - pyOlog # this has a user input on import (?!?) so don't test #- pyOlog.cli.ipy about: home: http://olog.github.io/ license: MIT summary: Python client for the OLog
Fix the pyolog url to point to NSLS-II
MNT: Fix the pyolog url to point to NSLS-II
YAML
bsd-3-clause
NSLS-II/lightsource2-recipes,NSLS-II/lightsource2-recipes,NSLS-II/lightsource2-recipes,NSLS-II/auto-build-tagged-recipes,NSLS-II/lightsource2-recipes,NSLS-II/auto-build-tagged-recipes
9167cc9c004a9627995ef94f33bc8a299cf24d38
tasks.yaml
tasks.yaml
# The following tasks are executed in the order they are declared # Priorities are important, this ensure that this plugin is deployed before # LMA Collector (priority 8200). - role: [influxdb_grafana] stage: post_deployment/8100 type: puppet parameters: puppet_manifest: puppet/manifests/firewall.pp puppet_modules: /etc/puppet/modules timeout: 300 - role: [influxdb_grafana] stage: post_deployment/8100 type: puppet parameters: puppet_manifest: puppet/manifests/setup_influxdir.pp puppet_modules: puppet/modules timeout: 600 - role: [influxdb_grafana] stage: post_deployment/8100 type: puppet parameters: puppet_manifest: puppet/manifests/influxdb.pp puppet_modules: puppet/modules timeout: 600 - role: [influxdb_grafana] stage: post_deployment/8100 type: puppet parameters: puppet_manifest: puppet/manifests/grafana.pp puppet_modules: puppet/modules timeout: 600
# The following tasks are executed in the order they are declared # Priorities are important, this ensure that this plugin is deployed before # LMA Collector (priority 8200). - role: [influxdb_grafana] stage: post_deployment/8100 type: puppet parameters: puppet_manifest: puppet/manifests/firewall.pp puppet_modules: /etc/puppet/modules timeout: 300 - role: [influxdb_grafana] stage: post_deployment/8100 type: puppet parameters: puppet_manifest: puppet/manifests/influxdb.pp puppet_modules: puppet/modules timeout: 600 - role: [influxdb_grafana] stage: post_deployment/8100 type: puppet parameters: puppet_manifest: puppet/manifests/grafana.pp puppet_modules: puppet/modules timeout: 600
Remove task calling manifest previously removed
Remove task calling manifest previously removed Change-Id: I0e336f3a5adf0890cec97275cf78b8be6b37345a
YAML
apache-2.0
stackforge/fuel-plugin-influxdb-grafana,stackforge/fuel-plugin-influxdb-grafana,stackforge/fuel-plugin-influxdb-grafana,stackforge/fuel-plugin-influxdb-grafana
7b55a990e22c438291f4e32f5c8d6c89974b6c30
tasks/pips/pip.yml
tasks/pips/pip.yml
--- # Mange SCL pips for installed Python versions - name: "Verify Python: {{ item.python_ver }} exists" stat: path: "/opt/rh/{{ item.python_ver }}/enable" changed_when: false register: scl_python_ver_result - name: "Install PIP for Python: {{ item.python_ver }}" become: true easy_install: name: pip executable: "/usr/bin/scl enable python33 -- easy_install" when: (scl_python_ver_result.stat.exists) - name: "Install PIP: {{ item.name }} for Python: {{ item.python_ver }}" become: true pip: name: "{{ item.name }}" state: "{{ item.state | default('present') }}" version: "{{ item.version | default(omit) }}" executable: "/usr/bin/scl enable {{ item.python_ver }} -- pip" when: (scl_python_ver_result.stat.exists)
--- # Mange SCL pips for installed Python versions - name: "Verify Python: {{ item.python_ver }} exists" stat: path: "/opt/rh/{{ item.python_ver }}/enable" changed_when: false register: scl_python_ver_result - name: "Install PIP for Python: {{ item.python_ver }}" become: true easy_install: name: pip executable: "/usr/bin/scl enable {{ item.python_ver }} -- easy_install" when: (scl_python_ver_result.stat.exists) - name: "Install PIP: {{ item.name }} for Python: {{ item.python_ver }}" become: true pip: name: "{{ item.name }}" state: "{{ item.state | default('present') }}" version: "{{ item.version | default(omit) }}" executable: "/usr/bin/scl enable {{ item.python_ver }} -- pip" when: (scl_python_ver_result.stat.exists)
Replace hardcoded python version with actual
Replace hardcoded python version with actual
YAML
mit
smbambling/ansible-role-scl,smbambling/ansible-role-scl
76a55675637f7de26a4516fd82121c70e62656e0
shippable.yml
shippable.yml
language: node_js node_js: - "4" build: ci: - npm prune - shippable_retry npm install --unsafe-perm - npm test post_ci: - if [ "$IS_RELEASE" == "true" ] && [ "$IS_FORK" == "false" ]; then npm run release; fi cache: true cache_dir_list: - $SHIPPABLE_BUILD_DIR/node_modules - $SHIPPABLE_BUILD_DIR/elm-stuff - $SHIPPABLE_BUILD_DIR/.git integrations: hub: - integrationName: docker-hub type: docker branches: only: - master
language: node_js node_js: - "4" build: ci: - npm prune - shippable_retry npm install --unsafe-perm - npm test post_ci: - if [ "$IS_RELEASE" == "true" ] && [ "$IS_FORK" == "false" ]; then npm run release; fi cache: true cache_dir_list: - $SHIPPABLE_BUILD_DIR/node_modules - $SHIPPABLE_BUILD_DIR/elm-stuff - $SHIPPABLE_BUILD_DIR/.git integrations: hub: - integrationName: docker-hub type: docker
Enable Shippable Hub integration for all branches
Enable Shippable Hub integration for all branches
YAML
mit
gkubisa/elm-app-boilerplate,gkubisa/elm-app-boilerplate
a655b03d3a79e3026082094527106c5859d79dfe
circle.yml
circle.yml
machine: environment: KITCHEN_LOCAL_YAML: .kitchen.docker.yml ruby: version: 2.2.2 services: - docker dependencies: bundler: without: [development, kitchen_cloud, kitchen_vagrant] test: override: - bundle exec rake - bundle exec kitchen verify -c: timeout: 900 general: artifacts: - "~/.kitchen/logs/"
machine: environment: KITCHEN_LOCAL_YAML: .kitchen.docker.yml ruby: version: 2.2.2 services: - docker dependencies: bundler: without: [development, kitchen_cloud, kitchen_vagrant] test: override: - bundle exec rake - bundle exec kitchen verify -c: timeout: 900 general: artifacts: - ".kitchen/logs/"
Use artifact directory relative to build directory
Use artifact directory relative to build directory Ref https://circleci.com/docs/configuration#artifacts
YAML
apache-2.0
lhslll/nginx,glenjamin/nginx,ffuenf/nginx,lajabs/nginx,glenjamin/nginx,lajabs/nginx,ashumski/nginx,glenjamin/nginx,caidongyun/nginx,miguelaferreira/nginx,miguelaferreira/nginx,caidongyun/nginx,ashumski/nginx,bitpusher-real/nginx,hrkd/nginx,mbilski/chef-nginx,lajabs/nginx,mbilski/chef-nginx,hrkd/nginx,ashumski/nginx,CloudHealth/nginx,CloudHealth/nginx,ffuenf/nginx,mbilski/chef-nginx,CloudHealth/nginx,hrkd/nginx,bitpusher-real/nginx,miguelaferreira/nginx,bitpusher-real/nginx,caidongyun/nginx,ffuenf/nginx,lhslll/nginx,lhslll/nginx
883efde72bc2c948b2faa1ed54d36193b396a4f7
circle.yml
circle.yml
machine: java: version: oraclejdk8 dependencies: override: - ./gradlew dependencies test: override: - ./gradlew check --info post: - mkdir -p $CIRCLE_TEST_REPORTS/junit/ - find . -type f -regex ".*/build/test-results/.*xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \; - find . -type f -regex ".*/build/integrationTest-results/.*xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \;
machine: java: version: oraclejdk8 post: - rm -f jce_policy-8.zip - curl -o jce_policy-8.zip -v -j -k -L -H "Cookie: oraclelicense=accept-securebackup-cookie" http://download.oracle.com/otn-pub/java/jce/8/jce_policy-8.zip - unzip -j -o -d $JAVA_HOME/jre/lib/security jce_policy-8.zip dependencies: override: - ./gradlew dependencies test: override: - ./gradlew check post: - mkdir -p $CIRCLE_TEST_REPORTS/junit/ - find . -type f -regex ".*/build/test-results/.*xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \; - find . -type f -regex ".*/build/integrationTest-results/.*xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \;
Add unlimited JCE policy to Circle CI JDK
Add unlimited JCE policy to Circle CI JDK
YAML
mit
AusDTO/citizenship-appointment-server,AusDTO/citizenship-appointment-server,AusDTO/citizenship-appointment-server
7f2fa7279a52dace0b5faecb0e04dce03c71cadf
circle.yml
circle.yml
machine: services: - docker dependencies: override: - docker info - docker pull thewtex/itkultrasound-base test: override: - mkdir ~/ITKUltrasound-build - docker run -v ~/ITKUltrasound:/usr/src/ITKUltrasound -v ~/ITKUltrasound-build:/usr/src/ITKUltrasound-build thewtex/itkultrasound-base /usr/src/ITKUltrasound/test/Docker/test.sh - cp -r ~/ITKUltrasound-build/Testing/Temporary/* $CIRCLE_ARTIFACTS/
machine: services: - docker dependencies: override: - docker info - docker pull thewtex/itkultrasound-base - docker pull thewtex/itkultrasound-test test: override: - mkdir ~/ITKUltrasound-build - docker run -v ~/ITKUltrasound:/usr/src/ITKUltrasound -v ~/ITKUltrasound-build:/usr/src/ITKUltrasound-build thewtex/itkultrasound-test /usr/src/ITKUltrasound/test/Docker/Test/test.sh - cp -r ~/ITKUltrasound-build/Testing/Temporary/* $CIRCLE_ARTIFACTS/
Update CircleCI configuration for new Docker layout.
BUG: Update CircleCI configuration for new Docker layout.
YAML
apache-2.0
thewtex/ITKUltrasound,KitwareMedical/ITKUltrasound,KitwareMedical/ITKUltrasound,KitwareMedical/ITKUltrasound,thewtex/ITKUltrasound,thewtex/ITKUltrasound
6e0e2e921f090f34a2fabf389a594437a53ee756
circle.yml
circle.yml
machine: python: version: 2.7.3 services: - docker dependencies: - docker build --rm=false -t gamebuildr/gogeta . - docker tag gamebuildr/gogeta gcr.io/gamebuildr-151415/gamebuildr-gogeta deployment: prod: branch: master commands: - sudo /opt/google-cloud-sdk/bin/gcloud docker push gcr.io/gamebuildr-151415/gamebuildr-gogeta
machine: python: version: 2.7.3 services: - docker dependencies: pre: - docker build --rm=false -t gamebuildr/gogeta . - docker tag gamebuildr/gogeta gcr.io/gamebuildr-151415/gamebuildr-gogeta deployment: prod: branch: master commands: - sudo /opt/google-cloud-sdk/bin/gcloud docker push gcr.io/gamebuildr-151415/gamebuildr-gogeta
Fix dependencies in Circle CI yaml
Fix dependencies in Circle CI yaml
YAML
mpl-2.0
herman-rogers/Gogeta,Gamebuildr/Gogeta,herman-rogers/Gogeta,Gamebuildr/Gogeta
9706783248ca974b68602150c17a9a9dea64c5b4
circle.yml
circle.yml
machine: node: version: v5.7.0 test: pre: - npm run lint:failfast post: - '[ -z "${CIRCLE_PR_USERNAME}" ] && npm run coveralls || false'
machine: node: version: v5.7.0 test: pre: - npm run lint:failfast post: - '[ -z "${CIRCLE_PR_USERNAME}" ] && npm run coveralls || true'
Fix CircleCI coveralls command for public fork PRs
Fix CircleCI coveralls command for public fork PRs
YAML
mit
TouchBistro/frig,frig-js/frig,TouchBistro/frig,frig-js/frig
d81bbe3dda7744154108b8bfbd3a25f3be50aa1f
circle.yml
circle.yml
machine: python: version: 3.4.0 node: version: 0.10.28 dependencies: override: - pip install -U -r django/dev-requirements.txt coveralls https://github.com/treyhunner/codecov-python/archive/master.zip: timeout: 60 - cd ember && npm install && bower install: timeout: 60 test: override: - cd django && coverage run manage.py test: timeout: 60 - cd ember && ./node_modules/ember-cli/bin/ember test: timeout: 60 - cd django && coveralls: timeout: 60 - cd django && codecov --dir=django: timeout: 60
machine: python: version: 3.4.0 node: version: 0.10.28 dependencies: override: - pip install -U -r django/dev-requirements.txt coveralls https://github.com/treyhunner/codecov-python/archive/master.zip: timeout: 60 - cd ember && npm install && bower install: timeout: 60 test: override: - cd django && coverage run manage.py test: timeout: 60 - cd ember && ./node_modules/ember-cli/bin/ember test: timeout: 60 - cd django && coveralls: timeout: 60 - cd django && codecov --path=django: timeout: 60
Fix codecov configuration (dir -> path)
Fix codecov configuration (dir -> path)
YAML
bsd-3-clause
FreeMusicNinja/freemusic.ninja,FreeMusicNinja/freemusic.ninja
c028d230a4b57adebd198f025315edf140bc854c
circle.yml
circle.yml
dependencies: pre: - google-chrome --version - wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - - sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' - sudo apt-get update - sudo apt-get --only-upgrade install google-chrome-stable - google-chrome --version machine: ruby: version: 2.3.1 node: version: 5.7.0 post: - npm install -g ionic cordova timezone: Asia/Tokyo
dependencies: pre: - google-chrome --version - wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - - sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' - sudo apt-get update - sudo apt-get --only-upgrade install google-chrome-stable - google-chrome --version machine: ruby: version: 2.3.1 node: version: 5.7.0 post: - npm install -g ionic cordova timezone: Asia/Tokyo test: post: - mv coverage $CIRCLE_ARTIFACTS
Move covarage to $CIRCLE_ARTIFACTS to see in CircleCI
Move covarage to $CIRCLE_ARTIFACTS to see in CircleCI
YAML
mit
takeo-asai/typescript-starter,takeo-asai/typescript-starter,takeo-asai/typescript-starter,takeo-asai/typescript-starter
43b84991a141549009ce9d465ca444d455b31f6f
circle.yml
circle.yml
machine: environment: ANDROID_HOME: /usr/local/android-sdk-linux ANDROID_BUILD_TOOLS: 24.0.1 ANDROID_PLATFORM: 24 dependencies: pre: - if [ ! -e $ANDROID_HOME/build-tools/$ANDROID_BUILD_TOOLS ]; then echo y | android update sdk --no-ui --all --filter build-tools-$ANDROID_BUILD_TOOLS; fi - if [ ! -e $ANDROID_HOME/platforms/android-$ANDROID_PLATFORM ]; then echo y | android update sdk --no-ui --all --filter "android-${ANDROID_PLATFORM}"; fi cache_directories: - /usr/local/android-sdk-linux/build-tools/24.0.1 - /usr/local/android-sdk-linux/platforms/android-24 - /usr/local/android-sdk-linux/tools test: override: - ./gradlew lint test assembleDebug assembleAndroidTest countDebugDexMethods -PdisablePreDex - scripts/remoteTesting.sh post: - mkdir $CIRCLE_TEST_REPORTS/dexcount - cp -r app/build/outputs/dexcount/debugChart/* $CIRCLE_TEST_REPORTS/dexcount - mkdir $CIRCLE_TEST_REPORTS/lint - cp app/build/outputs/lint-results-debug.html $CIRCLE_TEST_REPORTS/lint
machine: environment: ANDROID_HOME: /usr/local/android-sdk-linux ANDROID_BUILD_TOOLS: 24.0.1 ANDROID_PLATFORM: 24 dependencies: pre: - if [ ! -e $ANDROID_HOME/build-tools/$ANDROID_BUILD_TOOLS ]; then echo y | android update sdk --no-ui --all --filter build-tools-$ANDROID_BUILD_TOOLS; fi - if [ ! -e $ANDROID_HOME/platforms/android-$ANDROID_PLATFORM ]; then echo y | android update sdk --no-ui --all --filter "android-${ANDROID_PLATFORM}"; fi cache_directories: - /usr/local/android-sdk-linux/build-tools/24.0.1 - /usr/local/android-sdk-linux/platforms/android-24 - /usr/local/android-sdk-linux/tools test: override: - ./gradlew lint testDebugUnitTestCoverage assembleDebug assembleAndroidTest countDebugDexMethods -PdisablePreDex - scripts/remoteTesting.sh post: - mkdir $CIRCLE_TEST_REPORTS/dexcount - cp -r app/build/outputs/dexcount/debugChart/* $CIRCLE_TEST_REPORTS/dexcount - mkdir $CIRCLE_TEST_REPORTS/lint - cp app/build/outputs/lint-results-debug.html $CIRCLE_TEST_REPORTS/lint - mkdir $CIRCLE_TEST_REPORTS/test - cp -r app/build/reports/tests/debug $CIRCLE_TEST_REPORTS/test - mkdir $CIRCLE_TEST_REPORTS/jacoco - cp -r app/build/reports/jacoco/testDebugUnitTestCoverage/html $CIRCLE_TEST_REPORTS/jacoco
Add code coverage to exported reports
Add code coverage to exported reports
YAML
apache-2.0
ustwo/android-boilerplate,ustwo/android-boilerplate
140ddff4a6ed8b1f81b4f18243d5da4c0d8dfbd2
circle.yml
circle.yml
machine: environment: ENV: dev SECRET_KEY: testing-on-circle-ci POSTGRES_USER: ubuntu POSTGRES_HOST: localhost UNPP_LOGS_PATH: /tmp dependencies: pre: - pip install -r backend/requirements/dev.pip test: override: - cd backend && python manage.py test --noinput --parallel - cd backend && flake8
machine: environment: ENV: dev SECRET_KEY: testing-on-circle-ci POSTGRES_USER: ubuntu POSTGRES_HOST: localhost UNPP_LOGS_PATH: /home/ubuntu/logs dependencies: pre: - mkdir -p /home/ubuntu/logs - pip install -r backend/requirements/dev.pip test: override: - cd backend && python manage.py test --noinput --parallel - cd backend && flake8
Use ubuntu dir for logs
Use ubuntu dir for logs
YAML
apache-2.0
unicef/un-partner-portal,unicef/un-partner-portal,unicef/un-partner-portal,unicef/un-partner-portal
a1b70999b6108c23bd914c28b1f55a8c4c27f854
circle.yml
circle.yml
# # Copyright (C) 2016 Red Hat, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # dependencies: pre: - sudo update-alternatives --set java /usr/lib/jvm/jdk1.8.0/bin/java - sudo update-alternatives --set javac /usr/lib/jvm/java-8-openjdk-amd64/bin/javac - echo 'export JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64' >> ~/.circlerc override: - mvn dependency:resolve test: override: - mvn integration-test - mvn -N license:check post: - mkdir -p $CIRCLE_TEST_REPORTS/junit/ - find . -type f -regex ".*/target/.*-reports/.*xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \; - bash <(curl -s https://codecov.io/bash) deployment: pr: owner: jimmidyson branch: /.+/ commands: - ./automerge.sh
# # Copyright (C) 2016 Red Hat, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # dependencies: pre: - sudo update-alternatives --set java /usr/lib/jvm/jdk1.8.0/bin/java - sudo update-alternatives --set javac /usr/lib/jvm/java-8-openjdk-amd64/bin/javac - echo 'export JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64' >> ~/.circlerc override: - mvn dependency:resolve dependency:resolve-plugins test: override: - mvn integration-test - mvn -N license:check post: - mkdir -p $CIRCLE_TEST_REPORTS/junit/ - find . -type f -regex ".*/target/.*-reports/.*xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \; - bash <(curl -s https://codecov.io/bash) deployment: pr: owner: jimmidyson branch: /.+/ commands: - ./automerge.sh
Move plugin resolve to dependency phase on CircleCI
Move plugin resolve to dependency phase on CircleCI
YAML
apache-2.0
jimmidyson/acme-client,jimmidyson/acme-client
4f21b6de61bcb83645e7d57e3757416ec019a3f6
circle.yml
circle.yml
machine: services: - docker dependencies: pre: override: post: - make pgglaskugel - make tarball - cp pgglaskugel pgGlaskugel.tar.xz $CIRCLE_ARTIFACTS/ test: override: - make pgglaskugel - make test - cd tools/Test-CentOS7; ./run_test_in_docker.sh
machine: services: - docker dependencies: pre: override: post: - make pgglaskugel - make tarball - cp pgglaskugel pgGlaskugel.tar.xz $CIRCLE_ARTIFACTS/ test: override: - make test - cd tools/Test-CentOS7; ./run_test_in_docker.sh
Revert "Add additional build with makefile"
Revert "Add additional build with makefile" This reverts commit 00df3adb3316ac17629409b65987ea4b55670057.
YAML
mit
DaniloE/pgglaskugel,xxorde/pgglaskugel,xxorde/pgglaskugel,xxorde/pgglaskugel
f41a82ba71dc575dbd7d58b9b3ace32cab9751ed
circle.yml
circle.yml
machine: timezone: America/Argentina/Buenos_Aires ruby: version: 2.3.1 general: branches: ignore: - gh-pages checkout: pre: - git config --global user.email "bot@uqbar.org" - git config --global user.name "UqbarBot" - npm install -g bower database: override: - echo "Skipping DB section." dependencies: override: - gem install rake - bundle install --jobs=10 --retry=3 - bower install test: override: - bundle exec rake test >> failed_urls.txt deployment: publish: branch: master commands: - rake publish
machine: timezone: America/Argentina/Buenos_Aires ruby: version: 2.3.1 general: branches: ignore: - gh-pages checkout: pre: - git config --global user.email "bot@uqbar.org" - git config --global user.name "UqbarBot" - npm install -g bower database: override: - echo "Skipping DB section." dependencies: override: - gem install rake - bundle install --jobs=10 --retry=3 - bower install test: override: - bundle exec rake test >> $CIRCLE_ARTIFACTS/failed_urls.txt deployment: publish: branch: master commands: - rake publish
Move failed_urls to artifact directory
Move failed_urls to artifact directory
YAML
lgpl-2.1
uqbar-project/wiki,uqbar-project/wiki,uqbar-project/wiki,uqbar-project/wiki,uqbar-project/wiki
12042a625b190c2dae9671636c64e338c943c5b4
.github/workflows/build_release_package.yml
.github/workflows/build_release_package.yml
name: Build release version on: push: tags: - 'v*' pull_request: branches: master jobs: deploy: runs-on: ubuntu-20.04 steps: - name: Set up python 3.6 uses: actions/setup-python@v2 with: python-version: 3.6 - name: Checkout uses: actions/checkout@v2 - name: Install requirements run: | pip install pip==21.3.1 setuptools==47.1.0 wheel==0.37.0 pip install -r requirements/base.txt -r requirements/dev.txt - name: Versioning if: ${{ startsWith(github.ref, 'refs/tags/') }} shell: bash run: | GITHUB_TAG="${GITHUB_REF##refs/tags/v}" [[ $GITHUB_TAG =~ ^[0-9]+.[0-9]+.[0-9]+$ ]] && \ echo "__version__ = \"${GITHUB_TAG}\"" > pymanopt/_version.py - name: Build sdist and wheel run: python setup.py sdist bdist_wheel - name: Publish to pypi on tags if: ${{ startsWith(github.ref, 'refs/tags/') }} uses: pypa/gh-action-pypi-publish@release/v1 with: user: __token__ password: ${{ secrets.PYPI_API_TOKEN }}
name: Build release version on: push: tags: - 'v*' pull_request: branches: master jobs: deploy: runs-on: ubuntu-20.04 steps: - name: Set up python 3.6 uses: actions/setup-python@v2 with: python-version: 3.6 - name: Checkout uses: actions/checkout@v2 - name: Install requirements run: | pip install pip==21.3.1 setuptools==47.1.0 wheel==0.37.0 pip install -r requirements/base.txt -r requirements/dev.txt - name: Versioning if: ${{ startsWith(github.ref, 'refs/tags/') }} shell: bash run: | GITHUB_TAG="${GITHUB_REF##refs/tags/v}" [[ $GITHUB_TAG =~ ^[0-9]+.[0-9]+.[0-9]+ ]] && \ echo "__version__ = \"${GITHUB_TAG}\"" > pymanopt/_version.py - name: Build sdist and wheel run: python setup.py sdist bdist_wheel - name: Publish to pypi on tags if: ${{ startsWith(github.ref, 'refs/tags/') }} uses: pypa/gh-action-pypi-publish@release/v1 with: user: __token__ password: ${{ secrets.PYPI_API_TOKEN }}
Add suport for release candidate tags
Add suport for release candidate tags Signed-off-by: Niklas Koep <342d5290239d9c5264c8f98185afedb99596601a@gmail.com>
YAML
bsd-3-clause
pymanopt/pymanopt,pymanopt/pymanopt
db8410c3ff36ef7625987648eacac89116f81e14
build.yaml
build.yaml
repositories: remote: - http://repo1.maven.org/maven2 artifacts: javax_javaee: javax:javaee-api:jar:7.0 javax_annotation: com.google.code.findbugs:jsr305:jar:2.0.1 gwt_user: com.google.gwt:gwt-user:jar:2.8.0 gwt_dev: com.google.gwt:gwt-dev:jar:2.8.0 gwt_websockets: org.realityforge.gwt.websockets:gwt-websockets:jar:1.1.2
repositories: remote: - http://repo1.maven.org/maven2 artifacts: javax_javaee: javax:javaee-api:jar:7.0 javax_annotation: com.google.code.findbugs:jsr305:jar:2.0.1 gwt_user: com.google.gwt:gwt-user:jar:2.8.0 gwt_dev: com.google.gwt:gwt-dev:jar:2.8.0 gwt_websockets: org.realityforge.gwt.websockets:gwt-websockets:jar:1.2
Move to latest version of websockets library
Move to latest version of websockets library
YAML
apache-2.0
realityforge/gwt-websockets-example,realityforge/gwt-websockets-example,realityforge/gwt-websockets-example
39dbc7204d5e5d703c53cc1ae8718d23d13f33fc
.travis.yml
.travis.yml
language: python python: 3.5 env: - TOXENV=py26 - TOXENV=py27 - TOXENV=py32 - TOXENV=py33 - TOXENV=py34 - TOXENV=py35 - TOXENV=pypy - TOXENV=flake827 - TOXENV=flake834 install: - pip install tox script: - tox
language: python python: 3.5 env: - TOXENV=py26 - TOXENV=py27 - TOXENV=py33 - TOXENV=py34 - TOXENV=py35 - TOXENV=pypy - TOXENV=flake827 - TOXENV=flake834 install: - pip install tox script: - tox
Remove 3.2 from Travis config.
Remove 3.2 from Travis config.
YAML
mit
jezdez/envdir
e89f6d8b96067775ceea55be504fa03268bd4cbf
.travis.yml
.travis.yml
language: go sudo: false go: - 1.11.x env: global: - GOARCH=amd64 script: - go list ./... | grep -v vendor | xargs go vet - go list ./... | grep -v vendor | xargs go test -v
language: go sudo: false go: - 1.11.x env: global: - GOARCH=amd64 script: # TODO: Create lint #- go list ./... | grep -v vendor | xargs go vet - go list ./... | grep -v vendor | xargs go test -v
Disable lint because of a lots of messages about unkeyed field in structs
Disable lint because of a lots of messages about unkeyed field in structs
YAML
bsd-2-clause
ivan1993spb/clever-snake
7119a4abf92778d3070f2d57d8f400bba1e340f1
.travis.yml
.travis.yml
language: android jdk: oraclejdk8 android: components: - tools - platform-tools - build-tools-26.0.0 - android-25 - extra-android-m2repository script: - ./gradlew test after_script: - cat core/build/reports/lint-results.xml - cat analytics-firebase/build/reports/lint-results.xml notifications: slack: userfeeds:AsvcCusl8zszBQXwkToCYZzY
language: android jdk: oraclejdk8 android: components: - tools - platform-tools - build-tools-26.0.0 - android-25 - extra-android-m2repository - extra-google-m2repository script: - ./gradlew test after_script: - cat core/build/reports/lint-results.xml - cat analytics-firebase/build/reports/lint-results.xml notifications: slack: userfeeds:AsvcCusl8zszBQXwkToCYZzY
Add repo required by analytics-firebase module.
Add repo required by analytics-firebase module.
YAML
apache-2.0
Userfeeds/android-ads-sdk
2d0d8497919f385e53877c0846599416ce7a3bc8
.travis.yml
.travis.yml
language: ruby rvm: - 2.1.2 services: - mysql branches: only: - master notifications: email: on_success: change on_failure: change before_install: - "echo 'gem: --no-ri --no-rdoc' > ~/.gemrc" - mysql -e 'CREATE DATABASE hackweek_test;' before_script: - cp config/database.yml.example config/database.yml - cp config/application.yml.example config/application.yml - cp config/secrets.yml.example config/secrets.yml - RAILS_ENV=test bundle exec rake db:migrate --trace env: - TRAVIS=true script: - 'bundle exec rspec --color --format documentation'
language: ruby rvm: - 2.1.2 services: - mysql branches: only: - master notifications: email: on_success: change on_failure: change before_install: - "echo 'gem: --no-ri --no-rdoc' > ~/.gemrc" - mysql -e 'CREATE DATABASE hackweek_test;' before_script: - cp config/database.yml.example config/database.yml - cp config/application.yml.example config/application.yml - cp config/secrets.yml.example config/secrets.yml - RAILS_ENV=test bundle exec rake db:migrate --trace script: - 'bundle exec rspec --color --format documentation'
Remove explicit TRAVIS environment variable
Remove explicit TRAVIS environment variable As @hennevogel points out, this is a default set by Travis CI.
YAML
mit
SUSE/hackweek,hennevogel/hackweek,srinidhibs/hackweek,hennevogel/hackweek,SUSE/hackweek,srinidhibs/hackweek,srinidhibs/hackweek,srinidhibs/hackweek,SUSE/hackweek,hennevogel/hackweek
9daeec2f56c99ecfecd1c025af3b71e17ffa21f4
.travis.yml
.travis.yml
language: objective-c osx_image: xcode7.3 env: - LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8 before_install: gem install xcpretty -N script: "./Tests/travis.sh" notifications: slack: secure: Bgfiib7NP2/98fjJvW+PraQQFnj5X23+Zmvy9XqIe9NetzyNqWVN6URRFdcjvSnpah1kg2gGhIdkT5gvBT8HcP8OS6x/2lMFQsOhuA0mMoJ3tK3vhve10s3Mt8JvWqnEI3OmnDF/Yx7FN0sGiTskLYvi7jCzLY1QNqdg52VTsNI=
language: objective-c osx_image: xcode8 env: - LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8 before_install: gem install xcpretty -N script: "./Tests/travis.sh" notifications: slack: secure: Bgfiib7NP2/98fjJvW+PraQQFnj5X23+Zmvy9XqIe9NetzyNqWVN6URRFdcjvSnpah1kg2gGhIdkT5gvBT8HcP8OS6x/2lMFQsOhuA0mMoJ3tK3vhve10s3Mt8JvWqnEI3OmnDF/Yx7FN0sGiTskLYvi7jCzLY1QNqdg52VTsNI=
Switch Travis to the Xcode 8 image.
Switch Travis to the Xcode 8 image.
YAML
mit
narner/AudioKit,narner/AudioKit,narner/AudioKit,narner/AudioKit
05ad1846038cc63a7e875c96da1b8fb8ab073da3
.travis.yml
.travis.yml
# Config file for automatic testing at travis-ci.org sudo: false language: python python: 3.8 env: - TOX_ENV=py35 - TOX_ENV=py36 - TOX_ENV=py37 - TOX_ENV=py38 script: tox -e $TOX_ENV install: - pip install tox
# Config file for automatic testing at travis-ci.org sudo: false language: python matrix: - env: TOX_ENV=py35 python: 3.5 - env: TOX_ENV=py36 python: 3.6 - env: TOX_ENV=py37 python: 3.7 - env: TOX_ENV=py38 python: 3.8 script: tox -e $TOX_ENV install: - pip install tox
Use correct Python version on Travis
Use correct Python version on Travis
YAML
mit
The-Compiler/pytest-vw
81fb14216e8c1041b4e38969da0996813ad3f4d8
.travis.yml
.travis.yml
sudo: false language: python matrix: include: - python: '2.7' env: TOXENV=py27 - python: '3.3' env: TOXENV=py33 - python: '3.4' env: TOXENV=py34 - python: '3.5' env: TOXENV=py35 - python: '3.6' env: TOXENV=py36 - python: 'pypy' env: TOXENV=pypy - env: TOXENV=flake8 - env: TOXENV=checkspelling addons: apt: packages: - libtidy-0.99-0 - aspell - aspell-en install: - pip install tox - pip install 'coverage<4.0' - pip install codecov script: - tox after_success: - codecov branches: only: - master - md3
sudo: false language: python matrix: include: - python: '2.7' env: TOXENV=py27 - python: '3.4' env: TOXENV=py34 - python: '3.5' env: TOXENV=py35 - python: '3.6' env: TOXENV=py36 - python: 'pypy' env: TOXENV=pypy - env: TOXENV=flake8 - env: TOXENV=checkspelling addons: apt: packages: - libtidy-0.99-0 - aspell - aspell-en install: - pip install tox - pip install 'coverage<4.0' - pip install codecov script: - tox after_success: - codecov branches: only: - master - md3
Stop testing Python 3.3 on Travis
Stop testing Python 3.3 on Travis Wheel dropped support for Python 3.3 in pypa/wheel@c06998693d33d3e3.
YAML
bsd-3-clause
waylan/Python-Markdown,waylan/Python-Markdown
a77ea8ed7b5579c855bd7091e3854b3783ed2dc6
.travis.yml
.travis.yml
# Available ruby versions: http://rubies.travis-ci.org/ language: ruby os: - linux - osx rvm: - "2.0.0" - "2.1" # latest 2.1.x - "2.2" # latest 2.2.x - "2.3.1" # TODO: switch to "2.3" once travis fixes it - "ruby-head" - "jruby-9.0.5.0" - "jruby-head" script: bundle exec rake test branches: except: - "readme-edits" # Travis OS X support is pretty janky. These are some hacks to include tests # only on versions that actually work. # (last tested: 2016-04) matrix: exclude: - os: osx rvm: '2.2' - os: osx rvm: '2.3.1' # No 2.3.x at all include: - os: osx rvm: '2.2.2' # Travis OS X doesn't have 2.2 aliases allow_failures: - rvm: 'ruby-head' - os: osx rvm: 'jruby-9.0.5.0' - os: osx rvm: 'jruby-head' - os: linux rvm: 'jruby-head' fast_finish: true sudo: false
# Available ruby versions: http://rubies.travis-ci.org/ language: ruby os: - linux - osx rvm: - "2.0.0" - "2.1" # latest 2.1.x - "2.2" # latest 2.2.x - "2.3.1" # TODO: switch to "2.3" once travis fixes it - "ruby-head" - "jruby-9.0.5.0" - "jruby-head" script: bundle exec rake test branches: except: - "readme-edits" before_install: # bundler installation needed for jruby-head # https://github.com/travis-ci/travis-ci/issues/5861 - gem install bundler # Travis OS X support is pretty janky. These are some hacks to include tests # only on versions that actually work. # (last tested: 2016-04) matrix: exclude: - os: osx rvm: '2.2' - os: osx rvm: '2.3.1' # No 2.3.x at all include: - os: osx rvm: '2.2.2' # Travis OS X doesn't have 2.2 aliases allow_failures: - rvm: 'ruby-head' - os: osx rvm: 'jruby-9.0.5.0' - os: osx rvm: 'jruby-head' - os: linux rvm: 'jruby-head' fast_finish: true sudo: false
Install bundler in case it's not found.
Install bundler in case it's not found. https://github.com/travis-ci/travis-ci/issues/5861
YAML
mit
rest-client/rest-client
8aa5385536c5a4c7444cc1d40718d31bb619e48d
.travis.yml
.travis.yml
language: node_js script: - npm run check
language: node_js script: - npm run check addons: apt: packages: - xvfb install: - export DISPLAY=':99.0' - Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 & - npm install
Configure Electron for Travis CI
Configure Electron for Travis CI
YAML
isc
callum/redux-routing,callum/redux-routing
b8692d85824782e782294fc432cf95b299a5e595
.travis.yml
.travis.yml
language: ruby bundler_args: --without release doc extra script: "bundle exec rake spec" rvm: - 1.9.2 - 1.9.3 - jruby-19mode - rbx-19mode - ruby-head - jruby-head notifications: email: - blambeau@gmail.com
language: ruby bundler_args: --without release doc extra script: "bundle exec rake spec" rvm: - 1.9.2 - 1.9.3 - 2.0.0 - jruby-19mode - rbx-19mode - ruby-head - jruby-head notifications: email: - blambeau@gmail.com
Add 2.0.0 to tested rubies.
Add 2.0.0 to tested rubies.
YAML
mit
alf-tool/alf-core
fe3cd287f186287983891f528a8db42e1a6503cd
.travis.yml
.travis.yml
# Lock down dist to ensure that builds run on a distribution that supports oraclejdk8 dist: trusty language: ruby rvm: - 2.3.1 jdk: - oraclejdk8 git: depth: 10 before_install: - gem update bundler
# Lock down dist to ensure that builds run on a distribution that supports oraclejdk8 dist: trusty language: ruby rvm: - 2.6.6 jdk: - oraclejdk8 git: depth: 10 before_install: - gem update bundler
Update the version of ruby used to build project in TravisCI.
Update the version of ruby used to build project in TravisCI.
YAML
apache-2.0
realityforge/resgen,realityforge/resgen
cc2f0ca496ec81bfd59b54a7a03f2aa8ae4210de
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" - "3.5" - "pypy" install: - pip install -r test-requirements.txt - pip install -e . script: - nosetests sudo: false
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" - "3.5" - "3.6" - "pypy" install: - pip install -r test-requirements.txt - pip install -e . script: - nosetests sudo: false
Add Python 3.6 to tests.
Add Python 3.6 to tests.
YAML
mit
kipe/pycron
228f9d6997096c30b2154a72a83c1472fd319dd7
.travis.yml
.travis.yml
sudo: required dist: trusty language: cpp compiler: - gcc before_install: - sudo apt-get update -qq - sudo apt-get install build-essential cmake libboost-system-dev libboost-thread-dev libgtest-dev - cd /usr/src/gtest - sudo cmake CMakeLists.txt - sudo make - sudo cp *.a /usr/lib script: - cd ${TRAVIS_BUILD_DIR} - cmake --version - cmake . - make - make test
sudo: required matrix: include: - os: linux dist: trusty - os: linux dist: xenial language: cpp compiler: - gcc before_install: - sudo apt-get update -qq - sudo apt-get install build-essential cmake libboost-system-dev libboost-thread-dev libgtest-dev - cd /usr/src/gtest - sudo cmake CMakeLists.txt - sudo make - sudo cp *.a /usr/lib script: - cd ${TRAVIS_BUILD_DIR} - cmake --version - cmake . - make - make test
Add Xenial build to CI
Add Xenial build to CI Signed-off-by: Jacob Perron <5d39aecf28d3f95fa005cd6cbb5bdb92fcd64155@gmail.com>
YAML
bsd-3-clause
AutonomyLab/libcreate
32073c21eb1b3e10f735e471f025c7711a63a8ad
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - '8' - '6' - '4'
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-gtmetrix
63e0144e8fcc795120a221a2872dffc9ddcf9e18
.travis.yml
.travis.yml
language: - python python: - "3.5" install: - pip install flake8 - pip install -r requirements.txt script: - py.test after_success: - flake8 . notifications: email: false
language: - python python: - "3.5" before_install: - git submodule update --remote install: - pip install flake8 - pip install -r requirements.txt script: - py.test after_success: - flake8 . notifications: email: false
Add submodule update --remote on Travis
Add submodule update --remote on Travis
YAML
mit
MircoT/aima-python,WmHHooper/aima-python,SeanCameronConklin/aima-python,reachtarunhere/aima-python,Chipe1/aima-python,phaller0513/aima-python,armadill-odyssey/aima-python,SimeonFritz/aima-python,SeanCameronConklin/aima-python,WhittKinley/ConnectProject,JoeLaMartina/AlphametricProject,WmHHooper/aima-python,grantvk/aima-python,jottenlips/aima-python,AWPorter/aima-python,WhittKinley/aima-python,JamesDickenson/aima-python,WhittKinley/aima-python,austinban/aima-python,aimacode/aima-python,JoeLaMartina/AlphametricProject,chandlercr/aima-python,grantvk/aima-python,willhess/aima-python,jottenlips/aima-python,AWPorter/aima-python,armadill-odyssey/aima-python,SnShine/aima-python,jo-tez/aima-python,willhess/aima-python,WmHHooper/aima-python,JoeLaMartina/aima-python,zayneanderson/aima-python,AmberJBlue/aima-python,austinban/aima-python,abbeymiles/aima-python,Fruit-Snacks/aima-python,phaller0513/aima-python,SnShine/aima-python,WhittKinley/ConnectProject,NolanBecker/aima-python,zayneanderson/aima-python,AmberJBlue/aima-python,willhess/aima-python,JoeLaMartina/AlphametricProject,chandlercr/aima-python,JamesDickenson/aima-python,zayneanderson/aima-python,aimacode/aima-python,sofmonk/aima-python,gokul-uf/aima-python,chandlercr/aima-python,NolanBecker/aima-python,JamesDickenson/aima-python,Chipe1/aima-python,JoeLaMartina/aima-python,abbeymiles/aima-python,austinban/aima-python,reachtarunhere/aima-python,Fruit-Snacks/aima-python,WhittKinley/ConnectProject,jo-tez/aima-python,NolanBecker/aima-python,armadill-odyssey/aima-python,jottenlips/aima-python,SimeonFritz/aima-python,JoeLaMartina/aima-python,abbeymiles/aima-python,AmberJBlue/aima-python,AWPorter/aima-python,Fruit-Snacks/aima-python,SeanCameronConklin/aima-python,grantvk/aima-python,sofmonk/aima-python,WhittKinley/aima-python,phaller0513/aima-python,WmHHooper/aima-python,SimeonFritz/aima-python
d00996cb1062e7c83e4a5205d3cc8b1765f884b1
.travis.yml
.travis.yml
language: python python: - "2" - "3" # command to run tests script: - pytest # or py.test for Python versions 3.5 and below notifications: email: recipients: - linards.kalvans@gmail.com
language: python python: - "2.7" - "3.6" # command to run tests script: - pytest # or py.test for Python versions 3.5 and below notifications: email: recipients: - linards.kalvans@gmail.com
Correct python versions for pytests
Correct python versions for pytests
YAML
mit
lincis/pynoaa
319c82795fec27c500650c80796b0fbb57992040
.travis.yml
.travis.yml
dist: trusty language: swift matrix: include: # - os: linux # language: generic # sudo: required # disable linux temporary - os: osx osx_image: xcode8.1 env: global: - SWIFT_VERSION=3.0.1 install: - eval "$(curl -sL https://gist.githubusercontent.com/kylef/5c0475ff02b7c7671d2a/raw/9f442512a46d7a2af7b850d65a7e9bd31edfb09b/swiftenv-install.sh)" script: - swift test
language: swift matrix: include: # - os: linux # language: generic # dist: trusty # sudo: required # disable linux temporary - os: osx osx_image: xcode8.1 env: global: - SWIFT_VERSION=3.0.1 install: - eval "$(curl -sL https://gist.githubusercontent.com/kylef/5c0475ff02b7c7671d2a/raw/9f442512a46d7a2af7b850d65a7e9bd31edfb09b/swiftenv-install.sh)" script: - swift test
Move trusty on linux comment
Move trusty on linux comment
YAML
apache-2.0
sinoru/STwitter
208e1d1e21f4e41b647fba03d1d61d0a4abb0cc4
.travis.yml
.travis.yml
sudo: required dist: trusty language: cpp compiler: - gcc before_install: - sudo apt-get update -qq - sudo apt-get install -qq qt5-default libqt5svg5-dev libqt5multimedia5 script: - mkdir build - cd build - qmake .. - make
sudo: required dist: trusty language: cpp compiler: - gcc before_install: - sudo apt-get update -qq - sudo apt-get install -qq qt5-default libqt5svg5-dev qtmultimedia5-dev script: - mkdir build - cd build - qmake .. - make
Install correct Qt multimedia package for Travis builds
Install correct Qt multimedia package for Travis builds
YAML
bsd-2-clause
csete/softrig,csete/softrig,csete/softrig
57216bf6a653ffbd685a5d95f8b458138a4c5962
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1 - 2.2 gemfile: - gemfiles/rails3.gemfile - gemfiles/rails4_0.gemfile - gemfiles/rails4_1.gemfile - gemfiles/rails4_2.gemfile notifications: email: false
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1 - 2.2 gemfile: - gemfiles/rails3.gemfile - gemfiles/rails4_0.gemfile - gemfiles/rails4_1.gemfile - gemfiles/rails4_2.gemfile before_install: - gem update --system - gem install bundler install: bundle install script: bundle exec rake build env: global: secure: 0dc92adb26454f7a8fcf0639f9f85150fd82b08cabfe8a66e0c5dc85a9cdddbc83b38468f863048af3e7dec3dd3e354e0a50c1b327a1a9f556357897e13e8bc6 notifications: email: false
Use latest bundler version in CI
Use latest bundler version in CI
YAML
mit
robertomiranda/has_secure_token
7f40f3734f4ba21259ef6e097640b652f60bce52
.travis.yml
.travis.yml
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r # Header language: r sudo: required cache: packages warnings_are_errors: false r_check_args: --no-vignettes #env env: global: - CRAN: http://cran.rstudio.com - NOT_CRAN: true #notifications notifications: email: on_success: change on_failure: change #before_script before_script: #after_success after_success: - Rscript -e 'covr::codecov()' # Custom parts: #r_github_packages r_github_packages: - jimhester/covr #r_binary_packages r_binary_packages: - RJSONIO - rPython - gbm - glmnet - randomForest #r_packages r_packages: - rmarkdown #services services: #before_install before_install: - sudo apt-get install python-setuptools -y #install install: - cd hadrian/titus - sudo python setup.py install - cd ../aurelius
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r # Header language: r sudo: required cache: packages warnings_are_errors: false r_check_args: --no-vignettes #env env: global: - CRAN: http://cran.rstudio.com - NOT_CRAN: true #notifications notifications: email: on_success: change on_failure: change #before_script before_script: #after_success after_success: - Rscript -e 'covr::codecov()' # Custom parts: #r_github_packages r_github_packages: - jimhester/covr #r_binary_packages r_binary_packages: - RJSONIO - rPython - gbm - glmnet - randomForest #r_packages r_packages: - rmarkdown #services services: #before_install before_install: - sudo apt-get install python-setuptools -y #install install: - cd titus - sudo python setup.py install - cd ../aurelius
Set directory correctly in Travis
Set directory correctly in Travis
YAML
apache-2.0
opendatagroup/hadrian,opendatagroup/hadrian,opendatagroup/hadrian,opendatagroup/hadrian
fac9cb0955dbc37cb942e74e6dd2dcc72c74a057
.travis.yml
.travis.yml
language: node_js env: - CXX=g++-4.8 node_js: - 4 - 6 - 7 - 8 sudo: required notifications: email: - lilleman@larvit.se - tobias@nublar.se before_install: - $CXX --version install: - if [[ $TRAVIS_OS_NAME == "linux" ]]; then export CXX=g++-4.8; fi - npm i services: - rabbitmq addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 script: env CONSTR="amqp://guest:guest@127.0.0.1/" mocha
language: node_js env: - CXX=g++-4.8 node_js: - 6 - 7 - 8 - 9 sudo: required notifications: email: - lilleman@larvit.se - tobias@nublar.se before_install: - $CXX --version install: - if [[ $TRAVIS_OS_NAME == "linux" ]]; then export CXX=g++-4.8; fi - npm i services: - rabbitmq addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 script: env CONSTR="amqp://guest:guest@127.0.0.1/" mocha
Drop node 4 support and added node 9 support
Drop node 4 support and added node 9 support
YAML
isc
larvit/larvitamintercom
d0d22ffc9b26738be3d3d5748e04a2f4cebd8961
.travis.yml
.travis.yml
# Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. language: java sudo: false dist: precise jdk: - openjdk6 - openjdk7 - oraclejdk8 after_success: - mvn clean cobertura:cobertura coveralls:report
# Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. language: java sudo: false dist: precise jdk: - openjdk6 - openjdk7 - oraclejdk8 after_success: - mvn clean cobertura:cobertura coveralls:report -Ptravis-cobertura
Enable Travis -> Coveralls code coverage.
Enable Travis -> Coveralls code coverage.
YAML
apache-2.0
apache/commons-pool,apache/commons-pool,apache/commons-pool
0997dc0d7367c2ea090634c6133f56c6284074b8
circle.yml
circle.yml
deployment: dev: branch: master heroku: appname: hoa-ui-dev
deployment: dev: branch: master # heroku: # appname: hoa-ui-dev commands: - git push git@heroku.com:hoa-ui-dev.git $CIRCLE_SHA1:master - heroku ps:scale web=1 --app hoa-ui-dev # This looks incorrect, until we have another branch represents the current codebase, in this case its master. - git merge azure master
Add in config to push to the Azure Branch.
Other: Add in config to push to the Azure Branch.
YAML
mit
noms-digital-studio/iis,NOMS-DIGITAL-STUDIO-IIS/hoa-ui,NOMS-DIGITAL-STUDIO-IIS/hoa-ui,noms-digital-studio/iis
66ceab67a6210fef8bd3c9cf32abd0dc264820f1
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.3" - "3.4" - "3.5" - "3.6" - "3.7" - "nightly" install: - pip install unittest2 - pip install coveralls - pip install codecov script: - coverage run --source ghstats/ghstats.py tests/test_ghstats.py after_success: - coveralls - codecov
language: python python: - "2.7" - "3.4" - "3.5" - "3.6" - "3.7" - "nightly" install: - pip install unittest2 - pip install coveralls - pip install codecov script: - coverage run --source ghstats/ghstats.py tests/test_ghstats.py after_success: - coveralls - codecov
Remove outdated Python 3.3 from CI
Remove outdated Python 3.3 from CI
YAML
mit
kefir500/ghstats
b99525ee3edab1e8047b0f3ef6ea6e92989a985a
.travis.yml
.travis.yml
language: python python: - 2.7 - 3.2 - 3.3 script: - PYTHON_VER=`python -c 'import sys; print(sys.version_info[0])'` - cd python$PYTHON_VER - python _runner_tests.py # - python contemplate_koans.py # Run all the koans # - python contemplate_koans.py about_asserts about_none # Run a subset of # # koans # # Working through Python Koans in a fork? Want to use Travis CI to show which # koans you've passed? Then comment out one of the above "contemplate_koans" # lines above! # notifications: email: true # Some other koans (see runner/sensei.py or "ls koans" to see the light): # # about_none about_lists about_list_assignments about_dictionaries # about_strings about_tuples about_methods about_control_statements # about_true_and_false about_sets ...
language: python python: - 2.7 - 3.2 - 3.3 - 3.5 script: - PYTHON_VER=`python -c 'import sys; print(sys.version_info[0])'` - cd python$PYTHON_VER - python _runner_tests.py # - python contemplate_koans.py # Run all the koans # - python contemplate_koans.py about_asserts about_none # Run a subset of # # koans # # Working through Python Koans in a fork? Want to use Travis CI to show which # koans you've passed? Then comment out one of the above "contemplate_koans" # lines above! # notifications: email: true # Some other koans (see runner/sensei.py or "ls koans" to see the light): # # about_none about_lists about_list_assignments about_dictionaries # about_strings about_tuples about_methods about_control_statements # about_true_and_false about_sets ...
Add Python 3.5 Travis CI support
Add Python 3.5 Travis CI support
YAML
mit
dstanek/python_koans,dstanek/python_koans
a7ad2d89edb4a237c140d511958930071b3c3dfd
.travis.yml
.travis.yml
language: android android: components: # Uncomment the lines below if you want to # use the latest revision of Android SDK Tools # - platform-tools # - tools # The BuildTools version used by your project - build-tools-21.0.2 # The SDK version used to compile your project - android-19 # Additional components #- extra-google-google_play_services #- extra-google-m2repository #- extra-android-m2repository #- addon-google_apis-google-19 - addon-google_gdk-google-19 # Specify at least one system image, # if you need to run emulator(s) during your tests #- sys-img-armeabi-v7a-android-19 #- sys-img-x86-android-17 script: ./gradlew build connectedCheck
language: android android: components: # Uncomment the lines below if you want to # use the latest revision of Android SDK Tools # - platform-tools # - tools # The BuildTools version used by your project - build-tools-21.0.2 # The SDK version used to compile your project - android-19 # Additional components #- extra-google-google_play_services #- extra-google-m2repository #- extra-android-m2repository #- addon-google_apis-google-19 - addon-google_gdk-google-19 # Specify at least one system image, # if you need to run emulator(s) during your tests #- sys-img-armeabi-v7a-android-19 #- sys-img-x86-android-17 script: ./gradlew --stackstrace build
Remove check for connected devices. Show stacktraces.
Remove check for connected devices. Show stacktraces.
YAML
mit
sphereio/google-glass-demo
41b4e005f25c17ac40bc5334bf54e63589420858
.travis.yml
.travis.yml
language: go sudo: false go: - "1.2" - "1.x"
language: go sudo: false go: - "1.8" - "1.x"
Upgrade min go version to 1.8
Upgrade min go version to 1.8
YAML
mit
shawnsmithdev/zermelo
37317913c1eec70edc637e6ae677c43224775868
.travis.yml
.travis.yml
language: python python: - '3.6' - '3.7' env: - HASS=0.96.5 GCTTS=0.4.0 before_install: - mv secrets_dummy.yaml secrets.yaml install: - pip3 install homeassistant==$HASS - pip3 install google-cloud-texttospeech==$GCTTS script: - hass -c . --script check_config
language: python python: - '3.6' - '3.7' env: - HASS=0.98.2 GCTTS=0.4.0 before_install: - mv secrets_dummy.yaml secrets.yaml install: - pip3 install homeassistant==$HASS - pip3 install google-cloud-texttospeech==$GCTTS script: - hass -c . --script check_config
Update Home Assistant to 0.98.2 for config checks in Travis CI
Update Home Assistant to 0.98.2 for config checks in Travis CI
YAML
mit
davidorlea/homeassistant-config,davidorlea/homeassistant-config,davidorlea/homeassistant-config
ed0a2b0910dd13d83d38a7472648b3b924beae49
circle.yml
circle.yml
test: override: - nvm exec 0.10 npm test - nvm exec 0.12 npm test
test: override: - npm run jshint - nvm exec 0.10 npm test - nvm exec 0.12 npm test
Add jshint as a test step in Circle CI
Add jshint as a test step in Circle CI
YAML
bsd-2-clause
tidepool-org/blip,hichameyessou/blip,hichameyessou/blip,tidepool-org/blip,tidepool-org/blip,hichameyessou/blip
18590e25c4ae4b3083e7b37ce75df54854fb0dd6
circle.yml
circle.yml
machine: environment: _JAVA_OPTIONS: -Xmx1g java: version: oraclejdk8 general: branches: ignore: - gh-pages test: pre: - lein with-profile frontend-dev cljsbuild once frontend - lein with-profile backend-dev cljsbuild once backend deployment: master: branch: master commands: - lein prod - ./deploy.sh
machine: environment: _JAVA_OPTIONS: -Xmx1g java: version: oraclejdk8 general: branches: ignore: - gh-pages test: pre: - lein with-profile frontend-prod cljsbuild once frontend - lein with-profile backend-prod cljsbuild once backend deployment: master: branch: master commands: - ./deploy.sh
Build with prod profiles, rather than dev
Build with prod profiles, rather than dev
YAML
epl-1.0
theasp/cljs-webrepl,theasp/cljs-webrepl
d4a256fcca4fa2be67e8570136e2e1b1c4b34773
config/database.yml
config/database.yml
defaults: &defaults adapter: postgresql encoding: unicode pool: <%= ENV.fetch('OFN_DB_POOL', 5) %> host: <%= ENV.fetch('OFN_DB_HOST', 'localhost') %> username: <%= ENV.fetch('OFN_DB_USERNAME', 'ofn') %> password: <%= ENV.fetch('OFN_DB_PASSWORD', 'f00d') %> development: <<: *defaults database: open_food_network_dev test: <<: *defaults database: open_food_network_test production: <<: *defaults database: open_food_network_prod staging: <<: *defaults database: open_food_network_prod
defaults: &defaults adapter: postgresql encoding: unicode pool: <%= ENV.fetch('OFN_DB_POOL', 5) %> host: <%= ENV.fetch('OFN_DB_HOST', 'localhost') %> username: <%= ENV.fetch('OFN_DB_USERNAME', 'ofn') %> password: <%= ENV.fetch('OFN_DB_PASSWORD', 'f00d') %> port: <%= ENV.fetch('OFN_DB_PORT', 5432) %> development: <<: *defaults database: open_food_network_dev test: <<: *defaults database: open_food_network_test production: <<: *defaults database: open_food_network_prod staging: <<: *defaults database: open_food_network_prod
Add support for an env var to override DB port
Add support for an env var to override DB port
YAML
agpl-3.0
openfoodfoundation/openfoodnetwork,Matt-Yorkley/openfoodnetwork,openfoodfoundation/openfoodnetwork,lin-d-hop/openfoodnetwork,openfoodfoundation/openfoodnetwork,Matt-Yorkley/openfoodnetwork,Matt-Yorkley/openfoodnetwork,lin-d-hop/openfoodnetwork,openfoodfoundation/openfoodnetwork,Matt-Yorkley/openfoodnetwork,lin-d-hop/openfoodnetwork,mkllnk/openfoodnetwork,mkllnk/openfoodnetwork,mkllnk/openfoodnetwork,lin-d-hop/openfoodnetwork,mkllnk/openfoodnetwork
343bce71c4b16d2c8625a801aa1d0e7315171dc9
.travis.yml
.travis.yml
env: global: - GIT_COMMITTED_AT=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then git log -1 --pretty=format:%ct; else git log -1 --skip 1 --pretty=format:%ct; fi) - RAILS_ENV=test addons: postgresql: "9.6" chrome: stable apt: packages: - chromium-chromedriver services: - redis-server sudo: false language: ruby cache: bundler before_install: gem install bundler -v 2.0.2 before_script: - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter - chmod +x ./cc-test-reporter - cp config/database-travis.yml config/database.yml - psql -c 'create database orbf2_test;' -U postgres - ln --symbolic /usr/lib/chromium-browser/chromedriver "${HOME}/bin/chromedriver" script: - script/cibuild - if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT; fi
env: global: - GIT_COMMITTED_AT=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then git log -1 --pretty=format:%ct; else git log -1 --skip 1 --pretty=format:%ct; fi) - RAILS_ENV=test addons: postgresql: "9.6" chrome: stable apt: packages: - chromium-chromedriver services: - redis-server sudo: false language: ruby cache: bundler before_install: - gem uninstall bundler - gem install bundler -v 2.0.2 before_script: - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter - chmod +x ./cc-test-reporter - cp config/database-travis.yml config/database.yml - psql -c 'create database orbf2_test;' -U postgres - ln --symbolic /usr/lib/chromium-browser/chromedriver "${HOME}/bin/chromedriver" script: - echo "O HAI" - script/cibuild - if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT; fi
Fix Travis bundler issue, by uninstalling bundler
Fix Travis bundler issue, by uninstalling bundler So while we already tackled this by explicitly specifying which bundler version to use, see .travis.yml gem install bundler -v 2.0.2 In newer builds this no longer passed, because when travis called bundler again it would take a more recent version of bundler and it would complain: Bundler could not find compatible versions for gem "bundler": In Gemfile: bundler (~> 2.0.2) Current Bundler version: bundler (2.1.4) This Gemfile requires a different version of Bundler. Perhaps you need to update Bundler by running `gem install bundler`? See: https://travis-ci.org/BLSQ/orbf-rules_engine/builds/634282879 So, this time we first uninstall bundler, and then install bundler. This seems to appease the bundler gods and the builds start building again.
YAML
mit
BLSQ/orbf2,BLSQ/orbf2,BLSQ/orbf2,BLSQ/orbf2
6b8190d1fb133aef4c8c2fb2830aed8c252ec954
.travis.yml
.travis.yml
sudo: required dist: trusty language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1 - 2.2
sudo: required dist: trusty language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1 - 2.2 - 2.3.0
Add ruby 2.3.0 to Travis CI Build
Add ruby 2.3.0 to Travis CI Build
YAML
mit
mmozuras/pronto-flay
0c41509d7030e1c17c197bf56ff4d1a5a3b2941a
circle.yml
circle.yml
database: override: - cp config/database.yml.ci config/database.yml - bundle exec rake db:create db:schema:load db:migrate RAILS_ENV=test deployment: staging: branch: staging commands: - bundle exec rake deploy_ha
database: override: - cp config/database.yml.ci config/database.yml - bundle exec rake db:create db:schema:load db:migrate RAILS_ENV=test test: override: - bundle exec rspec - bundle exec haml-lint app/views/ deployment: staging: branch: staging commands: - bundle exec rake deploy_ha
Add HAML linting to the CI process
Add HAML linting to the CI process
YAML
agpl-3.0
sgmap/tps,sgmap/tps,sgmap/tps
f8dced0dea02334c739c42e05758dcb660f142c8
.travis.yml
.travis.yml
language: node_js node_js: - "0.11" - "0.10" - "0.8" - "0.6"
language: node_js node_js: - "0.11" - "0.10"
Remove support for node 0.6 and node 0.8 in tests
Remove support for node 0.6 and node 0.8 in tests
YAML
mit
digitalsadhu/persuasion
b0af0d223c26d56523b5f7500beaa4e70d52a68f
circle.yml
circle.yml
machine: xcode: version: "7.1" test: override: - script/cibuild
machine: xcode: version: 7.2 test: override: - script/cibuild
Update CircleCI to Xcode 7.2
Update CircleCI to Xcode 7.2
YAML
apache-2.0
trivago/Heimdallr.swift,rheinfabrik/Heimdallr.swift,trivago/Heimdallr.swift,rheinfabrik/Heimdall.swift,rheinfabrik/Heimdallr.swift,trivago/Heimdallr.swift,rheinfabrik/Heimdall.swift,rheinfabrik/Heimdall.swift,rheinfabrik/Heimdallr.swift
748aacbb70a0d1d92ed8e86597425ec6628440a2
.travis.yml
.travis.yml
language: ruby before_install: gem install bundler script: 'bundle exec rake' rvm: - 2.2 - 2.3 - 2.4 - ruby-head - jruby-head matrix: allow_failures: - rvm: jruby-head - rvm: ruby-head gemfile: - gemfiles/rack_cache_1.6.gemfile - gemfiles/rack_cache_1.7.gemfile
language: ruby script: bundle exec rake rvm: - 2.2 - 2.3 - 2.4 - ruby-head - jruby-head matrix: allow_failures: - rvm: jruby-head - rvm: ruby-head gemfile: - gemfiles/rack_cache_1.6.gemfile - gemfiles/rack_cache_1.7.gemfile
Use whatever Bundler is on the machine already in CI
Use whatever Bundler is on the machine already in CI
YAML
mit
redis-store/redis-rack-cache
8453b974086ba232566813ee319b9f72c0e5bb91
circle.yml
circle.yml
machine: services: - docker branches: ignore: - gh-pages - site dependencies: override: - docker info - docker build -t jongo-ci . test: override: - docker run -it -v $(pwd):/root/sources -w /root/sources jongo-ci bash build.sh --job IT
machine: services: - docker branches: ignore: - gh-pages - site dependencies: override: - docker info - docker build -t jongo-ci . test: override: - docker run -it -v $(pwd):/root/sources -w /root/sources jongo-ci bash build.sh --job CI
Configure CircleCI to execute CI job
Configure CircleCI to execute CI job
YAML
apache-2.0
applango/jongo,bguerout/jongo,edaubert/jongo,bguerout/jongo,applango/jongo,ctrimble/jongo,ctrimble/jongo,edaubert/jongo
d5fb4488a9fef6829577035c279d4e98892d027a
.travis.yml
.travis.yml
language: ruby jdk: - oraclejdk8 rvm: - 2.3.1 - jruby-1.7.27 - jruby-9.0.5.0 git: depth: 10 scala: - 2.11.8 install: - source ci-setup.sh - export JRUBY_OPTS="-J-Xmx700M" - export JAVA_OPTS="-Xmx700m" script: rake ci notifications: email: recipients: - commits@buildr.apache.org - donaldp@apache.org - peter@realityforge.org - toulmean@apache.org on_success: always on_failure: always irc: "irc.freenode.org#buildr"
language: ruby sudo: false jdk: - oraclejdk8 rvm: - 2.3.1 - jruby-1.7.27 - jruby-9.0.5.0 git: depth: 10 scala: - 2.11.8 install: - source ci-setup.sh - export JRUBY_OPTS="-J-Xmx700M" - export JAVA_OPTS="-Xmx700m" script: rake ci notifications: email: recipients: - commits@buildr.apache.org - donaldp@apache.org - peter@realityforge.org - toulmean@apache.org on_success: always on_failure: always irc: "irc.freenode.org#buildr"
Disable sudo so can run in container
Disable sudo so can run in container
YAML
apache-2.0
apache/buildr,apache/buildr,apache/buildr,apache/buildr
ce1921bc994e43c36e0ead1b52826d59395f8f15
.travis.yml
.travis.yml
language: node_js deploy: provider: heroku api_key: secure: IdmJn4SoBXZp/5z88sRHuw0gH8EB+LEvhru2c5eFOqmT+qDiw139YgpgJ/Ctl8gulAYsZ+LVTJpyAZaeIc3UYFG2uDvqY9XSCxAY3ZQ6viuj/rtgZ2XXClTldPBsJDw5BbbuLLxFH4uhmmpcD+6SbdNYOXGEmQrlL9NWiC6zHGU= app: ghlint
language: node_js sudo: false deploy: provider: heroku api_key: secure: IdmJn4SoBXZp/5z88sRHuw0gH8EB+LEvhru2c5eFOqmT+qDiw139YgpgJ/Ctl8gulAYsZ+LVTJpyAZaeIc3UYFG2uDvqY9XSCxAY3ZQ6viuj/rtgZ2XXClTldPBsJDw5BbbuLLxFH4uhmmpcD+6SbdNYOXGEmQrlL9NWiC6zHGU= app: ghlint
Use Travis' new container infrastructure
Use Travis' new container infrastructure
YAML
mit
nicolasmccurdy/ghlint-web,nicolasmccurdy/ghlint-web
6a47432ac7368ca508db676fdbf08e8a8cfb3309
circle.yml
circle.yml
machine: environment: GRADLE_OPTS: '-Dorg.gradle.jvmargs="-Xmx3g -XX:+HeapDumpOnOutOfMemoryError"' java: version: oraclejdk8 dependencies: pre: # - echo y | android update sdk --no-ui --all --filter "package-name" # - android update sdk --no-ui --all --filter "build-tools-24.0.3" # - ./gradlew dependencies # Android SDK Platform - if [ ! -d "/usr/local/android-sdk-linux/platforms/android-25" ]; then echo y | android update sdk --no-ui --all --filter "android-25"; fi # Android SDK Build-tools - if [ ! -d "/usr/local/android-sdk-linux/build-tools/25.0.2" ]; then echo y | android update sdk --no-ui --all --filter "build-tools-25.0.2"; fi # Android Support Repository / Local Maven repository for Support Libraries - if [ ! -d "/usr/local/android-sdk-linux/extras/android/m2repository/com/android/support/design/24.2.1" ]; then echo y | android update sdk --no-ui --all --filter "extra-android-m2repository"; fi cache_directories: - /usr/local/android-sdk-linux/platforms/android-25 - /usr/local/android-sdk-linux/build-tools/25.0.2 - /usr/local/android-sdk-linux/extras/android/m2repository test: override: - ./gradlew assembleRelease - cp -r app/build/outputs $CIRCLE_ARTIFACTS
machine: environment: GRADLE_OPTS: '-Dorg.gradle.jvmargs="-Xmx3g -XX:+HeapDumpOnOutOfMemoryError"' java: version: oraclejdk8 dependencies: pre: # Android SDK Platform - if [ ! -d "/usr/local/android-sdk-linux/platforms/android-25" ]; then echo y | android update sdk --no-ui --all --filter "android-25"; fi # Android SDK Build-tools - if [ ! -d "/usr/local/android-sdk-linux/build-tools/25.0.2" ]; then echo y | android update sdk --no-ui --all --filter "build-tools-25.0.2"; fi # Android Support Repository / Local Maven repository for Support Libraries - if [ ! -d "/usr/local/android-sdk-linux/extras/android/m2repository/com/android/support/design/24.2.1" ]; then echo y | android update sdk --no-ui --all --filter "extra-android-m2repository"; fi cache_directories: - /usr/local/android-sdk-linux/platforms/android-25 - /usr/local/android-sdk-linux/build-tools/25.0.2 - /usr/local/android-sdk-linux/extras/android/m2repository test: override: - ./gradlew assembleRelease - cp -r app/build/outputs $CIRCLE_ARTIFACTS
Remove not needed Circle CI commands
Remove not needed Circle CI commands
YAML
apache-2.0
adamski8/MyWeather
2fcd9f594c217484d9ca0f7f0325d5102c343e8c
.travis.yml
.travis.yml
sudo: false language: python python: - "3.3" install: - pip install flake8 - pip install pep257 script: - flake8 . --max-line-length=80 - pep257 . --ignore=D202 notifications: email: false
sudo: false language: python python: - "3.3" install: - pip install flake8 - pip install pep257 script: - flake8 . --max-line-length=80 - pep257 . --ignore=D202 --ignore=D211 notifications: email: false
Fix Travis CI for new pep257.
Fix Travis CI for new pep257.
YAML
mit
albertosantini/sublimetext-buildnext
73e533e03c1f0bb5bdadafda864c152f113f764c
.travis.yml
.travis.yml
language: ruby cache: bundler rvm: - 2.0.0 - 2.1.6 - 2.2.1 bundler_args: --without development script: - bundle exec cucumber
language: ruby cache: bundler rvm: - 2.0.0 - 2.1.6 - 2.2.1 - 2.3.4 - 2.4.1 bundler_args: --without development script: - bundle exec cucumber
Add Ruby 2.3.4 and 2.4.1 to Travis config
Add Ruby 2.3.4 and 2.4.1 to Travis config
YAML
bsd-2-clause
ball-hayden/uk_account_validator
14c834c50597ae635dd3d04b7197207efc120e1a
circle.yml
circle.yml
machine: environment: PATH: "${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin" dependencies: override: - yarn cache_directories: - ~/.cache/yarn test: override: - yarn test:cover post: - yarn coveralls
machine: environment: PATH: "${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin" node: version: stable dependencies: pre: - curl -o- -L https://yarnpkg.com/install.sh | bash override: - yarn install cache_directories: - ~/.cache/yarn test: override: - yarn test:cover post: - yarn coveralls
Set CircleCI to Node 6.10
Set CircleCI to Node 6.10
YAML
mit
sbstjn/discogs-collection
e117d4cc60550c6c4da0f9ff6502043cab000e71
circle.yml
circle.yml
# The IP of the deployment instance is stored in the settings of Circleci (with the name FEATURE_DEPLOYEMENT_IP) machine: node: version: 7
# The IP of the deployment instance is stored in the settings of Circleci (with the name FEATURE_DEPLOYEMENT_IP) machine: node: version: 7 deployment: dev: branch: master commands: - pm2 deploy
Add deployment step on CI
Add deployment step on CI
YAML
mit
mycsHQ/reviewly,mycsHQ/reviewly
f9b1cad75043a55d25fe1b3d9377e3de76a646fb
.travis.yml
.travis.yml
language: php sudo: false env: - NETTE=default - NETTE=~2.3.0 - NETTE=~2.3.0 PREFER_LOWEST=true - NETTE=~2.4.0 - NETTE=~2.4.0 PREFER_LOWEST=true php: - 5.5 - 5.6 - 7.0 matrix: fast_finish: true exclude: - php: 5.5 env: NETTE=~2.4.0 - php: 5.5 env: NETTE=~2.4.0 PREFER_LOWEST=true before_install: - composer self-update - php .travis.composer.php install: - composer install --no-interaction --prefer-source --ignore-platform-reqs - if [ $PREFER_LOWEST = 'true' ]; then composer update --prefer-lowest --prefer-stable --ignore-platform-reqs; fi script: - vendor/bin/parallel-lint -e php,phpt src tests - vendor/bin/phpcs -sp --standard=vendor/nella/coding-standard/Nella/ruleset.xml src tests - vendor/bin/tester -s -p php -c tests/php.ini tests --coverage build/coverage.xml --coverage-src src - wget https://github.com/satooshi/php-coveralls/releases/download/v1.0.1/coveralls.phar - php coveralls.phar --verbose --config build/coveralls.yml || true
language: php sudo: false env: - NETTE=default - NETTE=~2.3.0 - NETTE=~2.3.0 PREFER_LOWEST=true - NETTE=~2.4.0 - NETTE=~2.4.0 PREFER_LOWEST=true php: - 5.5 - 5.6 - 7.0 matrix: fast_finish: true exclude: - php: 5.5 env: NETTE=~2.4.0 - php: 5.5 env: NETTE=~2.4.0 PREFER_LOWEST=true - php: 5.5 env: NETTE=default before_install: - composer self-update - php .travis.composer.php install: - composer install --no-interaction --prefer-source --ignore-platform-reqs - if [ $PREFER_LOWEST = 'true' ]; then composer update --prefer-lowest --prefer-stable --ignore-platform-reqs; fi script: - vendor/bin/parallel-lint -e php,phpt src tests - vendor/bin/phpcs -sp --standard=vendor/nella/coding-standard/Nella/ruleset.xml src tests - vendor/bin/tester -s -p php -c tests/php.ini tests --coverage build/coverage.xml --coverage-src src - wget https://github.com/satooshi/php-coveralls/releases/download/v1.0.1/coveralls.phar - php coveralls.phar --verbose --config build/coveralls.yml || true
Exclude PHP 5.5 for default Nette
Exclude PHP 5.5 for default Nette
YAML
mit
nella/forms-datetime
74450c747bcc590fcc7ac3ec77c201749d788b6d
.travis.yml
.travis.yml
language: java jdk: - oraclejdk7 before_script: - echo "userName=webdizz" > ~/.jenkins-ci.org - echo "password=$JENKINS_REPO_PWD" >> ~/.jenkins-ci.org script: - ./gradlew :plugin:jpi - if [ $TRAVIS_SECURE_ENV_VARS ]; then ./gradlew :pl:publish -Pversion=0.1.$TRAVIS_BUILD_NUMBER; fi env: global: secure: i62q5qva8T4+WD3NzulpmZtWYWYng2iVow7tQ1YbZa2Sk4s7CJ1nUlCBB+5tiXn9KZTwMho2z6IWMPG7wvZ8/IxWI9v+4jLPOlhlDpSK4ZKeE6R8eUu0bVtPgW9BHj9f+fff4ddKuzBm07n5bkvdNmF8n6ELGFiZxcPIebTF+fM=
language: java jdk: - oraclejdk7 before_script: - echo "userName=webdizz" > ~/.jenkins-ci.org - echo "password=$JENKINS_REPO_PWD" >> ~/.jenkins-ci.org script: - ./gradlew :pl:test :pl:jpi - if [ $TRAVIS_SECURE_ENV_VARS ]; then ./gradlew :pl:publish -Pversion=0.1.$TRAVIS_BUILD_NUMBER; fi env: global: secure: i62q5qva8T4+WD3NzulpmZtWYWYng2iVow7tQ1YbZa2Sk4s7CJ1nUlCBB+5tiXn9KZTwMho2z6IWMPG7wvZ8/IxWI9v+4jLPOlhlDpSK4ZKeE6R8eUu0bVtPgW9BHj9f+fff4ddKuzBm07n5bkvdNmF8n6ELGFiZxcPIebTF+fM=
Add tests execution to Travis
Add tests execution to Travis
YAML
apache-2.0
rkovalenko/deployment-sphere-plugin,jenkinsci/deployment-sphere-plugin,jenkinsci/deployment-sphere-plugin,webdizz/deployment-sphere-plugin,jenkinsci/deployment-sphere-plugin,rkovalenko/deployment-sphere-plugin,webdizz/deployment-sphere-plugin,webdizz/deployment-sphere-plugin
0b3b8dff4435a5e272ef18efa52bca65570ca283
.travis.yml
.travis.yml
# reference: http://www.objc.io/issue-6/travis-ci.html sudo: false language: objective-c before_install: - gem install cocoapods --no-rdoc --no-ri --no-document --quiet - gem install slather --no-rdoc --no-ri --no-document --quiet - cd Example && pod install && cd $TRAVIS_BUILD_DIR script: - xctool test -workspace Example/TBStateMachine.xcworkspace -scheme TBStateMachine -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO after_success: - slather
# reference: http://www.objc.io/issue-6/travis-ci.html language: objective-c before_install: - gem install cocoapods --version 0.35 --no-rdoc --no-ri --no-document --quiet - gem install slather --version 1.5.4 --no-rdoc --no-ri --no-document --quiet - cd Example && pod install && cd $TRAVIS_BUILD_DIR script: - xctool test -workspace Example/TBStateMachine.xcworkspace -scheme TBStateMachine -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO after_success: - slather
Rollback to cocoapods 0.35 and slather 1.5.4
Rollback to cocoapods 0.35 and slather 1.5.4
YAML
mit
tarbrain/TBStateMachine,jkrumow/TBStateMachine,jkrumow/TBStateMachine
9a6cb1972bf6ffc789ca937f8770780a58a9f3cb
circle.yml
circle.yml
machine: xcode: version: "7.0" dependencies: override: - ./scripts/dependencies.sh test: override: - ./scripts/test.sh deployment: release: tag: /v[0-9]+(\.[0-9]+)*/ commands: - ./scripts/deploy.sh
machine: xcode: version: "7.1" dependencies: override: - ./scripts/dependencies.sh test: override: - ./scripts/test.sh deployment: release: tag: /v[0-9]+(\.[0-9]+)*/ commands: - ./scripts/deploy.sh
Use Swift 2.1 on CI
Use Swift 2.1 on CI
YAML
mit
mogstad/bankside,mogstad/bankside
d81cfcab5869607db34785edcc11937e99b1c270
.travis.yml
.travis.yml
# Configuration for Travis (https://travis-ci.org) language: objective-c xcode_workspace: OneTimePassword.xcworkspace xcode_scheme: - OneTimePassword - OneTimePasswordLegacy osx_image: xcode7 xcode_sdk: - iphonesimulator9.0 # Check out nested dependencies before_install: git submodule update --init --recursive # A custom test script is required because xctool cannot access the iOS keychain # https://github.com/facebook/xctool/issues/269 script: set -o pipefail && xcodebuild -workspace $TRAVIS_XCODE_WORKSPACE -scheme $TRAVIS_XCODE_SCHEME -sdk $TRAVIS_XCODE_SDK build test | xcpretty -c
# Configuration for Travis (https://travis-ci.org) language: objective-c xcode_workspace: OneTimePassword.xcworkspace xcode_scheme: OneTimePassword osx_image: xcode7 xcode_sdk: - iphonesimulator9.0 # Check out nested dependencies before_install: git submodule update --init --recursive # A custom test script is required because xctool cannot access the iOS keychain # https://github.com/facebook/xctool/issues/269 script: set -o pipefail && xcodebuild -workspace $TRAVIS_XCODE_WORKSPACE -scheme $TRAVIS_XCODE_SCHEME -sdk $TRAVIS_XCODE_SDK build test | xcpretty -c
Remove legacy scheme from Travis configuration
Remove legacy scheme from Travis configuration
YAML
mit
mattrubin/onetimepassword,mattrubin/onetimepassword
57f4b8a6c5ee6e99e90cc02fca29316300c02baa
.travis.yml
.travis.yml
rvm: - 1.8.7 - 1.9.2 - 1.9.3 - jruby-1.6.7 - jruby-head - rbx-1.2.4 - rbx-head
rvm: - 1.8.7 - 1.9.2 - 1.9.3 - jruby-18mode - jruby-19mode - rbx-18mode - rbx-19mode
Add jRuby and Rubinius in the recommended way in Travis CI
Add jRuby and Rubinius in the recommended way in Travis CI
YAML
mit
Mange/cucumber-the
56636af3ba06ec31b2c9aac2ac351df219041be3
.travis.yml
.travis.yml
language: node_js node_js: - '6' - '10' before_script: - npm install -g grunt-cli deploy: provider: npm email: henri.bergius@iki.fi api_key: secure: CTKYpjQkrgpcf0HPRI6rrKZJgINpy4RPdWtV5H6aXhRBlygc9XmUR2JG1ydBHgO+YEBq7Epz15Sq35xaKyJ+TXL6gHAdK92XTX+I2jm2bRneKIfnSHXrvWTQwXITd+cmkQ+pGMKbatL+7zCxLJcqWMYMKpqDMrEFrmVLAv/Xqyk= on: tags: true repo: noflo/noflo-clmtrackr
language: node_js node_js: - 'lts/*' before_script: - npm install -g grunt-cli deploy: provider: npm email: henri.bergius@iki.fi api_key: secure: CTKYpjQkrgpcf0HPRI6rrKZJgINpy4RPdWtV5H6aXhRBlygc9XmUR2JG1ydBHgO+YEBq7Epz15Sq35xaKyJ+TXL6gHAdK92XTX+I2jm2bRneKIfnSHXrvWTQwXITd+cmkQ+pGMKbatL+7zCxLJcqWMYMKpqDMrEFrmVLAv/Xqyk= on: tags: true repo: noflo/noflo-clmtrackr
Test with latest Node.js LTS
Test with latest Node.js LTS
YAML
mit
forresto/noflo-clmtrackr
3d9ff1b46a5813fc22fef69949c4bf626ba9ee6a
.travis.yml
.travis.yml
--- branches: only: - master - v2 services: - mongodb language: node_js node_js: - "7.9.0" - "8.1.3" sudo: required env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - gcc-4.8 - g++-4.8 - nginx hosts: - www.koaton.test - koaton.test - koaton.t3st - origin.koaton.test cache: directories: - node_modules before_install: - npm config set spin false - npm install -g codeclimate-test-reporter install: - npm i . - git clone -b v2 https://github.com/gerard2p/koaton-demoapp.git testingapp - cd testingapp - npm i --only=prod - cd .. - ln -s . testingapp/node_modules/koaton script: - npm run eslint - npm run cover after_success: - npm run export - npm run codeclimate:report - npm run semantic-release
--- branches: only: - master - v2 services: - mongodb language: node_js node_js: - "7.9.0" - "8.1.3" sudo: required env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - gcc-4.8 - g++-4.8 - nginx hosts: - www.koaton.test - koaton.test - koaton.t3st - origin.koaton.test cache: directories: - node_modules before_install: - npm config set spin false - npm install -g semantic-release - npm install -g codeclimate-test-reporter install: - npm i . - git clone -b v2 https://github.com/gerard2p/koaton-demoapp.git testingapp - cd testingapp - npm i --only=prod - cd .. - ln -s . testingapp/node_modules/koaton script: - npm run eslint - npm run cover after_success: - npm run export - npm run codeclimate:report - npm run semantic-release
Update instalation script to add semantic-release
ci(Travis): Update instalation script to add semantic-release
YAML
agpl-3.0
gerard2p/koaton
3f6503917c674beef5f84583b80b4ab6424a8f68
.travis.yml
.travis.yml
dist: trusty sudo: false env: global: - NOKOGIRI_USE_SYSTEM_LIBRARIES=true - VIPS_VERSION_MAJOR=8 - VIPS_VERSION_MINOR=6 - VIPS_VERSION_MICRO=4 - PATH=$HOME/vips/bin:$PATH - LD_LIBRARY_PATH=$HOME/vips/lib:$LD_LIBRARY_PATH - PKG_CONFIG_PATH=$HOME/vips/lib/pkgconfig:$PKG_CONFIG_PATH addons: apt: packages: - libexpat1-dev - gettext - libglib2.0-dev - liborc-0.4-dev - libfftw3-dev - liblcms2-dev - libmagickwand-dev - libopenexr-dev - libcfitsio3-dev - libgif-dev - libgsf-1-dev - libmatio-dev - libopenslide-dev - libpango1.0-dev - libpoppler-glib-dev - librsvg2-dev - libwebp-dev cache: directories: - $HOME/vips language: ruby rvm: - 2.0 - 2.1 - 2.2 - 2.3 - 2.4 - 2.5 script: "bundle exec rake" gemfile: - Gemfile before_install: - uname -a - bash install-vips.sh
dist: trusty sudo: false env: global: - NOKOGIRI_USE_SYSTEM_LIBRARIES=true - VIPS_VERSION_MAJOR=8 - VIPS_VERSION_MINOR=7 - VIPS_VERSION_MICRO=0 - PATH=$HOME/vips/bin:$PATH - LD_LIBRARY_PATH=$HOME/vips/lib:$LD_LIBRARY_PATH - PKG_CONFIG_PATH=$HOME/vips/lib/pkgconfig:$PKG_CONFIG_PATH addons: apt: packages: - libexpat1-dev - gettext - libglib2.0-dev - liborc-0.4-dev - libfftw3-dev - liblcms2-dev - libmagickwand-dev - libopenexr-dev - libcfitsio3-dev - libgif-dev - libgsf-1-dev - libmatio-dev - libopenslide-dev - libpango1.0-dev - libpoppler-glib-dev - librsvg2-dev - libwebp-dev cache: directories: - $HOME/vips language: ruby rvm: - 2.0 - 2.1 - 2.2 - 2.3 - 2.4 - 2.5 script: "bundle exec rake" gemfile: - Gemfile before_install: - uname -a - bash install-vips.sh
Test with libvips 8.7.0 on Travis CI
Test with libvips 8.7.0 on Travis CI
YAML
mit
jcupitt/ruby-vips,jcupitt/ruby-vips
f8257fd28209939d29d1745935b68a601fcb9032
.travis.yml
.travis.yml
language: python sudo: false env: - TOX_ENV=py27 - TOX_ENV=py33 - TOX_ENV=py34 - TOX_ENV=py35 script: - tox -e $TOX_ENV install: - pip install codecov tox after_success: - bash <(curl -s https://codecov.io/bash)
language: python python: - "2.7" - "3.3" - "3.4" - "3.5" sudo: false env: - TOX_ENV=py27 - TOX_ENV=py33 - TOX_ENV=py34 - TOX_ENV=py35 script: - tox -e $TOX_ENV install: - pip install codecov tox after_success: - bash <(curl -s https://codecov.io/bash)
Install python 3.5 in tests.
Install python 3.5 in tests.
YAML
bsd-3-clause
travcunn/snake-vm
1675db84df597274394935091bef2b0b62c258a8
.travis.yml
.travis.yml
dist: precise language: rust env: global: - LD_LIBRARY_PATH: /usr/local/lib install: - sudo add-apt-repository ppa:team-xbmc/ppa -y - sudo apt-get update -q - sudo apt-get install libsdl2-dev
dist: precise language: rust rust: - 1.22.0 env: global: - LD_LIBRARY_PATH: /usr/local/lib install: - sudo add-apt-repository ppa:team-xbmc/ppa -y - sudo apt-get update -q - sudo apt-get install libsdl2-dev
Set rust version to 1.22.0
Set rust version to 1.22.0
YAML
mit
wickus/chip8,wm9/chip8
25bc0f06952dd15d448a0d8fcc3bfbcdd0aedfa4
.travis.yml
.travis.yml
language: php php: - '7.0' - '7.1' services: - mysql before_script: - composer self-update before_install: - mysql -e 'CREATE DATABASE IF NOT EXISTS `test_db`;' install: - composer install script: - vendor/bin/phpunit after_script: - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover clover.xml
language: php php: - '7.0' - '7.1' services: - mysql - memcached - redis-server before_script: - composer self-update before_install: - mysql -e 'CREATE DATABASE IF NOT EXISTS `test_db`;' install: - composer install script: - vendor/bin/phpunit after_script: - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover clover.xml
Add redis and memcached to be tested
Add redis and memcached to be tested
YAML
mit
AdamB7586/pdo-dbal
a442d93dca21c5a67d568a798cbb7dc4c474edda
.travis.yml
.travis.yml
language: node_js node_js: - '0.10' before_install: - 'npm install npm -g && npm install codeclimate-test-reporter -g' addons: code_climate: repo_token: e9b07c62f6e1117e63e3e5cf7069427b94071ae89f62948a44a2ed6fe9f91275 after_script: - 'npm run gen-coverage && cat coverage/lcov.info | codeclimate-test-reporter'
language: node_js node_js: - '6' before_install: - 'npm install npm -g && npm install codeclimate-test-reporter -g' addons: code_climate: repo_token: e9b07c62f6e1117e63e3e5cf7069427b94071ae89f62948a44a2ed6fe9f91275 after_script: - 'npm run gen-coverage && cat coverage/lcov.info | codeclimate-test-reporter'
Drop support of node 0.10.
Drop support of node 0.10. This project requires node 6 and up as defined in the package.json.
YAML
mit
fiveisprime/hapi-starter,fiveisprime/hapi-starter
0f982aa1229f4ff2d06c5f878d98a9a9a615dacd
.travis.yml
.travis.yml
language: perl6 perl6: - latest install: - rakudobrew build-panda - panda --notests installdeps . script: - perl6 -MPanda::Builder -e 'Panda::Builder.build(~$*CWD)' - PERL6LIB=$PWD/lib prove -e perl6 -vr t/ sudo: false
language: perl6 perl6: - latest install: - rakudobrew build-zef - zef --debug --depsonly --/test install . script: - zef build . - PERL6LIB=$PWD/lib prove -e perl6 -vr t/ sudo: false
Use zef instead of panda
Use zef instead of panda
YAML
artistic-2.0
okaoka/p6-Algorithm-Treap
7d2c0e94bc443f81f8b4ea6959361bd91df5c1f5
.travis.yml
.travis.yml
language: node_js node_js: - "7" - "6" - "4" os: - linux - osx script: - yarn coverage - yarn benchmark
language: node_js node_js: - "7" - "6" os: - linux - osx script: - yarn coverage - yarn benchmark
Remove node_js version 4 from test matrix
Remove node_js version 4 from test matrix Apparently benchmark-async doesn't work with it.
YAML
mit
winksaville/traceloc,winksaville/traceloc
cb6f772210b97ca740619ff1cd120232a13d424c
.travis.yml
.travis.yml
language: php php: - 5.5 - 5.6 - 7 env: - LARAVEL_VERSION="5.1" - LARAVEL_VERSION="5.2" sudo: false before_install: - composer require illuminate/database=${LARAVEL_VERSION}.* install: - travis_retry composer install --no-interaction --prefer-dist script: vendor/bin/phpunit
language: php php: - 5.5 - 5.6 - 7 env: - LARAVEL_VERSION="5.1" - LARAVEL_VERSION="5.2" sudo: false before_install: - phpenv config-rm xdebug.ini - composer require illuminate/database=${LARAVEL_VERSION}.* install: - travis_retry composer install --no-interaction --prefer-dist script: vendor/bin/phpunit
Disable xdebug (just for fun?)
Disable xdebug (just for fun?)
YAML
mit
bbatsche/PolyTree
e93fa66b3436b661b798fc36c8a40ccbdf632d11
.travis.yml
.travis.yml
language: rust osx_image: xcode9.2 rust: - 1.28.0 - nightly os: - linux - osx matrix: allow_failures: - rust: nightly cache: directories: - $HOME/.cargo script: - cd rust - export CARGO_TARGET_DIR=/tmp/target - export RUST_BACKTRACE=1 - RUSTFLAGS="-D warnings" cargo check --all || exit - cargo test --all || exit
language: rust osx_image: xcode9.2 rust: - 1.28.0 - nightly os: - linux - osx - windows matrix: allow_failures: - rust: nightly # windows runs in a Git Bash shell so these (should) work the same way as on *nix cache: directories: - $HOME/.cargo script: - cd rust - export CARGO_TARGET_DIR=/tmp/target - export RUST_BACKTRACE=1 - RUSTFLAGS="-D warnings" cargo check --all || exit - cargo test --all || exit
Enable windows builds in Travis
Enable windows builds in Travis
YAML
apache-2.0
google/xi-editor,google/xi-editor,google/xi-editor,google/xi-editor
e1cd865ef880abcd98e6700262c8344a0baee399
.travis.yml
.travis.yml
language : cpp env: - DISPLAY=:99.0 compiler: - gcc before_install: - sudo add-apt-repository --yes ppa:beineri/opt-qt542 - sudo add-apt-repository --yes "deb http://download.opensuse.org/repositories/home:/benlau/xUbuntu_15.10 ./" - sudo apt-get update -qq - apt-cache search qt5 - sudo apt-get install --force-yes -qq qt54quickcontrols qt54declarative qt54script qt54graphicaleffects qpm - sh -e /etc/init.d/xvfb start script: - source /opt/qt54/bin/qt54-env.sh - cd tests/quickcrossunittests - qpm install - qmake - make - ls - ./tst_quickcrossunittests
language : cpp env: - DISPLAY=:99.0 compiler: - gcc before_install: - sudo add-apt-repository --yes ppa:beineri/opt-qt551 - sudo add-apt-repository --yes "deb http://download.opensuse.org/repositories/home:/benlau/xUbuntu_15.10 ./" - sudo apt-get update -qq - apt-cache search qt5 - sudo apt-get install --force-yes -qq qt55quickcontrols qt55declarative qt55script qt55graphicaleffects qpm - sh -e /etc/init.d/xvfb start script: - source /opt/qt55/bin/qt55-env.sh - cd tests/quickcrossunittests - qpm install - qmake - make - ls - ./tst_quickcrossunittests
Upgrade from Qt 5.4 to Qt 5.5
Upgrade from Qt 5.4 to Qt 5.5
YAML
apache-2.0
benlau/quickcross,benlau/quickcross,benlau/quickcross
1ce6fba71f56787e08b651597c7c2da1e7a42a39
.travis.yml
.travis.yml
language: ruby sudo: required dist: trusty branches: only: - master - travis-ci rvm: - default - 2.3.0 - jruby - rbx install: gem install minitest xmpp4r script: ruby quizbot_test.rb
language: ruby sudo: required dist: trusty branches: only: - master - travis-ci rvm: - default - 2.3.0 - jruby - rbx install: - export JRUBY_OPTS='--client -J-XX:+TieredCompilation -J-XX:TieredStopAtLevel=1 -Xcext.enabled=false -J-Xss2m -Xcompile.invokedynamic=false' - gem install minitest xmpp4r script: ruby quizbot_test.rb
Use correct flag for jruby
Use correct flag for jruby
YAML
mit
foobar0815/guenther,marius/guenther
86952d4ef8db18a00849e21dabd4ee3afe34a5d2
.travis.yml
.travis.yml
language: node_js notifications: email: on_success: never on_failure: change node_js: 6 before_install: - sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test - sudo apt-get update -qq - sudo apt-get install -qq -y g++-4.8 - sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 50
language: node_js notifications: email: on_success: never on_failure: change node_js: 12.14.1 before_install: - sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test - sudo apt-get update -qq - sudo apt-get install -qq -y g++-4.8 - sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 50
Update CI to use node 12.14.1
Update CI to use node 12.14.1
YAML
mit
atom/highlights
dc3c14321aa8ad22a63b25fd7ecfbf7743bb77f7
.travis.yml
.travis.yml
--- language: python python: - '3.4' - '3.3' - '2.7' env: - DATABASE_URL=sqlite:///:memory: - DATABASE_URL=postgresql+psycopg2://postgres@127.0.0.1/dataset - DATABASE_URL=mysql+mysqlconnector://travis@127.0.0.1/dataset?charset=utf8 install: - pip install -U pip wheel - pip install --allow-external mysql-connector-python mysql-connector-python flake8 psycopg2 before_script: - sh -c "if [ '$DATABASE_URL' = 'postgresql+psycopg2://postgres@127.0.0.1/dataset' ]; then psql -c 'DROP DATABASE IF EXISTS dataset;' -U postgres; fi" - sh -c "if [ '$DATABASE_URL' = 'postgresql+psycopg2://postgres@127.0.0.1/dataset' ]; then psql -c 'create database dataset;' -U postgres; fi" - sh -c "if [ '$DATABASE_URL' = 'mysql+mysqlconnector://travis@127.0.0.1/dataset?charset=utf8' ]; then mysql -e 'create database IF NOT EXISTS dataset DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_general_ci;'; fi" script: - flake8 --ignore=E501,E123,E124,E126,E127,E128 dataset test - python setup.py test cache: directories: - $HOME/.cache/pip
--- language: python python: - '3.4' - '3.3' - '2.7' env: - DATABASE_URL=sqlite:///:memory: - DATABASE_URL=postgresql+psycopg2://postgres@127.0.0.1/dataset - DATABASE_URL=mysql+mysqlconnector://travis@127.0.0.1/dataset?charset=utf8 install: - pip install -U pip wheel - pip install mysqlclient flake8 psycopg2 before_script: - sh -c "if [ '$DATABASE_URL' = 'postgresql+psycopg2://postgres@127.0.0.1/dataset' ]; then psql -c 'DROP DATABASE IF EXISTS dataset;' -U postgres; fi" - sh -c "if [ '$DATABASE_URL' = 'postgresql+psycopg2://postgres@127.0.0.1/dataset' ]; then psql -c 'create database dataset;' -U postgres; fi" - sh -c "if [ '$DATABASE_URL' = 'mysql+mysqldb://travis@127.0.0.1/dataset?charset=utf8' ]; then mysql -e 'create database IF NOT EXISTS dataset DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_general_ci;'; fi" script: - flake8 --ignore=E501,E123,E124,E126,E127,E128 dataset test - python setup.py test cache: directories: - $HOME/.cache/pip
Add new mysql connector library
Add new mysql connector library
YAML
mit
saimn/dataset,stefanw/dataset,pudo/dataset
c5042de1c9307805ef5dc6fed518c35594d09c2e
.travis.yml
.travis.yml
# Use Travis's cointainer based infrastructure sudo: false addons: apt: sources: - chef-stable-precise packages: - chefdk # Don't `bundle install` install: echo "skip bundle install" branches: only: - master # Ensure we make ChefDK's Ruby the default before_script: - eval "$(/opt/chefdk/bin/chef shell-init bash)" # We have to install chef-sugar for ChefSpec - /opt/chefdk/embedded/bin/chef gem install chef-sugar script: - /opt/chefdk/embedded/bin/chef --version - /opt/chefdk/embedded/bin/rubocop --version - /opt/chefdk/embedded/bin/rubocop - /opt/chefdk/embedded/bin/foodcritic --version - /opt/chefdk/embedded/bin/foodcritic . --exclude spec - /opt/chefdk/embedded/bin/rspec spec
# Use Travis's cointainer based infrastructure sudo: false addons: apt: sources: - chef-current-precise packages: - chefdk # Don't `bundle install` install: echo "skip bundle install" branches: only: - master # Ensure we make ChefDK's Ruby the default before_script: - eval "$(/opt/chefdk/bin/chef shell-init bash)" # We have to install chef-sugar for ChefSpec - /opt/chefdk/embedded/bin/chef gem install chef-sugar script: - /opt/chefdk/embedded/bin/chef --version - /opt/chefdk/embedded/bin/rubocop --version - /opt/chefdk/embedded/bin/rubocop - /opt/chefdk/embedded/bin/foodcritic --version - /opt/chefdk/embedded/bin/foodcritic . --exclude spec - /opt/chefdk/embedded/bin/rspec spec
Use the pre-release builds of chefdk
Use the pre-release builds of chefdk
YAML
apache-2.0
chef-cookbooks/subversion,opscode-cookbooks/subversion,chef-cookbooks/subversion,opscode-cookbooks/subversion
3156b476ed34632fe8842d655f369b29e95907ab
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 before_install: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" before_script: - rake db:migrate - rake db:test:prepare script: - rake cucumber - rake spec
language: ruby rvm: - 1.9.3 before_install: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" before_script: - rake db:create:all - rake db:migrate - rake db:test:prepare script: - rake cucumber - rake spec
Add a create db step before running the migrations
Add a create db step before running the migrations
YAML
mit
SergiosLen/LocalSupport,johnnymo87/LocalSupport,davidbebb/local_support,davidbebb/local_support,marianmosley/LocalSupport,intfrr/LocalSupport,Aleks4ndr/LocalSupport,tansaku/LocalSupport,ZmagoD/LocalSupport,curlygirly/LocalSupport,ZmagoD/LocalSupport,SergiosLen/LocalSupport,curlygirly/LocalSupport,marianmosley/LocalSupport,curlygirly/LocalSupport,curlygirly/LocalSupport,intfrr/LocalSupport,ZmagoD/LocalSupport,intfrr/LocalSupport,Aleks4ndr/LocalSupport,SergiosLen/LocalSupport,johnnymo87/LocalSupport,decareano/LocalSupport,tansaku/LocalSupport,marianmosley/LocalSupport,Aleks4ndr/LocalSupport,dsbabbar/LocalSupport,davidbebb/local_support,dsbabbar/LocalSupport,johnnymo87/LocalSupport,davidbebb/local_support,Aleks4ndr/LocalSupport,tansaku/LocalSupport,ZmagoD/LocalSupport,decareano/LocalSupport,dsbabbar/LocalSupport,dsbabbar/LocalSupport,SergiosLen/LocalSupport,tansaku/LocalSupport,decareano/LocalSupport,intfrr/LocalSupport
84ca7f38828e8dd6908b747913cc50c3e1e39e36
.travis.yml
.travis.yml
language: python sudo: false cache: pip before_install: - openssl aes-256-cbc -K $encrypted_12e75a453f27_key -iv $encrypted_12e75a453f27_iv -in gcs-service-account.json.enc -out gcs-service-account.json -d before_script: - pip install --upgrade setuptools - pip install tox-travis script: tox matrix: include: - python: 3.4 env: TOXENV=py34 - python: 3.5 env: TOXENV=py35 - python: 3.6 env: TOXENV=py36 # https://github.com/travis-ci/travis-ci/issues/9069 #- python: 3.7 # env: TOXENV=py37 - python: 3.4 env: TOXENV=flake8 - python: 3.4 env: TOXENV=docs
language: python sudo: false cache: pip python: - '3.4' - '3.5' - '3.6' before_install: - openssl aes-256-cbc -K $encrypted_12e75a453f27_key -iv $encrypted_12e75a453f27_iv -in gcs-service-account.json.enc -out gcs-service-account.json -d install: - pip install --upgrade setuptools - pip install tox-travis script: tox env: - TOXENV=py34 - TOXENV=py35 - TOXENV=py36 - TOXENV=flake8 - TOXENV=docs
Drop matrix and use env list
Drop matrix and use env list
YAML
mit
scottwernervt/cloudstorage
2ba065c96248c260b592a2fcf86df8067838149c
.travis.yml
.travis.yml
# Use Trusty beta environment: https://docs.travis-ci.com/user/trusty-ci-environment/ sudo: required dist: trusty language: node_js node_js: - '4' - '5' - 'stable' cache: directories: - node_modules install: - npm prune && npm install
# Use Trusty beta environment: https://docs.travis-ci.com/user/trusty-ci-environment/ sudo: required dist: trusty language: node_js node_js: - '4' - '6' cache: directories: - node_modules install: - npm prune - npm install
Test Node.js v4 & v6
Test Node.js v4 & v6
YAML
mit
elliottsj/memoize-id
ce961d70c1d42278fd595726df038682437cebe5
.travis.yml
.travis.yml
language: cpp os: - linux - osx osx_image: xcode6.4 compiler: - gcc - clang sudo: required addons: apt: packages: - autotools-dev - libcap-dev - libssl-dev - g++ - libfuse-dev - pkg-config - libattr1-dev - patch - python-dev - unzip - uuid-dev - libc6-dev - valgrind - voms-dev - gdb before_script: - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update && brew cask install osxfuse; fi script: - ci/run_travis.sh notifications: email: false
language: cpp os: - linux - osx compiler: - gcc - clang sudo: required addons: apt: packages: - autotools-dev - libcap-dev - libssl-dev - g++ - libfuse-dev - pkg-config - libattr1-dev - patch - python-dev - unzip - uuid-dev - libc6-dev - valgrind - voms-dev - gdb before_script: - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update && brew cask install osxfuse; fi script: - ci/run_travis.sh notifications: email: false
Use default OS X image on Travis-CI
Use default OS X image on Travis-CI
YAML
bsd-3-clause
cvmfs/cvmfs,cvmfs/cvmfs,DrDaveD/cvmfs,Gangbiao/cvmfs,Gangbiao/cvmfs,DrDaveD/cvmfs,cvmfs/cvmfs,cvmfs/cvmfs,djw8605/cvmfs,DrDaveD/cvmfs,cvmfs/cvmfs,djw8605/cvmfs,Gangbiao/cvmfs,djw8605/cvmfs,Gangbiao/cvmfs,djw8605/cvmfs,djw8605/cvmfs,DrDaveD/cvmfs,DrDaveD/cvmfs,DrDaveD/cvmfs,cvmfs/cvmfs,Gangbiao/cvmfs,DrDaveD/cvmfs,cvmfs/cvmfs
82f446d6f080f51f65915a719dc18cdd1f122e09
.travis.yml
.travis.yml
script: rake ci language: ruby rvm: - rbx-2 - jruby - 2.2.2 - 2.2.0 - 2.1.4 - 2.0.0 - 1.9.3 - ruby-head - jruby-head matrix: fast_finish: true allow_failures: - rvm: 1.9.3 - rvm: ruby-head - rvm: jruby-head - env: CELLULOID_BACKPORTED=true - env: CELLULOID_BACKPORTED=false CELLULOID_TASK_CLASS=Threaded - env: CELLULOID_BACKPORTED=true CELLULOID_TASK_CLASS=Threaded env: global: - NUMBER_OF_PROCESSORS=4 CELLULOID_CONFIG_FILE=.env-ci matrix: - CELLULOID_BACKPORTED=true - CELLULOID_BACKPORTED=false - CELLULOID_BACKPORTED=false CELLULOID_TASK_CLASS=Threaded - CELLULOID_BACKPORTED=true CELLULOID_TASK_CLASS=Threaded notifications: irc: "irc.freenode.org#celluloid" before_install: # Only use 1 job until Travis fixes the rbx --jobs issue. - if [ "$TRAVIS_RUBY_VERSION" == "rbx-2" ] ; then export BUNDLE_JOBS=1 ; else export BUNDLE_JOBS=4; fi sudo: false install: bundle install --without=development
script: rake ci language: ruby rvm: - rbx-2 - jruby - 2.3.0 - 2.2.2 - 2.2.0 - 2.1.4 - 2.0.0 - 1.9.3 - ruby-head - jruby-head matrix: fast_finish: true allow_failures: - rvm: 1.9.3 - rvm: ruby-head - rvm: jruby-head - env: CELLULOID_BACKPORTED=true - env: CELLULOID_BACKPORTED=false CELLULOID_TASK_CLASS=Threaded - env: CELLULOID_BACKPORTED=true CELLULOID_TASK_CLASS=Threaded env: global: - NUMBER_OF_PROCESSORS=4 CELLULOID_CONFIG_FILE=.env-ci matrix: - CELLULOID_BACKPORTED=true - CELLULOID_BACKPORTED=false - CELLULOID_BACKPORTED=false CELLULOID_TASK_CLASS=Threaded - CELLULOID_BACKPORTED=true CELLULOID_TASK_CLASS=Threaded notifications: irc: "irc.freenode.org#celluloid" before_install: # Only use 1 job until Travis fixes the rbx --jobs issue. - if [ "$TRAVIS_RUBY_VERSION" == "rbx-2" ] ; then export BUNDLE_JOBS=1 ; else export BUNDLE_JOBS=4; fi sudo: false install: bundle install --without=development
Test against Ruby 2.3.0 on Travis CI
Test against Ruby 2.3.0 on Travis CI
YAML
mit
celluloid/celluloid-io
f1627fe6d7647f18e047bfe0b7b0220e1c115aad
.travis.yml
.travis.yml
--- sudo: required language: shell services: - docker before_install: - docker pull koalaman/shellcheck script: - find . -name '*.sh' | xargs docker run -v $(pwd):/mnt --rm koalaman/shellcheck-alpine matrix: fast_finish: true
--- sudo: required language: shell services: - docker script: - find . -type f -iname "*.sh" | while read -r line; do echo "Linting $line"; docker run -v "$(pwd)":/mnt --rm koalaman/shellcheck:v0.4.7 "$line"; done matrix: fast_finish: true
Use while to loop over lintable shell scripts
Use while to loop over lintable shell scripts
YAML
mit
ferrarimarco/home-lab,ferrarimarco/home-lab
be983e5021df0ff7989db56e9067b294fbd48528
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" notifications: irc: "irc.freenode.net#kokarn"
language: node_js node_js: - "0.10" notifications: irc: "irc.freenode.net#kokarnbuilds"
Change notification channel to avoid spam
Change notification channel to avoid spam
YAML
mit
kokarn/KokBot
012d20944bd68cd17b311a457c88f962ae0df7e7
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - '5' - '4' - 'iojs' - '0.12' - '0.10' notifications: slack: secure: Yub5oEMfOzNDSAtXlC+B2IoALF7uMB8xX5l+FWy1PIKF4950Uelw1l9fN7Y6cXn+qPF8JxePcVCBn0HF5jp+MHRmLTUYqcCVxi10f5DkmTbDz31N40WiDMuo77fMlWgdieaLiHulbvbp93A6rSWyLCyjt9RvFit7JxWdcyqyDDk=
sudo: false language: node_js node_js: - '6' - '5' - '4' - 'iojs' - '0.12' - '0.10' notifications: slack: secure: Yub5oEMfOzNDSAtXlC+B2IoALF7uMB8xX5l+FWy1PIKF4950Uelw1l9fN7Y6cXn+qPF8JxePcVCBn0HF5jp+MHRmLTUYqcCVxi10f5DkmTbDz31N40WiDMuo77fMlWgdieaLiHulbvbp93A6rSWyLCyjt9RvFit7JxWdcyqyDDk=
Add Node.js v6 to Travis-CI test matrix
Add Node.js v6 to Travis-CI test matrix
YAML
bsd-2-clause
opbeat/opbeat-node,opbeat/opbeat-node
6c107e1e2cdda46f3682743c511a56aabf5d1efe
.travis.yml
.travis.yml
# After changing this file, check it on: # http://lint.travis-ci.org/ language: node_js # Is `sudo` required? If not, jobs are run on container-based infrastructure. sudo: true node_js: # Node.js - 'node' - '6' - '5' - '4' # io.js - '3' - '2' - '1' # Node.js - '0.12' - '0.10' before_install: # Update the npm client. Older clients cannot, e.g., handle scoped modules. - npm update -g npm script: - ./tools/ci/travis.sh
# After changing this file, check it on: # http://lint.travis-ci.org/ language: node_js # Is `sudo` required? If not, jobs are run on container-based infrastructure. sudo: true os: - linux - osx node_js: # Node.js - 'node' - '6' - '5' - '4' # io.js - '3' - '2' - '1' # Node.js - '0.12' - '0.10' before_install: # Update the npm client. Older clients cannot, e.g., handle scoped modules. - npm update -g npm script: - ./tools/ci/travis.sh
Add OS X to build matrix
Add OS X to build matrix
YAML
apache-2.0
stdlib-js/stdlib,stdlib-js/stdlib,stdlib-js/stdlib,stdlib-js/stdlib,stdlib-js/stdlib,stdlib-js/stdlib,stdlib-js/stdlib,stdlib-js/stdlib
fad68a0cef3b48f73ac67a183a0f8db7ef5e2204
.travis.yml
.travis.yml
language: ruby cache: bundler sudo: false rvm: - 2.0 - 2.1 - 2.2.4 - 2.3.0 - 2.3.1 - 2.4.0 - jruby
language: ruby cache: bundler sudo: false rvm: - 2.1.10 - 2.2.7 - 2.3.4 - 2.4.1 - jruby
Update list of supported Ruby versions
Update list of supported Ruby versions
YAML
mit
s2k/limit_detectors
bfe64f9cbe223bc3d03591f87e3b2ea3384715a4
.github/workflows/ci-test.yml
.github/workflows/ci-test.yml
# GitHub actions # https://docs.github.com/en/free-pro-team@latest/actions name: ci-test on: [push, pull_request] jobs: test: runs-on: ubuntu-20.04 strategy: matrix: node_version: [10.14.2, 14.x, 15.x] steps: - uses: actions/checkout@v2 - name: setup Node.js v${{ matrix.node_version }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.node_version }} - name: setup timezone uses: zcong1993/setup-timezone@master with: timezone: ${{ secrets.TZ }} - name: run npm scripts run: | npm install npm run lint npm run build --if-present npm run citest - name: sync to coveralls uses: coverallsapp/github-action@v1.1.2 with: github-token: ${{ secrets.GITHUB_TOKEN }} - name: cache node modules uses: actions/cache@v2 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} restore-keys: | ${{ runner.os }}-node-
# GitHub actions # https://docs.github.com/en/free-pro-team@latest/actions name: ci-test on: [push, pull_request] jobs: test: runs-on: ubuntu-20.04 strategy: matrix: node_version: [10.14.2, 14.x, 15.x, 16.x] steps: - uses: actions/checkout@v2 - name: setup Node.js v${{ matrix.node_version }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.node_version }} - name: setup timezone uses: zcong1993/setup-timezone@master with: timezone: ${{ secrets.TZ }} - name: run npm scripts run: | npm install npm run lint npm run build --if-present npm run citest - name: sync to coveralls uses: coverallsapp/github-action@v1.1.2 with: github-token: ${{ secrets.GITHUB_TOKEN }} - name: cache node modules uses: actions/cache@v2 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} restore-keys: | ${{ runner.os }}-node-
Enable test with node 16
Enable test with node 16
YAML
mit
ndaidong/bellajs,techpush/bella.js,ndaidong/bella.js
9879c3ae6b4ef9914346f733968a40c55c5b81ac
.travis.yml
.travis.yml
language: android # Required to run retrolambda jdk: - oraclejdk8 android: components: - platform-tools - tools - build-tools-25.0.2 - android-25 # RS components - build-tools-25 - android-25 - extra-android-m2repository - extra-google-m2repository before_script: .travis/setup.sh script: - ./gradlew clean build deploy: provider: script script: ./gradlew bintrayUpload on: branch: master
language: android # Required to run retrolambda jdk: - oraclejdk8 android: components: - platform-tools - tools - build-tools-26.0.2 - android-26 # RS components - extra-android-m2repository - extra-google-m2repository before_script: .travis/setup.sh script: - ./gradlew clean build deploy: provider: script script: ./gradlew bintrayUpload on: branch: master
Update Travis to use API 26
Update Travis to use API 26
YAML
apache-2.0
liujoshua/BridgeAndroidSDK,liujoshua/BridgeAndroidSDK,liujoshua/BridgeAndroidSDK
ca4d8e4742efb411403f5906faa50e7eb663daa2
.github/workflows/node.js.yml
.github/workflows/node.js.yml
name: master CI on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [10.x, 12.x, 14.x] steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - run: npm run build - run: npm run test
name: master CI on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [10.x, 12.x, 14.x] steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - run: npm install - run: npm run build - run: npm run test
Add install to CI action
Add install to CI action
YAML
mit
KevinTCoughlin/sir-chrome-extension,KevinTCoughlin/sir-chrome-extension
7dce73717e2c914dd945b3025f7e75e60914f2c7
.travis.yml
.travis.yml
language: python python: - "2.7" #addons: # postgresql: "9.1" branches: only: - master - develop - travis -before_install: - sudo add-apt-repository ppa:ubuntugis/ubuntugis-unstable -y # For postgresql-9.1-postgis-2.1 install: - sudo apt-get -qq -y update - sudo apt-get -y install postgresql-9.1-postgis-2.1 osm2pgsql before_script: - echo "Build starting on " `date` - psql -U postgres -c "create extension postgis" - sudo pip install requirements-dev.txt script: - PYTHONPATH=`pwd`/reporter:`pwd`:$(PYTHONPATH) nosetests -v --with-id \ --with-xcoverage --with-xunit --verbose --cover-package=reporter reporter notifications: irc: channels: - "irc.freenode.org#kartoza" use_notice: true email: - tim@kartoza.com
language: python python: - "2.7" #addons: # postgresql: "9.1" branches: only: - master - develop - travis -before_install: - sudo add-apt-repository ppa:ubuntugis/ubuntugis-unstable -y # For postgresql-9.1-postgis-2.1 install: - sudo apt-get -qq -y update - sudo apt-get -y install postgresql-9.6-postgis-2.3 osm2pgsql before_script: - echo "Build starting on " `date` - psql -U postgres -c "create extension postgis" - sudo pip install requirements-dev.txt script: - PYTHONPATH=`pwd`/reporter:`pwd`:$(PYTHONPATH) nosetests -v --with-id \ --with-xcoverage --with-xunit --verbose --cover-package=reporter reporter notifications: irc: channels: - "irc.freenode.org#kartoza" use_notice: true email: - tim@kartoza.com
Use more modern version of postres/gis for testing
Use more modern version of postres/gis for testing
YAML
bsd-3-clause
meomancer/field-campaigner,meomancer/field-campaigner,meomancer/field-campaigner