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
|
---|---|---|---|---|---|---|---|---|---|
fd1678c4822d8a706d4885bcfff78036cddea15b
|
.github/workflows/main.yml
|
.github/workflows/main.yml
|
name: Node
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version:
- 18
- 16
- 14
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: yarn install
run: |
node --version
yarn
env:
CI: true
FORCE_COLOR: 1
- name: yarn test
run: yarn test
env:
CI: true
FORCE_COLOR: 1
- name: Upload code coverage
uses: codecov/codecov-action@v2
with:
file: ./coverage/clover.xml
|
name: Node
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version:
- 18
- 16
- 14
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: yarn install
run: |
node --version
yarn
env:
CI: true
FORCE_COLOR: 1
- name: Eslint
run: yarn eslint . --ext .js --ext .ts
- name: Test inquirer package (current version)
run: yarn lerna exec npm test --scope inquirer
- name: Test monorepo packages (new version)
run: |
yarn lerna run tsc
yarn jest
- name: Upload code coverage
uses: codecov/codecov-action@v2
with:
file: ./coverage/clover.xml
|
Make GH action more granular to help pin-pointing problems
|
Make GH action more granular to help pin-pointing problems
|
YAML
|
mit
|
SBoudrias/Inquirer.js,SBoudrias/Inquirer.js
|
09328273dbf6384b0957d7d50e0aa0f0b57c8a00
|
configs/circleci.yml
|
configs/circleci.yml
|
build:
type: build
commands:
- lein deps
- lein midje
deploy:
type: deploy
commands:
- lein deps
- lein daemon start ":web":
environment:
CIRCLE_ENV: "production"
SWANK: "true"
- sudo /etc/init.d/nginx :start
|
build:
type: build
commands:
- lein deps
- lein midje
deploy:
type: deploy
commands:
- lein deps
- lein daemon start ":web":
environment:
CIRCLE_ENV: "production"
SWANK: "true"
- sudo /etc/init.d/nginx start
|
Fix a typo in circle config
|
Fix a typo in circle config
|
YAML
|
epl-1.0
|
RayRutjes/frontend,circleci/frontend,prathamesh-sonpatki/frontend,RayRutjes/frontend,circleci/frontend,circleci/frontend,prathamesh-sonpatki/frontend
|
7006b07f2788fd557db2f6e369db505731e5094f
|
.travis.yml
|
.travis.yml
|
language: ruby
cache: bundler
script: "bundle exec rake"
rvm:
- 2.1.10
- 2.2.6
- 2.3.3
- 2.4.0
- 2.5.1
gemfile:
- gemfiles/rails_4.2.gemfile
- gemfiles/rails_5.0.gemfile
- gemfiles/rails_5.1.gemfile
before_install:
- gem install rubygems-update && update_rubygems
# Rails 4.2 doesn't support bundler 2.0, so we need to lock bundler to
# v1.17.3. This is just for Ruby 2.5 which ships with bundler 2.x on Travis
# CI while Ruby 2.6 does not.
- yes | rvm @global do gem uninstall bundler --all
- yes | rvm @global do gem install bundler -v 1.17.3 || true
matrix:
fast_finish: true
exclude:
- rvm: 2.1.10
gemfile: gemfiles/rails_5.0.gemfile
- rvm: 2.1.10
gemfile: gemfiles/rails_5.1.gemfile
|
language: ruby
cache: bundler
script: "bundle exec rake"
rvm:
- 2.1.10
- 2.2.6
- 2.3.3
- 2.4.0
- 2.5.1
gemfile:
- gemfiles/rails_4.2.gemfile
- gemfiles/rails_5.0.gemfile
- gemfiles/rails_5.1.gemfile
- gemfiles/rails_5.2.gemfile
before_install:
- gem install rubygems-update && update_rubygems
# Rails 4.2 doesn't support bundler 2.0, so we need to lock bundler to
# v1.17.3. This is just for Ruby 2.5 which ships with bundler 2.x on Travis
# CI while Ruby 2.6 does not.
- yes | rvm @global do gem uninstall bundler --all
- yes | rvm @global do gem install bundler -v 1.17.3 || true
matrix:
fast_finish: true
exclude:
- rvm: 2.1.10
gemfile: gemfiles/rails_5.0.gemfile
- rvm: 2.1.10
gemfile: gemfiles/rails_5.1.gemfile
|
Test Rails 5.2 on Travis
|
Test Rails 5.2 on Travis
|
YAML
|
mit
|
expectedbehavior/acts_as_archival,expectedbehavior/acts_as_archival
|
b3e332317557c33d0ad733514033c797270be20b
|
metadata/godau.fynn.usagedirect.yml
|
metadata/godau.fynn.usagedirect.yml
|
Categories:
- System
License: Apache-2.0
AuthorName: Fynn Godau
AuthorEmail: [email protected]
SourceCode: https://codeberg.org/fynngodau/usageDirect
IssueTracker: https://codeberg.org/fynngodau/usageDirect/issues
AutoName: usageDirect
RepoType: git
Repo: https://codeberg.org/fynngodau/usageDirect.git
Builds:
- versionName: '0.1'
versionCode: 1
commit: '0.1'
subdir: Application
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: '0.1'
CurrentVersionCode: 1
|
Categories:
- System
License: Apache-2.0
AuthorName: Fynn Godau
AuthorEmail: [email protected]
SourceCode: https://codeberg.org/fynngodau/usageDirect
IssueTracker: https://codeberg.org/fynngodau/usageDirect/issues
AutoName: usageDirect
RepoType: git
Repo: https://codeberg.org/fynngodau/usageDirect.git
Builds:
- versionName: '0.1'
versionCode: 1
commit: '0.1'
subdir: Application
gradle:
- yes
- versionName: '0.2'
versionCode: 2
commit: '0.2'
subdir: Application
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: '0.2'
CurrentVersionCode: 2
|
Update usageDirect to 0.2 (2)
|
Update usageDirect to 0.2 (2)
|
YAML
|
agpl-3.0
|
f-droid/fdroiddata,f-droid/fdroiddata
|
9f4200db50fc5b79e1491625a181114fce74d6c2
|
circle.yml
|
circle.yml
|
dependencies:
pre:
- cmake .
override:
- make
|
dependencies:
pre:
- sudo apt-get update; sudo apt-get install libgc-dev
- cmake .
override:
- make
test:
override:
- ./lisp < test.scm
|
Install libgc-dev on CircleCI container
|
Install libgc-dev on CircleCI container
|
YAML
|
mit
|
masaedw/lisp
|
0f685846ef4ba28f295f69b760940df5d3a9f8fc
|
config/blobs.yml
|
config/blobs.yml
|
jq/jq-linux64-1.5:
size: 3027945
object_id: 9302e872-a5fc-4141-b985-033d47829089
sha: d8e36831c3c94bb58be34dd544f44a6c6cb88568
vault-broker/vault-broker:
size: 6813888
object_id: f82da81b-85b3-4fdf-4405-1190424be308
sha: 42c70b44f619befb7c4d5417490877cda4f1657b
vault/vault_0.9.6_linux_amd64.zip:
size: 19726726
object_id: c0e52248-db33-4096-5593-53c0ccc70473
sha: 85b2093c0dd7b594b9f793fcb9d7ad73d8b04fdd
|
jq/jq-linux64-1.5:
size: 3027945
object_id: 9302e872-a5fc-4141-b985-033d47829089
sha: d8e36831c3c94bb58be34dd544f44a6c6cb88568
vault/vault_0.9.6_linux_amd64.zip:
size: 19726726
object_id: c0e52248-db33-4096-5593-53c0ccc70473
sha: 85b2093c0dd7b594b9f793fcb9d7ad73d8b04fdd
|
Remove vault-broker blob from release metadata
|
Remove vault-broker blob from release metadata
|
YAML
|
apache-2.0
|
cloudfoundry-community/vault-boshrelease,cloudfoundry-community/vault-boshrelease,cloudfoundry-community/vault-boshrelease,cloudfoundry-community/vault-boshrelease
|
84bc1f4881290fc2b998e856f4a2f42ee4ce732c
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "3.6"
# command to install dependencies
install: "pip install -r requirements.txt"
# command to run tests
script:
- pytest --cov=. --cov-report term-missing
branches:
only:
- master
- dev
- /^Release\/.*$/
after_success:
- coveralls
|
language: python
python:
- "3.6"
# command to install dependencies
install: "pip install -r requirements.txt"
# command to run tests
script:
- pytest --cov=. --cov-report term-missing
branches:
only:
- live
- beta
- dev
- /^Release\/.*$/
after_success:
- coveralls
|
Revise Travis for new branch names
|
Revise Travis for new branch names
|
YAML
|
mit
|
richardbuckle/EDRefCard,richardbuckle/EDRefCard,richardbuckle/EDRefCard
|
666067003f08c88c817a86b9ec7b54a8a66b127a
|
.github/workflows/main.yml
|
.github/workflows/main.yml
|
name: CI
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # all
- name: Setup .NET 6.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Install SQL CE 📅
shell: powershell
run: ./install-sql-ce.ps1
- name: Cake Build 🏗️
shell: powershell
run: ./build.ps1
env:
OCTOVERSION_CurrentBranch: ${{ github.ref }}
AssentNonInteractive: true
- name: Push NuGet packages to GitHub Packages ⬆️
if: ${{ format('{0}', env.PACKAGE_KEY) != '' }}
working-directory: artifacts
run: dotnet nuget push *.nupkg --api-key ${{ env.PACKAGE_KEY }} --source "https://nuget.pkg.github.com/DbUp/index.json"
env:
PACKAGE_KEY: ${{ secrets.GITHUB_TOKEN }}
- name: Test Report 🧪
uses: dorny/test-reporter@v1
if: success() || failure() # run this step even if previous step failed
with:
name: Tests
path: artifacts/TestResults/*.trx
reporter: dotnet-trx
|
name: CI
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
env:
DOTNET_NOLOGO: true
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true # Avoid pre-populating the NuGet package cache
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # all
- name: Setup .NET 6.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Install SQL CE 📅
shell: powershell
run: ./install-sql-ce.ps1
- name: Cake Build 🏗️
shell: powershell
run: ./build.ps1
env:
OCTOVERSION_CurrentBranch: ${{ github.ref }}
AssentNonInteractive: true
- name: Push NuGet packages to GitHub Packages ⬆️
if: ${{ format('{0}', env.PACKAGE_KEY) != '' }}
working-directory: artifacts
run: dotnet nuget push *.nupkg --api-key ${{ env.PACKAGE_KEY }} --source "https://nuget.pkg.github.com/DbUp/index.json"
env:
PACKAGE_KEY: ${{ secrets.GITHUB_TOKEN }}
- name: Test Report 🧪
uses: dorny/test-reporter@v1
if: success() || failure() # run this step even if previous step failed
with:
name: Tests
path: artifacts/TestResults/*.trx
reporter: dotnet-trx
|
Set .NET CLI Environment Variables
|
Set .NET CLI Environment Variables
|
YAML
|
mit
|
DbUp/DbUp
|
62f307c077a130359e24e7bbfab8690113408df3
|
.github/workflows/main.yml
|
.github/workflows/main.yml
|
# Action was shamelessly copied from here: https://stackoverflow.com/a/64311970
name: github pages
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.9.4'
- name: Upgrade pip
run: |
python3 -m pip install --upgrade pip
- name: Get pip cache dir
id: pip-cache
run: echo "::set-output name=dir::$(pip cache dir)"
- name: Cache dependencies
uses: actions/cache@v2
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: python3 -m pip install -r ./requirements.txt
- name: Generate HTML
run: |
make html
echo academics.cs.luc.edu > build/html/CNAME
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build/html
|
# Action was shamelessly copied from here: https://stackoverflow.com/a/64311970
name: github pages
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.9.4'
- name: Upgrade pip
run: |
python3 -m pip install --upgrade pip
- name: Get pip cache dir
id: pip-cache
run: echo "::set-output name=dir::$(pip cache dir)"
- name: Cache dependencies
uses: actions/cache@v2
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: python3 -m pip install -r ./requirements.txt
- name: Generate HTML
run: |
make html
echo academics.cs.luc.edu > build/html/CNAME
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build/html
|
Update branch for the workflow to be executed on
|
Update branch for the workflow to be executed on
Update branch for the workflow to be executed on from `main` to `master`
|
YAML
|
apache-2.0
|
LoyolaChicagoCS/coursedescriptions,LoyolaChicagoCS/coursedescriptions,LoyolaChicagoCS/coursedescriptions
|
78c96e5cd2dbd9d648c414aa3a7a178f66970fd9
|
.github/workflows/main.yml
|
.github/workflows/main.yml
|
name: Node CI
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [8, 10, 12]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Cache modules
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- run: npm ci
env:
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: 1
- name: Pre-Test
run: |
npm run lint
npm run test-headless -- --chrome $(which google-chrome-stable) --allow-chrome-as-root
npm run test-webworker -- --chrome $(which google-chrome-stable) --allow-chrome-as-root
npm run test-esm-bundle
if: matrix.node-version == 10
- name: npm test
run: npm run test-node
|
name: Node CI
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [8, 10, 12]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Cache modules
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- run: npm ci
env:
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: 1
- name: Pre-Test
run: |
npm run lint
export SINON_CHROME_BIN=$(which google-chrome-stable)
npm run test-headless -- --chrome $SINON_CHROME_BIN --allow-chrome-as-root
npm run test-webworker -- --chrome $SINON_CHROME_BIN --allow-chrome-as-root
npm run test-esm-bundle
if: matrix.node-version == 10
- name: npm test
run: npm run test-node
|
Set SINON_CHROME_BIN for esm-bundle test
|
Set SINON_CHROME_BIN for esm-bundle test
|
YAML
|
bsd-3-clause
|
cjohansen/Sinon.JS,mroderick/Sinon.JS,mroderick/Sinon.JS,cjohansen/Sinon.JS,cjohansen/Sinon.JS,mroderick/Sinon.JS
|
27375ed871235c8f03a6f641201eea8400451bac
|
.github/workflows/main.yml
|
.github/workflows/main.yml
|
name: main
on:
push:
pull_request:
jobs:
build:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
include: [
{ msystem: MINGW64, arch: x86_64 },
{ msystem: MINGW32, arch: i686 }
]
defaults:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: msys2/setup-msys2@v2
with:
msystem: ${{ matrix.msystem }}
install: git base-devel mingw-w64-${{ matrix.arch }}-toolchain
update: true
- name: CI-Build
run: MINGW_INSTALLS=${{ matrix.msystem }} ./ci-build.sh
- name: "Upload binaries"
uses: actions/upload-artifact@v2
with:
name: ${{ matrix.msystem }}-packages
path: artifacts/*.pkg.tar.*
- name: "Upload sources"
uses: actions/upload-artifact@v2
with:
name: sources
path: artifacts/*.src.tar.*
|
name: main
on:
push:
pull_request:
jobs:
build:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
include: [
{ msystem: MINGW64, arch: x86_64 },
{ msystem: MINGW32, arch: i686 }
]
steps:
- uses: actions/checkout@v2
with:
path: temp
fetch-depth: 0
- uses: msys2/setup-msys2@v2
with:
msystem: ${{ matrix.msystem }}
install: git base-devel mingw-w64-${{ matrix.arch }}-toolchain
update: true
- name: Move Checkout
run: |
Copy-Item -Path ".\temp" -Destination "C:\_" -Recurse
- name: CI-Build
shell: msys2 {0}
run: |
cd /C/_
MINGW_INSTALLS=${{ matrix.msystem }} ./ci-build.sh
- name: "Upload binaries"
uses: actions/upload-artifact@v2
with:
name: ${{ matrix.msystem }}-packages
path: artifacts/*.pkg.tar.*
- name: "Upload sources"
uses: actions/upload-artifact@v2
with:
name: sources
path: artifacts/*.src.tar.*
|
Move the checkout to C:/_
|
CI: Move the checkout to C:/_
To (a) get more space and (b) reduce the path lengths
|
YAML
|
bsd-3-clause
|
Ede123/MINGW-packages,Optiligence/MINGW-packages,JPeterMugaas/MINGW-packages,JPeterMugaas/MINGW-packages,stahta01/MINGW-packages,oroppas/MINGW-packages,lhmouse/MINGW-packages,mati865/MINGW-packages,Chocobo1/MINGW-packages,stahta01/MINGW-packages,oroppas/MINGW-packages,fabiangreffrath/MINGW-packages,RickLeaf/MINGW-packages,RickLeaf/MINGW-packages,nazar554/MINGW-packages,Alexpux/MINGW-packages,peterbud/MINGW-packages,jtanx/MINGW-packages,stahta01/MINGW-packages,bjlemke/MINGW-packages,Ede123/MINGW-packages,JPeterMugaas/MINGW-packages,Alexpux/MINGW-packages,lhmouse/MINGW-packages,Ede123/MINGW-packages,oroppas/MINGW-packages,nazar554/MINGW-packages,Chocobo1/MINGW-packages,JPeterMugaas/MINGW-packages,oscarfv/MINGW-packages,fabiangreffrath/MINGW-packages,oscarfv/MINGW-packages,peterbud/MINGW-packages,InitialForce/MINGW-packages,Ede123/MINGW-packages,Alexpux/MINGW-packages,jtanx/MINGW-packages,stahta01/MINGW-packages,Optiligence/MINGW-packages,fabiangreffrath/MINGW-packages,bjlemke/MINGW-packages,stahta01/MINGW-packages,lhmouse/MINGW-packages,jtanx/MINGW-packages,JPeterMugaas/MINGW-packages,bjlemke/MINGW-packages,oscarfv/MINGW-packages,Alexpux/MINGW-packages,lhmouse/MINGW-packages,Optiligence/MINGW-packages,InitialForce/MINGW-packages,RickLeaf/MINGW-packages,mati865/MINGW-packages,oscarfv/MINGW-packages,JPeterMugaas/MINGW-packages,oscarfv/MINGW-packages,nazar554/MINGW-packages,oroppas/MINGW-packages,stahta01/MINGW-packages,oroppas/MINGW-packages,InitialForce/MINGW-packages,mati865/MINGW-packages,oscarfv/MINGW-packages,Optiligence/MINGW-packages,peterbud/MINGW-packages,RickLeaf/MINGW-packages,mati865/MINGW-packages,oroppas/MINGW-packages,fabiangreffrath/MINGW-packages,mati865/MINGW-packages,nazar554/MINGW-packages,Alexpux/MINGW-packages,bjlemke/MINGW-packages,lhmouse/MINGW-packages,fabiangreffrath/MINGW-packages,peterbud/MINGW-packages,fabiangreffrath/MINGW-packages,Chocobo1/MINGW-packages,lhmouse/MINGW-packages,jtanx/MINGW-packages,Alexpux/MINGW-packages
|
16b59281b8eb0912e6efb52ace28fd9aa006a3f3
|
.travis.yml
|
.travis.yml
|
dist: trusty
sudo: false
group: beta
language: node_js
node_js:
- node
cache:
directories:
- node_modules
before_install:
- if [ -d node_modules ] && [ x$(cat node_modules/.last-node-version 2>/dev/null) != x$(node -e 'console.log(process.version)') ]; then npm rebuild --update-binary && node -e 'console.log(process.version)' > node_modules/.last-node-version; fi
|
dist: trusty
sudo: false
group: beta
language: node_js
node_js:
- 7
cache:
directories:
- node_modules
before_install:
- if [ -d node_modules ] && [ x$(cat node_modules/.last-node-version 2>/dev/null) != x$(node -e 'console.log(process.version)') ]; then npm rebuild --update-binary && node -e 'console.log(process.version)' > node_modules/.last-node-version; fi
|
Build with node 7.x on Travis
|
Build with node 7.x on Travis
Related to: https://github.com/Collaborne/gulp-xliff-to-carbon-i18n/issues/8
|
YAML
|
apache-2.0
|
Collaborne/gulp-xliff-to-carbon-i18n
|
be7d07aa8597784b9a39be840b64a54fde307a28
|
.github/workflows/rust.yml
|
.github/workflows/rust.yml
|
name: Rust
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build
run: cargo build
- name: Run tests
run: cargo test
|
name: Rust
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build
run: cargo build
- name: Run tests
run: cargo test --features encoding,serialize
|
Test on PR and with all features enabled
|
Test on PR and with all features enabled
|
YAML
|
mit
|
tafia/quick-xml,tafia/quick-xml
|
9cfd61f0fbf9f9c0b07abc709ea3ef08731106cb
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq
- sudo apt-get install -qq gcc-4.8
- sudo apt-get install -qq g++-4.8
- export CC="gcc-4.8"
- export CXX="g++-4.8"
- export CFLAGS=-std=c++11
- export CXXFLAGS=-std=c++11
- sh cythonize.sh
- python setup.py build install
script:
- python test_neologdn.py
notifications:
email:
recipients:
- [email protected]
on_success: always
on_failure: always
|
language: python
python:
- "2.6"
- "2.7"
- "3.4"
- "3.5"
- "3.6"
install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq
- sudo apt-get install -qq gcc-4.8
- sudo apt-get install -qq g++-4.8
- export CC="gcc-4.8"
- export CXX="g++-4.8"
- export CFLAGS=-std=c++11
- export CXXFLAGS=-std=c++11
- sh cythonize.sh
- python setup.py build install
script:
- python test_neologdn.py
|
Support Python 3.6 and don't support Python 3.3
|
Support Python 3.6 and don't support Python 3.3
|
YAML
|
apache-2.0
|
ikegami-yukino/neologdn,ikegami-yukino/neologdn
|
5ec9b4a819465a38eb4fb5849d8637639d0dd9c5
|
.travis.yml
|
.travis.yml
|
language: node_js
cache: yarn
node_js:
- stable
- "8"
- "6"
- "4"
install:
- YARN_IGNORE_ENGINES=true yarn
|
language: node_js
cache: yarn
node_js:
- node
- "8"
- "6"
- "4"
install:
- YARN_IGNORE_ENGINES=true yarn
|
Rename latest Node.js version in Travis CI
|
Rename latest Node.js version in Travis CI
|
YAML
|
mit
|
yisibl/autoprefixer,postcss/autoprefixer
|
dba9fc8bc3910977a66abf684d9df32079f9752d
|
.travis.yml
|
.travis.yml
|
language: go
os:
- linux
- osx
go:
- 1.3
- 1.4
- 1.5
- 1.6
- 1.7
- 1.8
- tip
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/860de7e374c89032863a
on_success: change
on_failure: always
on_start: never
email:
on_success: change
on_failure: always
script: make debug
|
language: go
os:
- linux
- osx
go:
- 1.7
- 1.8
- tip
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/860de7e374c89032863a
on_success: change
on_failure: always
on_start: never
email:
on_success: change
on_failure: always
script: make debug
|
Bump Golang dependency to 1.7, so we can use the context package
|
Bump Golang dependency to 1.7, so we can use the context package
|
YAML
|
agpl-3.0
|
muesli/beehive,muesli/beehive
|
bac1b60a743ddff626fea1c33f0596dceb2fe6c4
|
.github/workflows/test.yml
|
.github/workflows/test.yml
|
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
# change this to (see https://github.com/ruby/setup-ruby#versioning):
# uses: ruby/setup-ruby@v1
uses: ruby/setup-ruby@eb938a806ed6dbfb36293b94ccb2afaf2d590c92
with:
ruby-version: 2.6
- name: Install dependencies
run: bundle install
- name: Run lint
run: bundle exec rake rubocop
- name: Run tests
run: bundle exec rake spec
|
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
# change this to (see https://github.com/ruby/setup-ruby#versioning):
# uses: ruby/setup-ruby@v1
uses: ruby/setup-ruby@e404913b054b478c35ac2a0980a8fabc864cf6f6
with:
ruby-version: 2.6
- name: Install dependencies
run: bundle install
- name: Run lint
run: bundle exec rake rubocop
- name: Run tests
run: bundle exec rake spec
|
Bump ruby/setup-ruby from 1.103.0 to 1.104.0
|
Bump ruby/setup-ruby from 1.103.0 to 1.104.0
Bumps [ruby/setup-ruby](https://github.com/ruby/setup-ruby) from 1.103.0 to 1.104.0.
- [Release notes](https://github.com/ruby/setup-ruby/releases)
- [Commits](https://github.com/ruby/setup-ruby/compare/eb938a806ed6dbfb36293b94ccb2afaf2d590c92...e404913b054b478c35ac2a0980a8fabc864cf6f6)
---
updated-dependencies:
- dependency-name: ruby/setup-ruby
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <[email protected]>
|
YAML
|
mit
|
araneforseti/api-tester,araneforseti/api-tester
|
be61f00aabd63bf2f32d841976b8cdfc6109b0f5
|
.github/workflows/test.yml
|
.github/workflows/test.yml
|
on: [push, pull_request]
name: Test
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.11.x
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: go test -v ./...
|
on: [push, pull_request]
name: Test
jobs:
test111:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.11.x
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: go test -v ./...
test112:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.12.x
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: go test -v ./...
test113:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.13.x
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: go test -v ./...
test114:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.14.x
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: go test -v ./...
test115:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.15.x
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: go test -v ./...
test116:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.16.x
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: go test -v ./...
test117:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.17.x
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: go test -v ./...
test118:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.18.x
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: go test -v ./...
|
Test across many Go versions.
|
Test across many Go versions.
|
YAML
|
apache-2.0
|
google/btree
|
5319879536eea4abb41b9dbe8e715ed321dea199
|
.github/workflows/test.yml
|
.github/workflows/test.yml
|
name: Test
on:
- push
- pull_request
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest]
mode: [run_tests]
python:
- "2.6"
- "3.2"
- "3.6"
- "3.8"
include:
- os: ubuntu-latest
mode: check_style
python: "2.7"
- os: ubuntu-latest
mode: coverage
python: "2.7"
runs-on: ${{ matrix.os }}
env:
TEST_MODE: ${{ matrix.mode }}
PYTHON_VERSION: ${{ matrix.python }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: .ci/install.sh
- name: Test
run: .ci/test.sh
- name: Finish
run: .ci/finish.sh
test-windows:
strategy:
matrix:
os: [windows-latest]
python:
- "2.7"
- "3.4"
- "3.8"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: ".ci\\install.bat"
- name: Test
run: ".ci\\test.bat"
|
name: Test
on:
- push
- pull_request
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest]
mode: [run_tests]
python:
- "3.5"
- "3.8"
include:
- os: ubuntu-latest
mode: check_style
python: "2.7"
- os: ubuntu-latest
mode: coverage
python: "2.7"
runs-on: ${{ matrix.os }}
env:
TEST_MODE: ${{ matrix.mode }}
PYTHON_VERSION: ${{ matrix.python }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: .ci/install.sh
- name: Test
run: .ci/test.sh
- name: Finish
run: .ci/finish.sh
test-windows:
strategy:
matrix:
os: [windows-latest]
python:
- "2.7"
- "3.5"
- "3.8"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: ".ci\\install.bat"
- name: Test
run: ".ci\\test.bat"
|
Use only the limited Python versions available
|
CI: Use only the limited Python versions available
|
YAML
|
bsd-3-clause
|
remram44/rpaths,remram44/rpaths
|
e1119b0c9a0ea35ace144f012b52f971e386b0cc
|
.github/workflows/test.yml
|
.github/workflows/test.yml
|
name: Test Suite
on: [push, pull_request]
jobs:
Test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v1
with:
node-version: 14.x
- name: Install dependencies
run: npm install
- name: Run tests
run: xvfb-run -a npm test
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
|
name: Test Suite
on: [push, pull_request]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v1
with:
node-version: 14.x
- name: Install dependencies
run: npm install
- name: Run tests
run: xvfb-run -a npm test
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
|
Use key and name better
|
Use key and name better
|
YAML
|
mit
|
neild3r/vscode-php-docblocker
|
2ad480e5409db1ea7bde1658439a8104b11cf749
|
.travis.yml
|
.travis.yml
|
language: scala
scala:
- 2.10.5
- 2.11.6
sudo: false
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt/boot/scala-$TRAVIS_SCALA_VERSION
script:
- travis_retry "./travis.sh"
- find $HOME/.sbt -name "*.lock" | xargs rm
- find $HOME/.ivy2 -name "ivydata-*.properties" | xargs rm
after_success: "./travis_after.sh"
env:
matrix:
- TEST_TYPE="framework"
- TEST_TYPE="blank-app"
global:
secure: Sc+Fw9a/cZUbqyGhQrEujg8G2gBlYVVpf7gXcBdFbot5xiHmgvzWXWDxJrkEOVYSvYPWwOnjS2w/fVFF05cCnoT2VVuMxZ3bp/wB1WMEvZ9TLIR2sFUdySohD/VZTV+DiIRZWTZmrlWXXyQmqk/H84n5QBikZZxRmyEHK4WeCag=
|
language: scala
scala:
- 2.10.5
- 2.11.7
sudo: false
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt/boot/scala-$TRAVIS_SCALA_VERSION
script:
- travis_retry "./travis.sh"
- find $HOME/.sbt -name "*.lock" | xargs rm
- find $HOME/.ivy2 -name "ivydata-*.properties" | xargs rm
after_success: "./travis_after.sh"
env:
matrix:
- TEST_TYPE="framework"
- TEST_TYPE="blank-app"
global:
secure: Sc+Fw9a/cZUbqyGhQrEujg8G2gBlYVVpf7gXcBdFbot5xiHmgvzWXWDxJrkEOVYSvYPWwOnjS2w/fVFF05cCnoT2VVuMxZ3bp/wB1WMEvZ9TLIR2sFUdySohD/VZTV+DiIRZWTZmrlWXXyQmqk/H84n5QBikZZxRmyEHK4WeCag=
|
Fix Scala minor version on Travis
|
Fix Scala minor version on Travis
|
YAML
|
mit
|
skinny-framework/skinny-framework,holycattle/skinny-framework,Kuchitama/skinny-framework,holycattle/skinny-framework,skinny-framework/skinny-framework,seratch/skinny-framework,holycattle/skinny-framework,holycattle/skinny-framework,holycattle/skinny-framework,Kuchitama/skinny-framework,Kuchitama/skinny-framework,skinny-framework/skinny-framework,seratch/skinny-framework,seratch/skinny-framework,skinny-framework/skinny-framework,Kuchitama/skinny-framework,Kuchitama/skinny-framework,seratch/skinny-framework
|
a5fc9ad918ea77b375f5d7096476d0b99612a74b
|
.github/workflows/test.yml
|
.github/workflows/test.yml
|
name: test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install build dependencies
run: |
sudo apt-get install libcurl4-openssl-dev libxml2-dev libxslt-dev
- name: Install dependencies
run: |
python -m pip install -U pip
pip install -U -r requirements_dev.txt
pip install -U -e .
- name: Run tests
run: |
coverage run runtest.py --test-all
- name: Upload coverage results
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
coveralls --service=github
|
name: test
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python: ['3.7', '3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Install Ubuntu build dependencies
if: ${{ startsWith(matrix.os, 'ubuntu') }}
run: |
sudo apt-get install libcurl4-openssl-dev libxml2-dev libxslt-dev
- name: Install MacOS build dependencies
if: ${{ startsWith(matrix.os, 'macos') }}
run: |
brew install openssl
- name: Instal pycurl on MacOS
if: ${{ startsWith(matrix.os, 'macos') }}
run: |
PYCURL_SSL_LIBRARY=openssl LDFLAGS="-L/usr/local/opt/openssl/lib" CPPFLAGS="-I/usr/local/opt/openssl/include" pip install -U --no-cache-dir pycurl
- name: Install dependencies
run: |
pip install -U -r requirements_dev.txt
pip install -U -e .
- name: Run tests
run: |
coverage run runtest.py --test-all
- name: Upload coverage results
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
coveralls --service=github
|
Enable github ci for macos env
|
Enable github ci for macos env
|
YAML
|
mit
|
lorien/grab,lorien/grab
|
a352c1c66416e82eb0c18a9b98c26b95dd6ae336
|
.github/workflows/test.yml
|
.github/workflows/test.yml
|
name: Node CI
on: [push]
jobs:
test:
name: Run test suite
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/[email protected]
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/[email protected]
with:
node-version: ${{ matrix.node-version }}
- name: npm install and test
run: |
npm install
npm run build
npm test
env:
CI: true
merge-me:
name: Auto-merge dependency updates
needs: test
runs-on: ubuntu-latest
steps:
- uses: ridedott/[email protected]
with:
GITHUB_LOGIN: 'dependabot[bot]'
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
name: Node CI
on: [push]
jobs:
test:
name: Run test suite
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/[email protected]
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/[email protected]
with:
node-version: ${{ matrix.node-version }}
- name: npm install and test
run: |
npm install
npm run build
npm test
env:
CI: true
merge-me:
name: Auto-merge dependency updates
needs: test
runs-on: ubuntu-latest
steps:
- uses: ridedott/[email protected]
with:
GITHUB_LOGIN: 'dependabot[bot]'
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
Bump ridedott/merge-me-action from v1.7.2 to v1.7.3
|
Bump ridedott/merge-me-action from v1.7.2 to v1.7.3
|
YAML
|
mit
|
noflo/noflo-tween
|
6e081a71421c85788be7f43a200d9dc442be1572
|
.github/workflows/test.yml
|
.github/workflows/test.yml
|
name: Node CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm ci
npm test
env:
CI: true
|
name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Use Node.js 12.x
uses: actions/setup-node@v1
with:
node-version: 12.x
- name: npm install, build, and test
run: |
npm ci
npm test
env:
CI: true
|
Test with one node version
|
Test with one node version
|
YAML
|
mit
|
github/include-fragment-element,github/include-fragment-element
|
e0ed0833d89645afea04c1a665b84e5732ffd87a
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- 0.8
notifications:
hipchat:
- secure: "HqBUrmf4P2bgvwb4b9PL1tBae2wcZaXadOgwRwAFhdhDZFHaKXIXlJRUW8tN\ntdO83OZgatxJrpWWQj8VYTfDuhlE3b3NxVWeXc3PkfrHmuvejQf4veh7kwR0\njLVE6jb+ZbFIwRE2W0VFLFKYQHI6PLem4W0OKXW5Shqzy8Ewlow="
irc:
channels: "irc.freenode.org#apiary"
on_success: always
on_failure: always
cache:
directories:
- node_modules
|
language: node_js
node_js:
- 0.8
- 0.10
notifications:
hipchat:
- secure: "HqBUrmf4P2bgvwb4b9PL1tBae2wcZaXadOgwRwAFhdhDZFHaKXIXlJRUW8tN\ntdO83OZgatxJrpWWQj8VYTfDuhlE3b3NxVWeXc3PkfrHmuvejQf4veh7kwR0\njLVE6jb+ZbFIwRE2W0VFLFKYQHI6PLem4W0OKXW5Shqzy8Ewlow="
irc:
channels: "irc.freenode.org#apiary"
on_success: always
on_failure: always
cache:
directories:
- node_modules
|
Add node 0.10 to test suite
|
Add node 0.10 to test suite
|
YAML
|
mit
|
apiaryio/s3-streaming-upload
|
ba1e4b3ce1848efed377fd98322252f407e5058b
|
.github/workflows/test.yml
|
.github/workflows/test.yml
|
name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev,test]
- name: Run tests
run: |
python setup.py nosetests
- name: Send coverage to Coveralls
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_FLAG_NAME: python-${{ matrix.python-version }}
COVERALLS_PARALLEL: true
if: ${{ github.event_name == 'push' }}
run: |
coveralls
coveralls:
needs: test
if: ${{ github.event_name == 'push' }}
runs-on: ubuntu-latest
container: python:3-slim
steps:
- name: Finish sending coverage to Coveralls
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
pip install coveralls
coveralls --finish
|
name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev,test]
- name: Run tests
run: |
python setup.py nosetests
- name: Send coverage to Coveralls
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_FLAG_NAME: python-${{ matrix.python-version }}
COVERALLS_PARALLEL: true
if: ${{ github.event_name == 'push' }}
run: |
coveralls
coveralls:
needs: test
if: ${{ github.event_name == 'push' }}
runs-on: ubuntu-latest
container: python:3-slim
steps:
- name: Finish sending coverage to Coveralls
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
pip install coveralls
coveralls --finish
|
Remove Python 3.5 from GitHub Actions Test workflow
|
Remove Python 3.5 from GitHub Actions Test workflow
|
YAML
|
mit
|
tweepy/tweepy,svven/tweepy
|
1142355083508f97b8e9e17a73c53bd1488c84a5
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
|
sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
- '10'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
|
Build with Node.js 10 on Travis CI.
|
Build with Node.js 10 on Travis CI.
|
YAML
|
mit
|
bigeasy/interrupt
|
52e06dd114c07827cb4e588b091d490b7908be51
|
.github/workflows/test.yml
|
.github/workflows/test.yml
|
name: Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with pytest
run: |
python -m pytest --cov=cryptocompare tests/
- name: Upload coverage report
run: |
pip install coveralls
coveralls
|
name: Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with pytest
run: |
python -m pytest --cov=cryptocompare tests/
- name: Upload coverage report
run: |
pip install coveralls
coveralls
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
|
Add coveralls repo token to upload step
|
Add coveralls repo token to upload step
|
YAML
|
mit
|
lagerfeuer/cryptocompare
|
ca1aa25e06da2d8f8e72a42c92b62fa1cf745e9f
|
.github/workflows/test.yml
|
.github/workflows/test.yml
|
name: Test
on:
pull_request:
push:
schedule:
- cron: '0 6 * * *'
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- '3.6'
- '3.7'
- '3.8'
- '3.9'
- '3.10'
- 'pypy3'
toxenv: [py]
include:
- python-version: '3.6'
toxenv: lint
- python-version: '3.6'
toxenv: typing
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
python -m pip install --upgrade --upgrade-strategy=eager tox
- name: Run tests with coverage
if: matrix.toxenv == 'py'
run: tox -e py -- --cov-report=xml
- name: Run generic tests
if: matrix.toxenv != 'py'
run: tox -e ${{ matrix.toxenv }}
- name: Upload coverage to Codecov
if: matrix.toxenv == 'py'
uses: codecov/codecov-action@v2
with:
fail_ci_if_error: false
# vim:set et sts=2:
|
name: Test
on:
pull_request:
push:
schedule:
- cron: '0 6 * * *'
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- '3.6'
- '3.7'
- '3.8'
- '3.9'
- '3.10'
- 'pypy-3.6'
- 'pypy-3.7'
- 'pypy-3.8'
toxenv: [py]
include:
- python-version: '3.6'
toxenv: lint
- python-version: '3.6'
toxenv: typing
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
python -m pip install --upgrade --upgrade-strategy=eager tox
- name: Run tests with coverage
if: matrix.toxenv == 'py'
run: tox -e py -- --cov-report=xml
- name: Run generic tests
if: matrix.toxenv != 'py'
run: tox -e ${{ matrix.toxenv }}
- name: Upload coverage to Codecov
if: matrix.toxenv == 'py'
uses: codecov/codecov-action@v2
with:
fail_ci_if_error: false
# vim:set et sts=2:
|
Update PyPy versions in CI
|
Update PyPy versions in CI
|
YAML
|
mit
|
jwodder/daemail
|
8e825a88139e0c451046d6cdb53df5a3bd4b58a7
|
.travis.yml
|
.travis.yml
|
language: android
jdk: oraclejdk8
android:
components:
- tools
- platform-tools
- tools # intentional, see travis-ci/docs-travis-ci-com#779
- build-tools-26.0.2
- android-22 # For emulator to work
- android-26
- extra-android-m2repository
- sys-img-armeabi-v7a-android-22
licenses:
- android-sdk-license-.+
env:
matrix:
- ANDROID_SDKS=android-22,sysimg-22 ANDROID_TARGET=android-22 ANDROID_ABI=armeabi-v7a
before_install:
- echo no | android create avd --force -n test -t $ANDROID_TARGET --abi $ANDROID_ABI
- emulator -avd test -no-skin -no-audio -no-window &
before_script:
- chmod +x gradlew
- android-wait-for-emulator
- adb shell input keyevent 82 &
|
language: android
jdk: oraclejdk8
android:
components:
- tools
- platform-tools
- tools # intentional, see travis-ci/docs-travis-ci-com#779
- build-tools-26.0.2
- android-22 # For emulator to work
- android-26
- extra-android-m2repository
- sys-img-armeabi-v7a-android-15
- sys-img-armeabi-v7a-android-22
licenses:
- android-sdk-license-.+
env:
matrix:
- ANDROID_SDKS=android-22,sysimg-22 ANDROID_TARGET=android-22 ANDROID_ABI=armeabi-v7a
before_install:
- echo no | android create avd --force -n test -t $ANDROID_TARGET --abi $ANDROID_ABI
- emulator -avd test -no-skin -no-audio -no-window &
before_script:
- chmod +x gradlew
- android-wait-for-emulator
- adb shell input keyevent 82 &
after_failure:
- cat $TRAVIS_BUILD_DIR/library/build/outputs/lint-results-debug.xml
- cat $TRAVIS_BUILD_DIR/library/build/reports/androidTests/connected/index.html
|
Print lint and test reports after Travis-CI failure.
|
Print lint and test reports after Travis-CI failure.
|
YAML
|
apache-2.0
|
oasisfeng/condom
|
9e3d012acd6438ddb86727fccf8768565e7e4780
|
.travis.yml
|
.travis.yml
|
# references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
# cache: cocoapods
# podfile: Example/Podfile
# before_install:
# - gem install cocoapods # Since Travis is not always on latest version
# - pod install --project-directory=Example
language: objective-c
script:
- xcodebuild -workspace Example/YXTUnsatisfiableConstraintsDetector.xcworkspace -scheme YXTUnsatisfiableConstraintsDetector-Example -destination 'platform=iOS Simulator,name=iPhone Retina (4-inch),OS=7.1' test | xcpretty
- pod lib lint
|
# references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
# cache: cocoapods
# podfile: Example/Podfile
# before_install:
# - gem install cocoapods # Since Travis is not always on latest version
# - pod install --project-directory=Example
language: objective-c
script:
- xcodebuild -workspace Example/YXTUnsatisfiableConstraintsDetector.xcworkspace -scheme YXTUnsatisfiableConstraintsDetector-Example -destination 'platform=iOS Simulator,name=iPhone 6 Plus,OS=9.2' | xcpretty
- pod lib lint
|
Use newer simulator for tests.
|
Use newer simulator for tests.
|
YAML
|
mit
|
yext/YXTUnsatisfiableConstraintsDetector,yext/YXTUnsatisfiableConstraintsDetector
|
5a4b0a51cc17bec5b69b7052473c4f96b2e9078d
|
.travis.yml
|
.travis.yml
|
sudo: false
language: python
python:
- "2.7"
- "3.6"
- "3.7"
install: pip install tox-travis
script: tox
|
sudo: false
language: python
python:
- "2.7"
- "3.6"
install: pip install tox-travis
script: tox
|
Remove 3.7 from Travis config
|
Remove 3.7 from Travis config
|
YAML
|
apache-2.0
|
callowayproject/django-categories,callowayproject/django-categories,callowayproject/django-categories
|
accd4ccd258bc87ea029d1276eb140590f05dd5b
|
.travis.yml
|
.travis.yml
|
before_script:
- npm cache clean
- npm update -g npm
language: node_js
node_js:
- 0.8
|
before_script:
- npm cache clean
- npm update -g npm
language: node_js
node_js:
- 0.10
|
Fix Travis CI build error
|
Fix Travis CI build error
|
YAML
|
mit
|
rakesh-mohanta/wix-ui-lib,rakesh-mohanta/wix-ui-lib
|
8edfabe0af587b842bd4835d508ebeb7b92a3ad5
|
.travis.yml
|
.travis.yml
|
before_script: cp config/database.yml.example config/database.yml
language: ruby
rvm:
- 1.9.2
#- 1.9.3
script: bundle exec rake db:create db:migrate db:test:prepare default
branches:
only:
- master
|
branches:
only:
- master
before_script: cp config/database.yml.example config/database.yml
language: ruby
matrix:
allow_failures:
- rvm: 1.9.3
- rvm: ruby-head
rvm:
- 1.9.2
- 1.9.3
- ruby-head
script: bundle exec rake db:create db:migrate db:test:prepare default
|
Test against ruby-head (allow failures)
|
Test against ruby-head (allow failures)
|
YAML
|
mit
|
maclover7/rubygems.org,jamelablack/rubygems.org,farukaydin/rubygems.org,arthurnn/rubygems.org,Ch4s3/rubygems.org,olivierlacan/rubygems.org,wallin/rubygems.org,spk/rubygems.org,fotanus/rubygems.org,knappe/rubygems.org,hrs113355/rubygems.org,davydovanton/rubygems.org,arthurnn/rubygems.org,JuanitoFatas/rubygems.org,polamjag/rubygems.org,iSC-Labs/rubygems.org,spk/rubygems.org,wallin/rubygems.org,algolia/rubygems.org,Ch4s3/rubygems.org,iSC-Labs/rubygems.org,andrew/rubygems.org,algolia/rubygems.org,Elffers/rubygems.org,childbamboo/rubygems.org,JuanitoFatas/rubygems.org,kbrock/rubygems.org,rubygems/rubygems.org,andrew/rubygems.org,iSC-Labs/rubygems.org,spk/rubygems.org,sonalkr132/rubygems.org,kbrock/rubygems.org,childbamboo/rubygems.org,childbamboo/rubygems.org,rubygems/rubygems.org,olivierlacan/rubygems.org,knappe/rubygems.org,maclover7/rubygems.org,andrew/rubygems.org,jamelablack/rubygems.org,algolia/rubygems.org,olivierlacan/rubygems.org,Ch4s3/rubygems.org,rubygems/rubygems.org,arthurnn/rubygems.org,iRoxxDotOrg/rubygems.org,maclover7/rubygems.org,davydovanton/rubygems.org,iRoxxDotOrg/rubygems.org,polamjag/rubygems.org,spk/rubygems.org,wallin/rubygems.org,JuanitoFatas/rubygems.org,Exeia/rubygems.org,rubygems/rubygems.org,childbamboo/rubygems.org,fotanus/rubygems.org,krainboltgreene/rubygems.org,andrew/rubygems.org,knappe/rubygems.org,huacnlee/rubygems.org,JuanitoFatas/rubygems.org,krainboltgreene/rubygems.org,kbrock/rubygems.org,jamelablack/rubygems.org,Exeia/rubygems.org,hrs113355/rubygems.org,Ch4s3/rubygems.org,krainboltgreene/rubygems.org,Elffers/rubygems.org,davydovanton/rubygems.org,sonalkr132/rubygems.org,krainboltgreene/rubygems.org,Elffers/rubygems.org,wallin/rubygems.org,knappe/rubygems.org,sonalkr132/rubygems.org,algolia/rubygems.org,iSC-Labs/rubygems.org,olivierlacan/rubygems.org,farukaydin/rubygems.org,davydovanton/rubygems.org,kbrock/rubygems.org,Exeia/rubygems.org,hrs113355/rubygems.org,polamjag/rubygems.org,hrs113355/rubygems.org,farukaydin/rubygems.org,fotanus/rubygems.org,fotanus/rubygems.org,jamelablack/rubygems.org,huacnlee/rubygems.org,huacnlee/rubygems.org,polamjag/rubygems.org,Exeia/rubygems.org,iRoxxDotOrg/rubygems.org,Elffers/rubygems.org,maclover7/rubygems.org,farukaydin/rubygems.org,sonalkr132/rubygems.org,huacnlee/rubygems.org,iRoxxDotOrg/rubygems.org
|
b219e447ea62fe02bd124544a2ff12b6c945c9d1
|
.travis.yml
|
.travis.yml
|
language: php
dist: trusty
cache:
directories:
- $HOME/.composer/cache/files
- $HOME/.cache/composer/files
matrix:
include:
- php: 5.6
- php: 7.3
fast_finish: true
before_script:
- composer install
- cp src/config.php.dist src/config.php
- git remote set-branches --add origin master
- git fetch
script:
- composer check
|
language: php
dist: trusty
cache:
directories:
- $HOME/.composer/cache/files
- $HOME/.cache/composer/files
matrix:
include:
- php: 7.3
fast_finish: true
before_script:
- composer install
- cp src/config.php.dist src/config.php
- git remote set-branches --add origin master
- git fetch
script:
- composer check
|
Remove PHP 5.6 testing from Travis
|
Remove PHP 5.6 testing from Travis
|
YAML
|
bsd-3-clause
|
joindin/joindin-api,heiglandreas/joindin-api,lornajane/joindin-api,heiglandreas/joindin-api,dstockto/joindin-api,joindin/joindin-api,dstockto/joindin-api,heiglandreas/joindin-api,lornajane/joindin-api,joindin/joindin-api,lornajane/joindin-api,dstockto/joindin-api
|
b372fc2178f0fc7921a6b05057deee0c168ad69b
|
.travis.yml
|
.travis.yml
|
language: objective-c
# xcode_workspace: ReactiveAccountStoreDemo.xcworkspace
# xcode_scheme: ReactiveAccountStoreDemo
# xcode_sdk:
# - iphonesimulator7.1
# - iphonesimulator7.0
env:
global:
- LANG=en_US.UTF-8
- LC_ALL=en_US.UTF-8
before_install:
- brew update
- brew upgrade xctool
- gem update cocoapods --no-ri --no-rdoc
before_script:
- pushd External/ReactiveCocoa; script/bootstrap; popd;
# https://github.com/travis-ci/travis-ci/issues/2197
# https://github.com/fulldecent/FDSoundActivatedRecorder/commit/941f58be58f941e270d7a7fd4a757cab3bda657a
script:
- xctool -workspace ReactiveAccountStoreDemo.xcworkspace -scheme ReactiveAccountStoreDemo -sdk iphonesimulator7.1 ONLY_ACTIVE_ARCH=NO clean build test
|
language: objective-c
# xcode_workspace: ReactiveAccountStoreDemo.xcworkspace
# xcode_scheme: ReactiveAccountStoreDemo
# xcode_sdk:
# - iphonesimulator7.1
# - iphonesimulator7.0
env:
global:
- LANG=en_US.UTF-8
- LC_ALL=en_US.UTF-8
before_install:
- brew update
- brew upgrade xctool
- gem update cocoapods --no-ri --no-rdoc
before_script:
- pushd External/ReactiveCocoa; script/bootstrap; popd;
# https://github.com/travis-ci/travis-ci/issues/2197
# https://github.com/fulldecent/FDSoundActivatedRecorder/commit/941f58be58f941e270d7a7fd4a757cab3bda657a
script:
- xcodebuild -workspace ReactiveAccountStoreDemo.xcworkspace -scheme ReactiveAccountStoreDemo -sdk iphonesimulator7.1 ONLY_ACTIVE_ARCH=NO clean build test
|
Use xcodebuild directory instead of xctool
|
Use xcodebuild directory instead of xctool
|
YAML
|
mit
|
ikesyo/ReactiveAccountStore
|
6a0577de33b999e777332a49f63376c0043d380a
|
.travis.yml
|
.travis.yml
|
language: c
compiler:
- gcc
- clang
notifications:
recipients:
- [email protected]
branches:
only:
- master
env:
- USE_DEBUG=yes
- USE_DEBUG=no
before_script:
- curl https://raw.github.com/kenhys/sylpheed-plugin-factory/master/misc/setup-travis.sh | sh
- git submodule update --init --recursive
- ./autogen.sh
script:
- curl https://raw.github.com/kenhys/sylpheed-plugin-factory/master/misc/configure.sh | sh
- make
|
language: c
compiler:
- gcc
- clang
notifications:
recipients:
- [email protected]
branches:
only:
- master
env:
- USE_DEBUG=yes
- USE_DEBUG=no
before_script:
- curl --location https://raw.github.com/kenhys/sylpheed-plugin-factory/master/misc/setup-travis.sh | sh
- git submodule update --init --recursive
- ./autogen.sh
script:
- curl https://raw.github.com/kenhys/sylpheed-plugin-factory/master/misc/configure.sh | sh
- make
|
Use --location option to support redirect
|
Use --location option to support redirect
|
YAML
|
bsd-2-clause
|
kenhys/sylpheed-customview,kenhys/sylpheed-customview
|
022b9d2d04c259dcdf43e6f00a455f15a7c63b6b
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
node_js:
- '6'
- '5'
- '4'
- '0.12'
- '0.10'
script: set -e; mkdir -p build; npm run build; if [[ $(node --version) == v6* ]]; then npm run coveralls; chmod u+x scripts/deploy-edge-to-cdn.sh; ./scripts/deploy-edge-to-cdn.sh; fi
env:
global:
- GH_REF: github.com/ractivejs/ractive.git
- CDN_REF: github.com/ractivejs/cdn.ractivejs.org.git
- secure: "nlnXJW/imf/w6qdTd7UCpRqLhLioxU6fllJPbP1DZr/9rp44HNVSPNxxGrA808VDXQ1ccpXBxIV9mgIi4Q/G0FUILA5NsSGYdQE00A+Lw3qnvv5FQ7Qoux44BKYi4L1W+4Zi3NEr7TAL+/dHCAk5k/ZKLTCCxiziAEw3M+akE4A="
branches:
only:
- master
- dev
|
sudo: false
language: node_js
node_js:
- '6'
- '5'
- '4'
script: set -e; mkdir -p build; npm run build; if [[ $(node --version) == v6* ]]; then npm run coveralls; chmod u+x scripts/deploy-edge-to-cdn.sh; ./scripts/deploy-edge-to-cdn.sh; fi
env:
global:
- GH_REF: github.com/ractivejs/ractive.git
- CDN_REF: github.com/ractivejs/cdn.ractivejs.org.git
- secure: "nlnXJW/imf/w6qdTd7UCpRqLhLioxU6fllJPbP1DZr/9rp44HNVSPNxxGrA808VDXQ1ccpXBxIV9mgIi4Q/G0FUILA5NsSGYdQE00A+Lw3qnvv5FQ7Qoux44BKYi4L1W+4Zi3NEr7TAL+/dHCAk5k/ZKLTCCxiziAEw3M+akE4A="
branches:
only:
- master
- dev
|
Remove CI for Node < 4
|
Remove CI for Node < 4
|
YAML
|
mit
|
ractivejs/ractive,ractivejs/ractive,marcalexiei/ractive,marcalexiei/ractive,marcalexiei/ractive,ractivejs/ractive
|
4eab63bf79a0c3a9eba01903b194548650395676
|
.travis.yml
|
.travis.yml
|
sudo: false
language: go
go:
- 1.10.x
- 1.11.x
- 1.12.x
- tip
matrix:
allow_failures:
- go: tip
before_install:
- go get -u github.com/golang/dep/cmd/dep github.com/golangci/golangci-lint/cmd/golangci-lint
install:
- dep ensure
before_script:
- golangci-lint run
script:
- go test -covermode=atomic -coverprofile=coverage.txt
after_success:
- bash <(curl -s https://codecov.io/bash)
|
sudo: false
language: go
go:
- 1.11.x
- 1.12.x
- tip
matrix:
allow_failures:
- go: tip
before_install:
- go get -u github.com/golang/dep/cmd/dep github.com/golangci/golangci-lint/cmd/golangci-lint
install:
- dep ensure
before_script:
- golangci-lint run
script:
- go test -covermode=atomic -coverprofile=coverage.txt
after_success:
- bash <(curl -s https://codecov.io/bash)
|
Remove go1.10 environment on Travis CI
|
Remove go1.10 environment on Travis CI
|
YAML
|
mit
|
osamingo/jsonrpc
|
149ed0f75f4ae138d2a7d2d8862cdac77a51f386
|
.travis.yml
|
.travis.yml
|
language: objective-c
osx_image: xcode7.2
install:
- bundle install
script: bundle exec rake spec
|
language: objective-c
osx_image: xcode7.3
install:
- bundle install
script: bundle exec rake spec
|
Use Xcode 7.3 on TravisCI
|
Use Xcode 7.3 on TravisCI
|
YAML
|
mit
|
mattt/FormatterKit,mattt/FormatterKit,otaran/FormatterKit,twobitlabs/FormatterKit,twobitlabs/FormatterKit,Elethom/FormatterKit,twobitlabs/FormatterKit,mattt/FormatterKit,otaran/FormatterKit,Elethom/FormatterKit,otaran/FormatterKit
|
beb0e0eb774dd15e79574ace338b885101d86d4b
|
.travis.yml
|
.travis.yml
|
dist: trusty
sudo: false
language: python
python:
- 2.7
- &latest_py3 3.6
jobs:
fast_finish: true
include:
- stage: deploy
if: tag IS present
python: *latest_py3
install: skip
script: skip
deploy:
provider: pypi
on:
tags: true
all_branches: true
user: jaraco
password:
secure: ... # encrypt password with `travis encrypt`
distributions: dists
skip_cleanup: true
cache: pip
install:
- pip install tox tox-venv
before_script:
# Disable IPv6. Ref travis-ci/travis-ci#8361
- if [ "${TRAVIS_OS_NAME}" == "linux" ]; then
sudo sh -c 'echo 0 > /proc/sys/net/ipv6/conf/all/disable_ipv6';
fi
script: tox
|
dist: xenial
sudo: false
language: python
python:
- 2.7
- 3.6
- &latest_py3 3.7
jobs:
fast_finish: true
include:
- stage: deploy
if: tag IS present
python: *latest_py3
install: skip
script: skip
deploy:
provider: pypi
on:
tags: true
all_branches: true
user: jaraco
password:
secure: ... # encrypt password with `travis encrypt`
distributions: dists
skip_cleanup: true
cache: pip
install:
- pip install tox tox-venv
before_script:
# Disable IPv6. Ref travis-ci/travis-ci#8361
- if [ "${TRAVIS_OS_NAME}" == "linux" ]; then
sudo sh -c 'echo 0 > /proc/sys/net/ipv6/conf/all/disable_ipv6';
fi
script: tox
|
Use xenial to include support for Python 3.7.
|
Use xenial to include support for Python 3.7.
|
YAML
|
mit
|
jaraco/rwt,jaraco/jaraco.stream,jazzband/inflect,jaraco/jaraco.logging,jaraco/calendra,python/importlib_metadata,jaraco/jaraco.context,jaraco/zipp,yougov/pmxbot,jaraco/jaraco.path,jaraco/jaraco.text,jaraco/jaraco.collections,jaraco/hgtools,jaraco/backports.functools_lru_cache,yougov/pmxbot,yougov/librarypaste,jaraco/portend,jaraco/tempora,hugovk/inflect.py,jaraco/jaraco.itertools,pytest-dev/pytest-runner,pwdyson/inflect.py,jaraco/jaraco.classes,yougov/pmxbot,jaraco/keyring,jaraco/irc,cherrypy/cheroot,yougov/librarypaste,jaraco/jaraco.functools
|
daee1e359daceee1519474461c3575c74869fbef
|
.travis.yml
|
.travis.yml
|
language: c, python3
addons:
apt:
packages:
- re2c
install:
- git clone https://github.com/martine/ninja.git
- cd ninja
- ./configure.py --bootstrap
- export PATH=$(pwd):$PATH
- cd ..
cache:
directories:
- ninja
script:
- ninja --version
- make Posix
- make run-posix
|
language: c, python3
addons:
apt:
packages:
- re2c
install:
- CURDIR = $(pwd)
- if [ ! -d "~/foss/ninja" ]: then
- mkdir ~/foss/ninja
- git clone https://github.com/martine/ninja.git ~/foss/ninja
- cd ~/foss/ninja
- ./configure.py --bootstrap
fi
- export PATH=$(pwd):$PATH
- cd $CURDIR
cache:
directories:
- ~/foss
script:
- ninja --version
- make Posix
- make run-posix
|
Add conditional to an install script.
|
Add conditional to an install script.
Not sure this works, but we need to conditionally do install ninja.
In the future we may need to validate the version if it did get cached.
|
YAML
|
bsd-2-clause
|
winksaville/baremetal-hi,winksaville/baremetal-hi
|
23e58816ac64f8d20766dfe1fde8c4c4c421b353
|
.travis.yml
|
.travis.yml
|
language: go
go:
- 1.4
before_install:
- go get github.com/mattn/gom
services:
- rabbitmq
- redis-server
script: make
# Use Travis' container-based infrastructure:
# http://docs.travis-ci.com/user/workers/container-based-infrastructure/
sudo: false
notifications:
email: false
|
language: go
go:
- 1.5.3
before_install:
- go get github.com/mattn/gom
services:
- rabbitmq
- redis-server
script: make
# Use Travis' container-based infrastructure:
# http://docs.travis-ci.com/user/workers/container-based-infrastructure/
sudo: false
notifications:
email: false
|
Make Travis tests run with Go 1.5.3
|
Make Travis tests run with Go 1.5.3
I omitted to updated this when upgrading the Go runtime to version 1.5.3
in 28b1717be.
|
YAML
|
mit
|
alphagov/govuk_crawler_worker
|
d19d57a73a61fe5913dcbd843f5a9aff4e33c5ce
|
.travis.yml
|
.travis.yml
|
language: python
python:
# We don't actually use the Travis Python, but this keeps it organized.
- "2.7"
- "3.4"
install:
- sudo apt-get update
# We do this conditionally because it saves us some downloading if the
# version is the same.
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh;
else
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
fi
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
# Useful for debugging any issues with conda
- conda info -a
# Replace dep1 dep2 ... with your dependencies
- conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION --file requirements.txt
- source activate test-environment
#- python setup.py install
script:
# Your test script goes here
|
language: python
python:
# We don't actually use the Travis Python, but this keeps it organized.
- "2.7"
- "3.4"
# Setup the environment before installing
before_install:
- sudo apt-get update
# We do this conditionally because it saves us some downloading if the
# version is the same.
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh;
else
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
fi
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
# Useful for debugging any issues with conda
- conda info -a
# Replace dep1 dep2 ... with your dependencies
- conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION --file requirements.txt
- source activate test-environment
install:
#- python setup.py install
script:
# Your test script goes here
|
Move miniconda and deps into before_install step
|
Move miniconda and deps into before_install step
|
YAML
|
mit
|
scottclowe/python-ci,scottclowe/python-continuous-integration,scottclowe/python-ci,scottclowe/python-continuous-integration
|
57761a0d4eaef89372fdfb8d42eb5d9763946ad3
|
.travis.yml
|
.travis.yml
|
env:
global:
- CC_TEST_REPORTER_ID=1561686e6399317b53a92aaad0550f8b91fe5af312e1f2852ab803ff6fcb6fa9
language: python
matrix:
include:
- python: "3.6"
dist: xenial
env:
TEST_REPORT_TARGET: "yes"
- python: "3.7"
dist: xenial
install:
- pip install pipenv
- pipenv install --dev --skip-lock
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64
> ./cc-test-reporter
- chmod +x ./cc-test-reporter
script:
- make test
- '[ $TEST_REPORT_TARGET ] && ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT || echo "Skip send test report"'
notifications:
slack:
secure: DnVG8IgIoS3C2Z/xB83tKfRE1tgRXHO7A6QDzkB+axsKxYx88Wl2dz5YJiMsHMeTueRv7mldi8haWCTVgPrz2Mz+vXDqr5K0d/YUQ1bXgtVwG/K/eQ679FF8yjykugPknGerDiW1j+ITT6wwDb6SiZRKailWTZJLKQK+um52UWw=
|
env:
global:
- CC_TEST_REPORTER_ID=1561686e6399317b53a92aaad0550f8b91fe5af312e1f2852ab803ff6fcb6fa9
language: python
matrix:
include:
- python: "3.6"
dist: xenial
- python: "3.7"
dist: xenial
env:
TEST_REPORT_TARGET: "yes"
install:
- pip install pipenv
- pipenv install --dev --skip-lock
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64
> ./cc-test-reporter
- chmod +x ./cc-test-reporter
script:
- make test
- '[ $TEST_REPORT_TARGET ] && ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT || echo "Skip send test report"'
notifications:
slack:
secure: DnVG8IgIoS3C2Z/xB83tKfRE1tgRXHO7A6QDzkB+axsKxYx88Wl2dz5YJiMsHMeTueRv7mldi8haWCTVgPrz2Mz+vXDqr5K0d/YUQ1bXgtVwG/K/eQ679FF8yjykugPknGerDiW1j+ITT6wwDb6SiZRKailWTZJLKQK+um52UWw=
|
Change a target version of test coverage
|
:hammer: Change a target version of test coverage
|
YAML
|
mit
|
tadashi-aikawa/gemini
|
3391482066599d7635e8681688a609cadb471f9d
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "3.4"
- "3.2"
- "2.7"
sudo: false
env:
- REQ="Django>=1.7,<1.8 FeinCMS>=1.11,<1.12"
- REQ="Django>=1.8,<1.9 FeinCMS>=1.11,<1.12"
- REQ="Django>=1.8,<1.9 FeinCMS==2.0a10"
install:
- pip install -q $REQ django-mptt==0.7.4 factory_boy==2.5.2 pytz==2015.4 flake8
- python setup.py -q install
script: "cd tests && ./manage.py test testapp && flake8 ."
|
language: python
python:
- "3.4"
- "3.2"
- "2.7"
sudo: false
env:
- REQ="Django>=1.7,<1.8 FeinCMS>=1.11,<1.12"
- REQ="Django>=1.8,<1.9 FeinCMS>=1.11,<1.12"
- REQ="Django>=1.8,<1.9 FeinCMS==2.0a10"
- REQ="Django>=1.10,<1.11 https://github.com/feincms/feincms/archive/next.zip"
install:
- pip install -q $REQ django-mptt==0.8.6 factory_boy pytz flake8
- python setup.py -q install
script: "cd tests && ./manage.py test testapp && cd .. && flake8 ."
|
Add a few Django versions to the CI matrix
|
Add a few Django versions to the CI matrix
|
YAML
|
bsd-3-clause
|
matthiask/feincms-elephantblog,feincms/feincms-elephantblog,feincms/feincms-elephantblog,matthiask/feincms-elephantblog,matthiask/feincms-elephantblog
|
649563a001f172881207248320f0182b4c772725
|
.travis.yml
|
.travis.yml
|
language: python
python:
- 2.6
- 2.7
before_install:
- sudo apt-get install texlive-base
install:
- "pip install -r requirements.txt --use-mirrors"
script:
- make html && make html
- make singlehtml && make singlehtml
- make text
- make singletext
- make latexpdf
|
language: python
python:
- 2.6
- 2.7
before_install:
- sudo apt-get remove chromium firefox mongodb-10gen
- sudo apt-get install texlive-base
install:
- "pip install -r requirements.txt --use-mirrors"
script:
- make html && make html
- make singlehtml && make singlehtml
- make text
- make singletext
- make latexpdf
|
Uninstall a couple large packages
|
Uninstall a couple large packages
|
YAML
|
bsd-2-clause
|
jterrace/sphinxtr,jterrace/sphinxtr
|
0991adf8b520595585ef9591d1181d61f159c42c
|
.travis.yml
|
.travis.yml
|
language: go
# go1.11beta1 breaks the tests for lib/net/reverseconnection
go:
- "1.10"
before_install:
- go get github.com/mattn/goveralls
- REPO_NAME=$(basename $PWD)
- GITHUB_PATH=$(dirname $(dirname $PWD))
- SYMANTEC_PROJECT_DIR=${GITHUB_PATH}/Symantec/${REPO_NAME}
- mkdir -p ${SYMANTEC_PROJECT_DIR}
- rsync -az ${TRAVIS_BUILD_DIR}/ ${SYMANTEC_PROJECT_DIR}/
- export TRAVIS_BUILD_DIR=${SYMANTEC_PROJECT_DIR}
- cd ${SYMANTEC_PROJECT_DIR}
- go get ./...
script:
- go test -covermode=count -coverprofile=coverage.out ./...
- $HOME/gopath/bin/goveralls -coverprofile=coverage.out -service=travis-ci
- make all test
|
language: go
# go1.11beta1 breaks the tests for lib/net/reverseconnection
go:
- "1.10"
before_install:
- go get github.com/mattn/goveralls
- REPO_NAME=$(basename $PWD)
- GITHUB_PATH=$(dirname $(dirname $PWD))
- SYMANTEC_PROJECT_DIR=${GITHUB_PATH}/Symantec/${REPO_NAME}
- mkdir -p ${SYMANTEC_PROJECT_DIR}
- rsync -az ${TRAVIS_BUILD_DIR}/ ${SYMANTEC_PROJECT_DIR}/
- export TRAVIS_BUILD_DIR=${SYMANTEC_PROJECT_DIR}
- cd ${SYMANTEC_PROJECT_DIR}
- go get ./...
script:
- go test -covermode=count -coverprofile=coverage.out ./...
- $HOME/gopath/bin/goveralls -coverprofile=coverage.out -service=travis-ci
- make all build-darwin test
|
Add build-darwin target for TravisCI.
|
Add build-darwin target for TravisCI.
|
YAML
|
apache-2.0
|
Symantec/Dominator,Symantec/Dominator,Symantec/Dominator,rgooch/Dominator,rgooch/Dominator,rgooch/Dominator
|
33b10ff8e30c43aa965d1aa6b213f01d46486a3d
|
.travis.yml
|
.travis.yml
|
language: node_js
matrix:
include:
- node_js: '0.10'
- node_js: '0.12'
- node_js: iojs
- node_js: 4
- node_js: 5
- node_js: 6
- node_js: node
env: COVERALLS=1
|
language: node_js
matrix:
include:
- node_js: '0.12'
- node_js: iojs
- node_js: 4
- node_js: 5
- node_js: 6
- node_js: node
env: COVERALLS=1
|
Remove Node 0.10 from Travis
|
Remove Node 0.10 from Travis
|
YAML
|
mit
|
timdp/rollup-plugin-strip-logger
|
6e3ccebe3e7f62e6fda0a51dd76f161c938b3770
|
.travis.yml
|
.travis.yml
|
language: generic
matrix:
include:
- script:
- make test
- pod lib lint
env: JOB=Xcode
os: osx
osx_image: xcode8.3
before_install:
- pod repo update
- script:
- swift test
- swiftlint
env: JOB=SPM
os: osx
osx_image: xcode8.3
- script: make docker_test
env: JOB=Linux-Swift3.1
sudo: required
services: docker
- script: make docker_test_4
env: JOB=Linux-Swift4
sudo: required
services: docker
notifications:
email: false
slack: realmio:vPdpsG9NLDo2DNlbqtcMAQuE
|
language: generic
matrix:
include:
- script:
- make test
- pod lib lint
env: JOB=Xcode
os: osx
osx_image: xcode8.3
before_install:
- pod repo update
- script:
- swift test
- swiftlint
env: JOB=SPM
os: osx
osx_image: xcode8.3
- script: make docker_test
env: JOB=Linux-Swift3.1
sudo: required
services: docker
- script: make docker_test_4
env: JOB=Linux-Swift4
sudo: required
services: docker
- script: swift test
env: JOB=Linux-Swift4-without-Docker
sudo: required
dist: trusty
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y libblocksruntime0
install:
- export SWIFT_VERSION=swift-4.0-DEVELOPMENT-SNAPSHOT-2017-05-11-a
- >
curl https://swift.org/builds/swift-4.0-branch/ubuntu1404/$SWIFT_VERSION/$SWIFT_VERSION-ubuntu14.04.tar.gz
| tar xz --directory $HOME --strip-components=1
- export PATH=$HOME/usr/bin:$PATH
- export LINUX_SOURCEKIT_LIB_PATH=$HOME/usr/lib
notifications:
email: false
slack: realmio:vPdpsG9NLDo2DNlbqtcMAQuE
|
Add Swift 4 on Linux job without Docker
|
Add Swift 4 on Linux job without Docker
|
YAML
|
mit
|
jpsim/SourceKitten,jpsim/SourceKitten,jpsim/SourceKitten,jpsim/SourceKitten,jpsim/SourceKitten
|
62822a0d01202cda397a9bf4be52392d252a1c53
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "10"
- "8"
- "6"
notifications:
email:
recipients:
- [email protected]
on_success: change
on_failure: change
before_script:
- yarn install --pure-install
script:
- yarn run test
|
language: node_js
node_js:
- "10"
- "8"
- "6"
before_script:
- yarn install --pure-install
script:
- yarn run test
|
Remove unused email notification on Travis CI build
|
Remove unused email notification on Travis CI build
|
YAML
|
mit
|
rezzza/gulp-uglifycss
|
cb135d6bc873d6d9e31a598b9c897b0be35b3326
|
.travis.yml
|
.travis.yml
|
language: "node_js"
node_js:
- 0.4
- 0.6
|
language: "node_js"
node_js:
- 0.4
- 0.6
- 0.8
|
Test on Node 0.8 in Travis CI.
|
Test on Node 0.8 in Travis CI.
|
YAML
|
mit
|
jaredhanson/passport-37signals
|
a1f195791ce2a84d7fec4286695252f0a9fb42be
|
.travis.yml
|
.travis.yml
|
language: python
sudo: false
cache:
- pip
python:
- "2.7"
addons:
postgresql: "9.4"
apt:
packages:
- "postgresql-9.4-postgis-2.3"
env:
- DJANGO_VERSION=1.10
db_name=calaccess_website
db_user=postgres
db_password=''
rds_host=localhost
install:
- pip install -r requirements.txt
- pip uninstall -y Django
- pip install -q Django==$DJANGO_VERSION
before_script:
- psql -c 'create database calaccess_website;' -U postgres
- fab setconfig:aws_access_key_id,''
- fab setconfig:aws_secret_access_key,''
- fab setconfig:aws_region_name,''
- fab setconfig:key_name,''
- fab setconfig:db_name,''
- fab setconfig:db_user,''
- fab setconfig:db_password,''
- fab setconfig:s3_archived_data_bucket,''
- fab setconfig:s3_baked_content_bucket,''
- fab setconfig:email_user,''
- fab setconfig:email_password,''
- fab setconfig:rds_host,''
script:
- make test
after_success:
- coveralls
|
language: python
sudo: false
cache:
- pip
python:
- "2.7"
addons:
postgresql: "9.4"
apt:
packages:
- "postgresql-9.4-postgis-2.3"
env:
- DJANGO_VERSION=1.11
db_name=calaccess_website
db_user=postgres
db_password=''
rds_host=localhost
install:
- pip install -r requirements.txt
- pip uninstall -y Django
- pip install -q Django==$DJANGO_VERSION
before_script:
- psql -c 'create database calaccess_website;' -U postgres
- fab setconfig:aws_access_key_id,''
- fab setconfig:aws_secret_access_key,''
- fab setconfig:aws_region_name,''
- fab setconfig:key_name,''
- fab setconfig:db_name,''
- fab setconfig:db_user,''
- fab setconfig:db_password,''
- fab setconfig:s3_archived_data_bucket,''
- fab setconfig:s3_baked_content_bucket,''
- fab setconfig:email_user,''
- fab setconfig:email_password,''
- fab setconfig:rds_host,''
script:
- make test
after_success:
- coveralls
|
Upgrade Django version for Travis
|
Upgrade Django version for Travis
|
YAML
|
mit
|
california-civic-data-coalition/django-calaccess-downloads-website,california-civic-data-coalition/django-calaccess-downloads-website,california-civic-data-coalition/django-calaccess-downloads-website
|
6605e06bc65a471f2ba0cedb31a2ff72c6d26db2
|
.travis.yml
|
.travis.yml
|
language: go
sudo: false
matrix:
include:
- go: 1.4
- go: 1.5
- go: 1.6
- go: tip
install:
- go get golang.org/x/tools/cmd/vet
script:
- go get -t -v ./...
- diff -u <(echo -n) <(gofmt -d .)
- go tool vet .
- go test -v -race ./...
|
language: go
sudo: false
matrix:
include:
- go: 1.4
- go: 1.5
- go: 1.6
- go: tip
install:
- go get golang.org/x/tools/cmd/vet
script:
- go get -t -v $(go list ./... | grep -v '/vendor/')
- diff -u <(echo -n) <(gofmt -d .)
- go vet $(go list ./... | grep -v '/vendor/')
- go test -v -race $(go list ./... | grep -v '/vendor/')
|
Exclude vendored deps from Go tools.
|
[ci] Exclude vendored deps from Go tools.
|
YAML
|
bsd-3-clause
|
cloudflare/cloudflare-go,cloudflare/cloudflare-go
|
1eae6ef90869a2661d599f5e1e0146a1cb3105a6
|
.travis.yml
|
.travis.yml
|
language: java
jdk:
- openjdk7
- oraclejdk7
- oraclejdk8
sudo: false
branches:
only:
- master
- develop
|
language: java
jdk:
- openjdk7
- oraclejdk8
sudo: false
branches:
only:
- master
- develop
|
Stop CI with OracleJDK7 on TravisCI
|
Stop CI with OracleJDK7 on TravisCI
|
YAML
|
apache-2.0
|
fluent/fluent-logger-java
|
2d2ce20c11cc49d9d7b3d32889f087609b322ac7
|
.travis.yml
|
.travis.yml
|
language: node_js
sudo: false
node_js:
- "7"
- "6"
- "5"
- "4"
- "0.12"
- "0.10"
- "iojs"
before_install:
- npm install -g npm@^3
|
language: node_js
sudo: false
node_js:
- "node"
- "6"
- "4"
- "0.12"
- "0.10"
before_install:
- npm install -g npm@^3
|
Support only stable and latest node versions
|
Support only stable and latest node versions
|
YAML
|
apache-2.0
|
sagiegurari/grunt-markdownlint
|
328015d4ef5749b7e744c78d47b4bbf6c97bc3e0
|
.travis.yml
|
.travis.yml
|
language: java
jdk:
- openjdk6
- openjdk7
- openjdk8
- oraclejdk7
- oraclejdk8
script: mvn verify -Dmaven.javadoc.skip=true
|
language: java
jdk:
- openjdk6
- openjdk7
- oraclejdk7
- oraclejdk8
script: mvn verify -Dmaven.javadoc.skip=true
|
Remove Open JDK 8 (not supported on Travis)
|
Remove Open JDK 8 (not supported on Travis)
|
YAML
|
apache-2.0
|
uglycustard/buildergenerator
|
937d47931bced185bbcf5ae0c9123d27ee4fd882
|
.travis.yml
|
.travis.yml
|
language: cpp
dist: trusty
sudo: false
matrix:
include:
- os: linux
compiler: gcc
# - os: linux
#compiler: clang
script:
- (cd bigtable/api && cmake . && make)
addons:
apt:
packages:
- vim
- curl
- git-core
- make
- gcc
- g++
- build-essential
- autoconf
- libtool
- pkg-config
- cmake
- clang++
install:
- cd $HOME && git clone https://github.com/grpc/grpc.git
- (cd $HOME/grpc && git submodule update --init && make && make install)
- (cd $HOME/grpc/third_party/protobuf && make install)
notifications:
email: false
|
language: cpp
dist: trusty
sudo: false
matrix:
include:
- os: linux
compiler: gcc
# - os: linux
#compiler: clang
script:
- (cd bigtable/api && cmake . && make)
addons:
apt:
packages:
- vim
- curl
- git-core
- make
- gcc
- g++
- build-essential
- autoconf
- libtool
- pkg-config
- cmake
install:
- cd $HOME && git clone https://github.com/grpc/grpc.git
- (cd $HOME/grpc && git submodule update --init && make && make install)
- (cd $HOME/grpc/third_party/protobuf && make install)
notifications:
email: false
|
Remove clang package because it breaks build.
|
Remove clang package because it breaks build.
|
YAML
|
apache-2.0
|
GoogleCloudPlatform/cpp-samples,GoogleCloudPlatform/cpp-samples,GoogleCloudPlatform/cpp-samples,GoogleCloudPlatform/cpp-samples
|
20c38b2d44e4d0d3ea91e72ce333be37baf6d957
|
.travis.yml
|
.travis.yml
|
language: elixir
elixir:
- 1.4
otp_release:
- 19.3
- 18.3
env:
- CACHE_ENABLED=true
- CACHE_ENABLED=true TEST_OPTS='--exclude redis_pubsub --include phoenix_pubsub --no-start' PUBSUB_BROKER=phoenix_pubsub
- CACHE_ENABLED=false TEST_OPTS='--only integration'
services:
- redis-server
script:
- mix test --force $TEST_OPTS
notifications:
email:
on_success: never
on_failure: never
|
dist: trusty
language: elixir
elixir:
- 1.4
otp_release:
- 19.3
- 18.3
env:
- CACHE_ENABLED=true TEST_OPTS='--exclude phoenix_pubsub --exclude ecto_persistence'
- CACHE_ENABLED=false TEST_OPTS='--only integration'
- CACHE_ENABLED=true PUBSUB_BROKER=phoenix_pubsub TEST_OPTS='--no-start --exclude redis_pubsub --exclude ecto_persistence --exclude phoenix_pubsub:with_ecto --include phoenix_pubsub:with_redis --include phoenix_pubsub:true'
- CACHE_ENABLED=false PUBSUB_BROKER=phoenix_pubsub TEST_OPTS='--no-start --only integration'
- CACHE_ENABLED=true PUBSUB_BROKER=phoenix_pubsub PERSISTENCE=ecto TEST_OPTS='--no-start --exclude redis_pubsub --exclude redis_persistence --exclude phoenix_pubsub:with_redis --include phoenix_pubsub:with_ecto --include phoenix_pubsub:true --include ecto_persistence'
- CACHE_ENABLED=false PUBSUB_BROKER=phoenix_pubsub PERSISTENCE=ecto TEST_OPTS='--no-start --only integration'
services:
- redis-server
addons:
postgresql: "9.6"
script:
- mix test --force $TEST_OPTS
before_script:
- MIX_ENV=test mix ecto.create
- MIX_ENV=test mix ecto.migrate
notifications:
email:
on_success: never
on_failure: never
|
Configure Travis to run with postgres
|
Configure Travis to run with postgres
|
YAML
|
mit
|
tompave/fun_with_flags
|
168c8cbc63e011931079c7c4d2856c05cd20cf18
|
.travis.yml
|
.travis.yml
|
language: php
php:
- '5.6'
- '7.0'
- '7.1'
install: composer install
script: vendor/bin/phpunit --verbose tests
|
language: php
php:
- '5.6'
- '7.0'
- '7.1'
- '7.2'
install: composer install
script: vendor/bin/phpunit --verbose tests
|
Add php 7.2 to Travis
|
Add php 7.2 to Travis
|
YAML
|
mit
|
jerry1970/parable,devvoh/Fluid,jerry1970/parable,devvoh/Fluid,devvoh/parable,devvoh/parable
|
37888e1e505d9490d83323000f1d6b86a2a86812
|
.travis.yml
|
.travis.yml
|
install:
- apt-get install libxml2-utils
script:
- xmllint --noout *.xsd
|
install:
- sudo apt-get install libxml2-utils
script:
- xmllint --noout *.xsd
|
Fix dependency installation for Travis
|
Fix dependency installation for Travis
Build was failing with
$ apt-get install libxml2-utils
E: Could not open lock file /var/lib/dpkg/lock - open (13: Permission denied)
E: Unable to lock the administration directory (/var/lib/dpkg/), are you root?
APT dependencies must be installed as sudoer.
|
YAML
|
mit
|
JeanFred/Galaxy-XSD,mr-c/Galaxy-XSD
|
b98b2aba0e90e58442e2fa5c111fb10798efe5ac
|
.travis.yml
|
.travis.yml
|
language: java
matrix:
include:
- os: linux
dist: precise
jdk: oraclejdk7
- os: linux
jdk: oraclejdk8
- os: linux
jdk: openjdk8
- os: linux
jdk: oraclejdk9
- os: linux
jdk: oraclejdk10
- os: linux
jdk: openjdk10
env:
- TERM=dumb
script:
- gradle assemble
branches:
- master
- 1.x
|
language: java
matrix:
include:
- os: linux
dist: precise
jdk: oraclejdk7
- os: linux
jdk: oraclejdk8
- os: linux
jdk: openjdk8
- os: linux
jdk: oraclejdk9
- os: linux
jdk: oraclejdk10
- os: linux
jdk: openjdk10
env:
- TERM=dumb
script:
- ./gradlew assemble
branches:
- master
- 1.x
|
Use gradle wrapper on Travis
|
Use gradle wrapper on Travis
|
YAML
|
bsd-3-clause
|
bwaldvogel/log4j-systemd-journal-appender,bwaldvogel/log4j-systemd-journal-appender
|
9850302c264fa24cb964fe636cb9c84cbefcc25a
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.4
- 5.5
- 5.6
- 7
- 7.1
- hhvm
before_script:
- composer update
script: ./vendor/bin/phpunit -c tests/phpunit.xml
|
language: php
dist: trusty
php:
- 5.4
- 5.5
- 5.6
- 7
- 7.1
- hhvm
before_script:
- composer update
script: ./vendor/bin/phpunit -c tests/phpunit.xml
|
Fix for HHVM Travis build
|
Fix for HHVM Travis build
|
YAML
|
bsd-2-clause
|
zbateson/MailMimeParser
|
7e5dc1446279954e93212ca9c40dbebb5d92507b
|
.travis.yml
|
.travis.yml
|
language: php
sudo: false
git:
submodules: false
cache:
directories:
- vendor
php:
- 7.2
- 7.4
install:
- composer --no-interaction install
script:
- vendor/bin/phpunit
- vendor/bin/php-cs-fixer fix --dry-run -v --diff
|
language: php
sudo: false
git:
submodules: false
cache:
directories:
- vendor
php:
- 7.2.24
- 7.4
install:
- composer --no-interaction install
script:
- vendor/bin/phpunit
- vendor/bin/php-cs-fixer fix --dry-run -v --diff
|
Test CI against the same 7.2 patch we specify as minimum
|
Test CI against the same 7.2 patch we specify as minimum
|
YAML
|
mit
|
dxw/iguana
|
cc8e361092f665d7fdf5f3d22971c15b614e9658
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "12.14.0"
- "8.16.2"
- "6.14.4"
- "4.9.1"
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.9.4
- export PATH="$HOME/.yarn/bin:$PATH"
|
language: node_js
node_js:
- "12.14.0"
- "8.16.2"
- "6.14.4"
- "4.9.1"
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.12.3
- export PATH="$HOME/.yarn/bin:$PATH"
|
Change yarn version back to 1.12.3
|
Change yarn version back to 1.12.3
|
YAML
|
mit
|
MindscapeHQ/raygun4node,MindscapeHQ/raygun4node
|
eceb9de6d63c389106eec24421c705669fd935ab
|
.travis.yml
|
.travis.yml
|
language: python
# need mongo for the popit-api we launch in the background
services:
- mongodb
# 2.6.1 is used on our servers
python:
- "2.6"
- "2.7"
env:
- DJANGO_VERSION=">=1.3,<1.4"
- DJANGO_VERSION=">=1.4,<1.5"
- DJANGO_VERSION=">=1.5,<1.6"
# command to install dependencies
install:
- pip install "Django$DJANGO_VERSION" --use-mirrors
- pip install -r requirements.txt --use-mirrors
# command to run tests, and check build still sane
# Would like to run 'python setup.py check' too, but it does not work on 2.6
script:
- ./start_local_popit_api.bash
- python setup.py test
# report results in IRC
notifications:
irc: "irc.mysociety.org#popit"
use_notice: true
skip_join: true
|
language: python
# need mongo for the popit-api we launch in the background
services:
- mongodb
# 2.6.1 is used on our servers
python:
- "2.6"
- "2.7"
# Should only really uncomment this just before a release - no point making
# Travis do more work than is needed.
#
# env:
# - DJANGO_VERSION=">=1.3,<1.4"
# - DJANGO_VERSION=">=1.4,<1.5"
# - DJANGO_VERSION=">=1.5,<1.6"
# command to install dependencies
install:
- pip install "Django$DJANGO_VERSION" --use-mirrors
- pip install -r requirements.txt --use-mirrors
# command to run tests, and check build still sane
# Would like to run 'python setup.py check' too, but it does not work on 2.6
script:
- ./start_local_popit_api.bash
- python setup.py test
# report results in IRC
notifications:
irc: "irc.mysociety.org#popit"
use_notice: true
skip_join: true
|
Comment out the various Django versions
|
Comment out the various Django versions
|
YAML
|
agpl-3.0
|
mysociety/popit-django,mysociety/popit-django,ciudadanointeligente/popit-django,mysociety/popit-django,ciudadanointeligente/popit-django,ciudadanointeligente/popit-django
|
2401303396adacb0f1219eae1843fc4112b4389b
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 7.2
- nightly
matrix:
allow_failures:
- php: nightly
env:
- COMPOSER_OPTS=""
- COMPOSER_OPTS="--prefer-lowest"
install:
- composer update $COMPOSER_OPTS
script:
- rm -fv ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini
- vendor/bin/phpunit
- vendor/bin/composer-require-checker
jobs:
include:
- stage: coverage
script:
- vendor/bin/phpunit --coverage-clover=coverage.xml
- bash <(curl -s https://codecov.io/bash)
git:
depth: 5
group: travis_latest
|
language: php
php:
- 7.2
- 7.3
- nightly
matrix:
allow_failures:
- php: nightly
env:
- COMPOSER_OPTS=""
- COMPOSER_OPTS="--prefer-lowest"
install:
- composer update $COMPOSER_OPTS
script:
- rm -fv ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini
- vendor/bin/phpunit
- vendor/bin/composer-require-checker
jobs:
include:
- stage: coverage
script:
- vendor/bin/phpunit --coverage-clover=coverage.xml
- bash <(curl -s https://codecov.io/bash)
git:
depth: 5
group: travis_latest
|
Add support for PHP 7.3
|
Add support for PHP 7.3
|
YAML
|
apache-2.0
|
metroplex-systems/edifact
|
2423bf1d68bd030e93bb6fa18601bf4be7414862
|
.travis.yml
|
.travis.yml
|
language: python
dist: xenial
addons:
apt:
update: true
packages: libapr1-dev libaprutil1-dev libdb5.3-dev liblz4-dev libsasl2-dev libperl-dev libserf-dev libsqlite3-dev libtool python-all-dev libneon27-gnutls-dev libutf8proc-dev
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
env:
- SVN_VERSION=1.10.0
SVN_OPTIONS="--with-lz4=internal"
- SVN_VERSION=1.9.7
- SVN_VERSION=1.8.19
- SVN_VERSION=1.7.19
- SVN_VERSION=1.6.21
- SVN_VERSION=1.5.9
script:
- make check
- make style
install:
- travis_retry pip install -U pip coverage codecov flake8
before_install:
- wget https://archive.apache.org/dist/subversion/subversion-${SVN_VERSION}.tar.gz
- tar xvfz subversion-${SVN_VERSION}.tar.gz
- cd subversion-${SVN_VERSION}
- ./configure ${SVN_OPTIONS}
- make
- sudo make install
- sudo ldconfig -v
- cd ..
after_success:
- python -m coverage combine
- codecov
|
language: python
dist: xenial
addons:
apt:
update: true
packages: libapr1-dev libaprutil1-dev libdb5.3-dev liblz4-dev libsasl2-dev libperl-dev libserf-dev libsqlite3-dev libtool python-all-dev libneon27-gnutls-dev libutf8proc-dev
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
env:
- SVN_VERSION=1.13.0
- SVN_VERSION=1.12.2
- SVN_VERSION=1.11.1
- SVN_VERSION=1.10.6
SVN_OPTIONS="--with-lz4=internal"
- SVN_VERSION=1.9.7
- SVN_VERSION=1.8.19
- SVN_VERSION=1.7.19
- SVN_VERSION=1.6.21
- SVN_VERSION=1.5.9
script:
- make check
- make style
install:
- travis_retry pip install -U pip coverage codecov flake8
before_install:
- wget https://archive.apache.org/dist/subversion/subversion-${SVN_VERSION}.tar.gz
- tar xvfz subversion-${SVN_VERSION}.tar.gz
- cd subversion-${SVN_VERSION}
- ./configure ${SVN_OPTIONS}
- make
- sudo make install
- sudo ldconfig -v
- cd ..
after_success:
- python -m coverage combine
- codecov
|
Build svn 1.11, 1.12 and 1.13.
|
Build svn 1.11, 1.12 and 1.13.
|
YAML
|
lgpl-2.1
|
jelmer/subvertpy,jelmer/subvertpy
|
aec0b92dc61efbc446ea99f982385327ff2032c9
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
node_js:
- '6'
- '8'
- '10'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
|
sudo: false
language: node_js
node_js:
- '6'
- '8'
- '10'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc
script:
- nyc npm test
|
Add `nyc` to Travis CI.
|
Add `nyc` to Travis CI.
|
YAML
|
mit
|
bigeasy/expandable
|
2bd5c680140d34a3795fb922cc0aae02df4324b6
|
.travis.yml
|
.travis.yml
|
language: python
matrix:
include:
- python: 2.6
- python: 2.7
- python: 3.3
- python: 3.4
- python: 3.5
- python: 3.6
- python: 3.7
- python: pypy
- python: pypy3
cache:
directories:
- $HOME/.cache/pip
branches:
only:
- master
install:
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2 ; fi
- python setup.py develop
- pip install coverage
- pip install -r test_requirements.txt
script:
- |
if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then
coverage run --branch -m unittest2.__main__ discover -v -t . haas
python -m haas.__main__
else
coverage run --branch -m unittest discover -v -t . haas
python -m haas
fi
notifications:
email:
- [email protected]
after_success:
- pip install coveralls
- coveralls
|
language: python
matrix:
include:
- python: 2.6
- python: 2.7
- python: 3.3
- python: 3.4
- python: 3.5
- python: 3.6
- python: 3.7
- python: pypy
- python: pypy3
cache:
directories:
- $HOME/.cache/pip
branches:
only:
- master
install:
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2 ; fi
- python setup.py develop
- pip install coverage
- pip install -r test_requirements.txt
- pip --version
- python -V
script:
- |
if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then
coverage run --branch -m unittest2.__main__ discover -v -t . haas
python -m haas.__main__
else
coverage run --branch -m unittest discover -v -t . haas
python -m haas
fi
notifications:
email:
- [email protected]
after_success:
- pip install coveralls
- coveralls
|
Print out python and pip version
|
Print out python and pip version
|
YAML
|
bsd-3-clause
|
sjagoe/haas,scalative/haas,scalative/haas,sjagoe/haas,itziakos/haas,itziakos/haas
|
24e585b3930a1cb118cc7d9c914d9af66cb4896f
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 7.1
- 7.0
- 5.6
env:
global:
- COMPOSER_OPTIONS=""
matrix:
include:
- php: 5.6
env: COMPOSER_OPTIONS="--prefer-lowest"
- php: nightly
allow_failures:
- php: nightly
fast_finish: true
cache:
directories:
- vendor
before_install:
- phpenv config-rm xdebug.ini || true
- composer self-update
install:
- composer update --prefer-dist $COMPOSER_OPTIONS
script:
- composer validate --strict
- vendor/bin/phpspec run --format dot -vvv --no-interaction
- vendor/bin/behat --strict -vvv --no-interaction
|
language: php
php:
- 7.1
- 7.0
- 5.6
env:
global:
- COMPOSER_OPTIONS=""
matrix:
include:
- php: 5.6
env: COMPOSER_OPTIONS="--prefer-lowest"
- php: nightly
allow_failures:
- php: nightly
fast_finish: true
cache:
directories:
- vendor
before_install:
- phpenv config-rm xdebug.ini || true
install:
- composer update --prefer-dist $COMPOSER_OPTIONS
script:
- composer validate --strict
- vendor/bin/phpspec run --format dot -vvv --no-interaction
- vendor/bin/behat --strict -vvv --no-interaction
|
Remove "composer self-update" from Travis CI (it's done automatically)
|
Remove "composer self-update" from Travis CI (it's done automatically)
|
YAML
|
mit
|
FriendsOfBehat/SkipExtension
|
fe1d9df27274564d5ef595b609701abae4ed9fb6
|
.travis.yml
|
.travis.yml
|
language: scala
scala:
- 2.11.6
- 2.11.5
- 2.11.4
jdk:
- oraclejdk8
- oraclejdk7
- openjdk7
script: "sbt clean coverage test"
after_success: "sbt coveralls"
|
language: scala
scala:
- 2.11.7
- 2.11.6
jdk:
- oraclejdk8
- openjdk8
script: "sbt clean coverage test"
after_success: "sbt coveralls"
|
Build for latest scala (2.11.6 and 2.11.7) and JDK 8
|
Build for latest scala (2.11.6 and 2.11.7) and JDK 8
|
YAML
|
mit
|
izmailoff/mqtt-mongo
|
db6c0c8d97ed2ebf7235a0632ec8b4c462eea371
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
before_install:
- openssl aes-256-cbc -K $encrypted_84a2848b3b48_key -iv $encrypted_84a2848b3b48_iv -in tests/travisci-gcloud_requests.json.enc -out travisci-gcloud_requests.json -d
- export GOOGLE_APPLICATION_CREDENTIALS=travisci-gcloud_requests.json
- export DATASTORE_HOST=http://localhost:8080
- export DATASTORE_DATASET=gcloud
- mkdir ./datastore
- curl -o gcd.zip http://storage.googleapis.com/gcd/tools/$GCD_VERSION.zip
- unzip gcd.zip
- ./$GCD_VERSION/gcd.sh create -d gcloud ./datastore
- ./$GCD_VERSION/gcd.sh start --port=8080 ./datastore &
install: "pip install -r requirements.txt"
script: "env PYTHONPATH=. python tests/test_datastore.py"
addons:
code_climate:
repo_token: 1ae0e51788ad23c845e353566a8b245c4c2929035709105e2b8407d6ae2e2b51
|
language: python
python:
- "2.7"
before_install:
- openssl aes-256-cbc -K $encrypted_84a2848b3b48_key -iv $encrypted_84a2848b3b48_iv -in tests/travisci-gcloud_requests.json.enc -out travisci-gcloud_requests.json -d
- export JSON_CREDENTIALS_FILE=travisci-gcloud_requests.json
- export DATASTORE_HOST=http://localhost:8080
- export DATASTORE_DATASET=gcloud
- mkdir ./datastore
- curl -o gcd.zip http://storage.googleapis.com/gcd/tools/$GCD_VERSION.zip
- unzip gcd.zip
- ./$GCD_VERSION/gcd.sh create -d gcloud ./datastore
- ./$GCD_VERSION/gcd.sh start --port=8080 ./datastore &
install: "pip install -r requirements.txt"
script: "env PYTHONPATH=. python tests/test_datastore.py"
addons:
code_climate:
repo_token: 1ae0e51788ad23c845e353566a8b245c4c2929035709105e2b8407d6ae2e2b51
|
Update for new credentials file method
|
Update for new credentials file method
|
YAML
|
mit
|
LeadPages/gcloud_requests
|
9a7db0e7a3472a532df7f98579acfa8d6798e3b4
|
metadata/cz.vitskalicky.lepsirozvrh.yml
|
metadata/cz.vitskalicky.lepsirozvrh.yml
|
AntiFeatures:
- NonFreeNet
Categories:
- Internet
- Science & Education
License: GPL-3.0-or-later
AuthorName: Vít Skalický
AuthorEmail: [email protected]
SourceCode: https://github.com/vitSkalicky/lepsi-rozvrh
IssueTracker: https://github.com/vitSkalicky/lepsi-rozvrh/issues
AutoName: Better schedule
RepoType: git
Repo: https://github.com/vitSkalicky/lepsi-rozvrh.git
Builds:
- versionName: '1.0'
versionCode: 1
commit: v1.0
subdir: app
gradle:
- yes
- versionName: '1.1'
versionCode: 2
commit: v1.1
subdir: app
gradle:
- yes
- versionName: '1.2'
versionCode: 3
commit: v1.2
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
UpdateCheckIgnore: beta preview
CurrentVersion: '1.2'
CurrentVersionCode: 3
|
AntiFeatures:
- NonFreeNet
Categories:
- Internet
- Science & Education
License: GPL-3.0-or-later
AuthorName: Vít Skalický
AuthorEmail: [email protected]
SourceCode: https://github.com/vitSkalicky/lepsi-rozvrh
IssueTracker: https://github.com/vitSkalicky/lepsi-rozvrh/issues
AutoName: Better schedule
RepoType: git
Repo: https://github.com/vitSkalicky/lepsi-rozvrh.git
Builds:
- versionName: '1.0'
versionCode: 1
commit: v1.0
subdir: app
gradle:
- yes
- versionName: '1.1'
versionCode: 2
commit: v1.1
subdir: app
gradle:
- yes
- versionName: '1.2'
versionCode: 3
commit: v1.2
subdir: app
gradle:
- yes
- versionName: '1.3'
versionCode: 4
commit: v1.3
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
UpdateCheckIgnore: beta preview
CurrentVersion: '1.3'
CurrentVersionCode: 4
|
Update Better schedule to 1.3 (4)
|
Update Better schedule to 1.3 (4)
|
YAML
|
agpl-3.0
|
f-droid/fdroiddata,f-droid/fdroiddata
|
187c9d9f56fbb6531f9b396d6bace3880fa421ca
|
.travis.yml
|
.travis.yml
|
language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache/files
- $HOME/symfony-bridge/.phpunit
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- nightly
env:
global:
- SYMFONY_PHPUNIT_DIR="$HOME/symfony-bridge/.phpunit"
matrix:
include:
- php: 5.6
env: COMPOSER_FLAGS='--prefer-lowest --prefer-stable' SYMFONY_DEPRECATIONS_HELPER=weak
- php: 7.1
env: DEPENDENCIES=dev
- php: hhvm
dist: trusty
- php: 5.3
dist: precise
before_install:
- if [ "$DEPENDENCIES" = "dev" ]; then perl -pi -e 's/^}$/,"minimum-stability":"dev"}/' composer.json; fi;
# force the PHPUnit version for PHP 7.2, until https://github.com/symfony/symfony/issues/23943 is resolved
- if [ "$TRAVIS_PHP_VERSION" = "nightly" ]; then export SYMFONY_PHPUNIT_VERSION="6.3"; fi;
install:
- composer update $COMPOSER_FLAGS
- ./vendor/bin/simple-phpunit install
script:
- php ./vendor/bin/simple-phpunit
|
language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache/files
- $HOME/symfony-bridge/.phpunit
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- nightly
env:
global:
- SYMFONY_PHPUNIT_DIR="$HOME/symfony-bridge/.phpunit"
matrix:
include:
- php: 5.6
env: COMPOSER_FLAGS='--prefer-lowest --prefer-stable' SYMFONY_DEPRECATIONS_HELPER=weak
- php: 7.1
env: DEPENDENCIES=dev
- php: hhvm
dist: trusty
- php: 5.3
dist: precise
before_install:
- if [ "$DEPENDENCIES" = "dev" ]; then perl -pi -e 's/^}$/,"minimum-stability":"dev"}/' composer.json; fi;
# force the PHPUnit version for PHP 7.2, until https://github.com/symfony/symfony/issues/23943 is resolved
- if [ "$TRAVIS_PHP_VERSION" = "nightly" ]; then export SYMFONY_PHPUNIT_VERSION="6.3"; fi;
install:
- composer update $COMPOSER_FLAGS
- ./vendor/bin/simple-phpunit install
script:
- composer validate --strict --no-check-lock
- php ./vendor/bin/simple-phpunit
|
Add validation of the composer.json on Travis
|
Add validation of the composer.json on Travis
This prevents PRs breaking the validity of the composer.json, which would
then be rejected by Packagist.
The lock file is not validated, as it is not committed in the repo.
|
YAML
|
mit
|
KnpLabs/KnpMenu
|
6da0571b6ec7a68c6f51beac3d1cd01f4b210d48
|
.travis.yml
|
.travis.yml
|
# Fake out Travis CI, since PHP isn't supported when using their Docker services
language: python
env:
- PHP_VERSION=5.4.45 ARCH=x86_64
- PHP_VERSION=5.4.45 ARCH=mips
- PHP_VERSION=5.5.32 ARCH=x86_64
- PHP_VERSION=5.5.31 ARCH=mips
- PHP_VERSION=5.6.18 ARCH=x86_64
- PHP_VERSION=5.6.17 ARCH=mips
- PHP_VERSION=7.0.3 ARCH=x86_64
- PHP_VERSION=hhvm ARCH=x86_64
sudo: required
addons:
apt:
packages:
- php5-cli
- php5-curl
- qemu-user-static
services:
- docker
install:
- mkdir -p build/logs
script:
- bash -ex ./util/run-tests.sh
after_script:
- php vendor/bin/coveralls
notifications:
webhooks:
urls:
- 'https://webhooks.gitter.im/e/f3356db3405001e47b5e'
on_success: change
on_failure: always
on_start: false
|
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
sudo: false
before_script:
- travis_retry composer self-update
- travis_retry composer install --no-interaction --prefer-dist
script:
- mkdir -p build/logs
- ./vendor/bin/parallel-lint src tests
- ./vendor/bin/phpunit --verbose --coverage-clover build/logs/clover.xml
- ./vendor/bin/phpcs src tests --standard=psr2 -sp
after_script:
- php vendor/bin/coveralls
|
Update Travis builds to use Travis-installed PHP instead of Docker
|
Update Travis builds to use Travis-installed PHP instead of Docker
The Docker images currently do not have all the proper dependencies for
some newly-updated dependent packages (i.e. iconv), so we're using
standard Travis for the moment.
|
YAML
|
mit
|
michabbb-backup/uuid,michabbb-backup/uuid,ramsey/uuid
|
43a1dbb7e4b9bc14df7d505d48b3cc319dc4c213
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "0.13"
- "4"
- '5'
install:
- npm install
before_script:
- npm install -g grunt-cli
script:
- grunt
notifications:
email:
on_success: always
on_failure: always
|
sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- '5'
install:
- npm install
before_script:
- npm install -g grunt-cli
script:
- grunt
notifications:
email:
on_success: always
on_failure: always
|
Remove Version '0.13' not found
|
Remove Version '0.13' not found
|
YAML
|
mit
|
mdasberg/grunt-karma-sonar,mdasberg/grunt-karma-sonar
|
8553b0736492b49e761f880dfe7b988e05710993
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
node_js:
- stable
- '0.10'
- '0.12'
- '4.2.6'
|
sudo: false
language: node_js
node_js:
- stable
- '6'
- '7'
|
Update Travis CI to use newer nodejs
|
Update Travis CI to use newer nodejs
|
YAML
|
mit
|
arccoza/postcss-aspect-ratio
|
2a2b39f4460d0e0cd3be1e31a7d2201e515e8614
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.0.0
- 1.9.3
- 1.9.2
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
- 1.8.7
- ree
|
language: ruby
rvm:
- 2.5.0
- 2.0.0
- 1.9.3
- 1.9.2
- jruby-18mode
- jruby-19mode
- rbx-2
- 1.8.7
- ree
|
Change Ruby versions to test in CI
|
Change Ruby versions to test in CI
|
YAML
|
mit
|
archan937/slot_machine
|
ea5b721939062d245250838b05ac117c6c80b9ab
|
.travis.yml
|
.travis.yml
|
language: python
sudo: false
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
env:
- SPHINX=1.3.6
- SPHINX=1.4.9
- SPHINX=1.5.3
notifications:
email: false
irc: "irc.iiens.net#Clicky"
branches:
only:
- master
install:
- "pip install sphinx-testing" # required for tests
- "pip install Sphinx==$SPHINX"
- "pip install ."
- "if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pip install coveralls check-manifest flake8; fi"
script:
- "if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then check-manifest; fi"
- "if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then flake8; fi"
- "pushd test"
- "if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then coverage run --source=sphinxcontrib.paradoxy `type -p nosetests`; fi"
- "if [[ $TRAVIS_PYTHON_VERSION != '2.7' ]]; then nosetests; fi"
- "popd"
after_success:
- "pushd test"
- "if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then coveralls; fi"
- "popd"
|
language: python
sudo: false
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
env:
- SPHINX=1.3.6
- SPHINX=1.4.9
- SPHINX=1.5.3
notifications:
email: false
irc: "irc.iiens.net#Clicky"
branches:
only:
- master
install:
- "pip install sphinx-testing" # required for tests
- "pip install Sphinx==$SPHINX"
- "pip install lxml"
- "pip install ."
- "if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pip install coveralls check-manifest flake8; fi"
script:
- "if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then check-manifest; fi"
- "if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then flake8; fi"
- "pushd test"
- "if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then coverage run --source=sphinxcontrib.paradoxy `type -p nosetests`; fi"
- "if [[ $TRAVIS_PYTHON_VERSION != '2.7' ]]; then nosetests; fi"
- "popd"
after_success:
- "pushd test"
- "if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then coveralls; fi"
- "popd"
|
Install lxml as part of the tests
|
Install lxml as part of the tests
|
YAML
|
bsd-2-clause
|
fpoirotte/sphinxcontrib-doxylinks
|
4ec2d70c60477794d1daa0596bf143b521a18a44
|
.travis.yml
|
.travis.yml
|
branches:
except:
- rpi
language: generic
sudo: required
matrix:
include:
- os: linux
dist: trusty
env:
- SWIFT_VERSION=swift-3.1
SWIFT_BUILD=$SWIFT_VERSION-RELEASE-ubuntu14.04
SWIFT_URL=https://swift.org/builds/$SWIFT_VERSION-release/ubuntu1404/$SWIFT_VERSION-RELEASE/$SWIFT_BUILD.tar.gz
PATH="$SWIFT_BUILD/usr/bin:$PATH"
- os: osx
osx_image: xcode8.3
env:
- OPENSSL_ROOT_DIR=$(brew --prefix openssl)
install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
echo "Installing Swift...";
curl "$SWIFT_URL" | tar -xzf - || exit 2;
fi;
echo "Installing libwebsockets...";
git clone "https://github.com/warmcat/libwebsockets" || exit 3;
pushd libwebsockets || exit 5;
(cmake . && make && sudo make install) || exit 5;
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo ldconfig; fi;
popd
script:
- ./test.sh
|
branches:
except:
- rpi
language: generic
sudo: required
env: SWIFT_VERSION=3.1
matrix:
include:
- os: linux
dist: trusty
- os: osx
osx_image: xcode8.3
env:
- OPENSSL_ROOT_DIR=$(brew --prefix openssl)
install:
- eval "$(curl -sL https://gist.githubusercontent.com/kylef/5c0475ff02b7c7671d2a/raw/9f442512a46d7a2af7b850d65a7e9bd31edfb09b/swiftenv-install.sh)"
- git clone "https://github.com/warmcat/libwebsockets" || exit 3;
pushd libwebsockets || exit 5;
(cmake . && make && sudo make install) || exit 5;
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo ldconfig; fi;
popd
script:
- ./test.sh
|
Use swiftenv to install Swift for CI
|
Use swiftenv to install Swift for CI
|
YAML
|
mit
|
NobodyNada/SwiftChatSE,NobodyNada/SwiftChatSE
|
790197e1d140cc165430ccab4ddb33ae9f45eab4
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "3.3"
install:
- pip install -e git://github.com/TangledWeb/tangled.git
- pip install -e .
script: py.test
|
language: python
python:
- "3.3"
install:
- pip install git://github.com/TangledWeb/tangled.git#egg=tangled
- pip install .
script: py.test
|
Fix pip install link for tangled
|
Fix pip install link for tangled
|
YAML
|
mit
|
TangledWeb/tangled.web
|
c61f6f05dcaf91f48a5f5addfed68521ce0b9c14
|
.travis.yml
|
.travis.yml
|
before_install:
- git submodule update --init --recursive
language: node_js
node_js:
- "0.10"
- "0.12"
before_script:
- npm install -g grunt-cli
|
language: node_js
node_js:
- "0.10"
- "0.12"
before_script:
- npm install -g grunt-cli
|
Remove `git submodule update` call from Travis build
|
Remove `git submodule update` call from Travis build
I don't think this is necessary any more.
|
YAML
|
apache-2.0
|
kobotoolbox/enketo-core,enketo/enketo-core,nap2000/enketo-core,kevinmwangi/enketo-core,enketo/enketo-core,enketo/enketo-core,kobotoolbox/enketo-core,nap2000/enketo-core,nap2000/enketo-core,medic/enketo-core,kevinmwangi/enketo-core,medic/enketo-core
|
7a215ff5ca5733ebbaf7eb63dd22d55d1c6c5ebd
|
.travis.yml
|
.travis.yml
|
---
language: node_js
node_js:
- "0.12"
sudo: false
cache:
directories:
- node_modules
before_install:
- "npm config set spin false"
- "npm install -g npm@^2"
install:
- npm install -g bower
- npm install
- bower install
script:
- npm test
|
---
language: node_js
node_js:
- "0.12"
- "4"
- "5"
sudo: false
cache:
directories:
- node_modules
before_install:
- "npm config set spin false"
- "npm install -g npm@^2"
install:
- npm install -g bower
- npm install
- bower install
script:
- npm test
|
Test node v4 and v5
|
Test node v4 and v5
|
YAML
|
mit
|
j-/ember-cli-array-pauser,j-/ember-cli-array-pauser
|
9af818e7670f74ead11b85f426ebadcb871f0323
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- '10'
- '12'
- '14'
- node
matrix:
include:
- name: Lint
node_js: 14
script: npm run lint
script: '(nvm i 14 && npm run build) && npm run ci:test'
after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
|
language: node_js
node_js:
- '10'
- '12'
- '14'
- node
matrix:
include:
- name: Lint
node_js: 14
script: npm run lint
script: npm run ci:test
after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
|
Fix copy/paste error in Travis config
|
Fix copy/paste error in Travis config
|
YAML
|
bsd-3-clause
|
papandreou/node-gettemporaryfilepath
|
d567b10e2594829d351b660a5dbfbeafb6e27bc1
|
.travis.yml
|
.travis.yml
|
language: c
install:
- sudo add-apt-repository -y ppa:ceph-ubuntu/dev
- sudo apt-get update > /dev/null
- sudo apt-get install mono-devel libleveldb-dev libleveldb1 nunit-console > /dev/null
script:
- xbuild leveldb-sharp.sln
- nunit-console bin/Debug/leveldb-sharp-tests.dll
|
language: c
install:
- sudo sudo -s bash -c 'echo "deb http://http.debian.net/debian experimental main" >> /etc/apt/sources.list'
- sudo apt-get update > /dev/null
- sudo apt-get install mono-devel nunit-console > /dev/null
- sudo apt-get install -t experimental libleveldb-dev
script:
- xbuild leveldb-sharp.sln
- nunit-console bin/Debug/leveldb-sharp-tests.dll
|
Use leveldb library from Debian/Experimental as the PPA wasn't current enough
|
Use leveldb library from Debian/Experimental as the PPA wasn't current enough
|
YAML
|
bsd-3-clause
|
warrenfalk/leveldb-sharp,parhelia512/leveldb-sharp,meebey/leveldb-sharp,parhelia512/leveldb-sharp,meebey/leveldb-sharp,warrenfalk/leveldb-sharp
|
e1437673cf0a3e57fdb43099c315417d3adca5b0
|
.travis.yml
|
.travis.yml
|
dist: trusty
group: beta
language: ruby
git:
submodules: false
script:
- bundle exec rake libffi
- bundle exec rake compile
- bundle exec rake test
- |
if [[ $(ruby -v) != *truffleruby* ]]; then
ITER=10 bundle exec rake bench:all
fi
- bundle exec rake types_conf && git --no-pager diff
os:
- linux
- osx
rvm:
- 2.3.8
- 2.4.6
- 2.5.5
- 2.6.5
- 2.7.0
- ruby-head
- truffleruby-head
env:
- CC=gcc
- CC=clang
matrix:
allow_failures:
- os: osx
rvm: ruby-head
- os: osx
rvm: 2.3.8
- os: linux
rvm: ruby-head
include:
- name: powerpc
language: generic
before_install: |
docker run --rm --privileged multiarch/qemu-user-static:register --reset &&
docker build --rm -t ffi-powerpc -f spec/env/Dockerfile.powerpc .
script: |
docker run --rm -t -v `pwd`:/ffi ffi-powerpc
- name: armhf
language: generic
before_install: |
docker run --rm --privileged multiarch/qemu-user-static:register --reset &&
docker build --rm -t ffi-armhf -f spec/env/Dockerfile.armhf .
script: |
docker run --rm -t -v `pwd`:/ffi ffi-armhf
exclude:
- os: osx
rvm: truffleruby-head
after_failure:
- "find build -name mkmf.log | xargs cat"
|
dist: trusty
group: beta
language: generic
git:
submodules: false
matrix:
include:
- name: powerpc
before_install: |
docker run --rm --privileged multiarch/qemu-user-static:register --reset &&
docker build --rm -t ffi-powerpc -f spec/env/Dockerfile.powerpc .
script: |
docker run --rm -t -v `pwd`:/ffi ffi-powerpc
- name: armhf
before_install: |
docker run --rm --privileged multiarch/qemu-user-static:register --reset &&
docker build --rm -t ffi-armhf -f spec/env/Dockerfile.armhf .
script: |
docker run --rm -t -v `pwd`:/ffi ffi-armhf
|
Remove TravisCI jobs redundant with GitHub Actions
|
Remove TravisCI jobs redundant with GitHub Actions
|
YAML
|
bsd-3-clause
|
ffi/ffi,ffi/ffi,ffi/ffi
|
4ccce9b9fccf0cc8c246e19e942d39c3790ff708
|
.travis.yml
|
.travis.yml
|
language: python
# this version of python is only used to run tox - the version specified by TOX_ENV
# is used to install and run tests
python: 2.7
env:
- TOX_ENV=py27
- TOX_ENV=py32
- TOX_ENV=py33
- TOX_ENV=py34
- TOX_ENV=py35
- TOX_ENV=py36
- TOX_ENV=py37
- TOX_ENV=pypy
- TOX_ENV=coverage
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install tox
- pip install -r test-requirements.txt
# command to run tests, e.g. python setup.py test
script:
- tox -e $TOX_ENV
# allow travis to use new, faster container based
# infrastructure to perform the testing
sudo: false
|
language: python
# this version of python is only used to run tox - the version specified by TOX_ENV
# is used to install and run tests
python: 2.7
env:
- TOX_ENV=py27
- TOX_ENV=py34
- TOX_ENV=py35
- TOX_ENV=py36
- TOX_ENV=py37
- TOX_ENV=pypy
- TOX_ENV=coverage
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install tox
- pip install -r test-requirements.txt
# command to run tests, e.g. python setup.py test
script:
- tox -e $TOX_ENV
# allow travis to use new, faster container based
# infrastructure to perform the testing
sudo: false
|
Remove python 3.2 and 3.3, as they are no longer supported
|
Remove python 3.2 and 3.3, as they are no longer supported
|
YAML
|
mpl-2.0
|
digidotcom/python-devicecloud,digidotcom/python-devicecloud
|
f3aedf50e85598f66834023aae994151f611561e
|
.travis.yml
|
.travis.yml
|
language: java
sudo: required
jdk:
- oraclejdk8
env:
global:
- DISPLAY=:99.0
cache:
directories:
- $HOME/.m2
notifications:
email:
recipients:
- [email protected]
# Handle git submodules yourself
git:
submodules: false
# Enable UI
before_install:
- sh -e /etc/init.d/xvfb start - sleep 10
- git clone --depth 1 https://github.com/kit-sdq/BuildUtilities.git /tmp/BuildUtilities
- . /tmp/BuildUtilities/travis-ci/installMaven.sh
install: true
script: mvn clean verify
after_success:
- . /tmp/BuildUtilities/travis-ci/deploy.sh framework releng/tools.vitruv.updatesite.aggregated final vitruv-tools updatesite
|
language: java
sudo: required
jdk:
- oraclejdk8
env:
global:
- DISPLAY=:99.0
cache:
directories:
- $HOME/.m2
notifications:
email:
recipients:
- [email protected]
# Handle git submodules yourself
git:
submodules: false
# Enable UI
before_install:
- sh -e /etc/init.d/xvfb start - sleep 10
- git clone --depth 1 https://github.com/kit-sdq/BuildUtilities.git /tmp/BuildUtilities
- . /tmp/BuildUtilities/travis-ci/installMaven.sh
- "echo \"export MAVEN_OPTS='-Dmaven.repo.local=$HOME/.m2/repository -Xmx2g -XX:MaxPermSize=2048m'\" > ~/.mavenrc"
install: true
script: mvn clean verify
after_success:
- . /tmp/BuildUtilities/travis-ci/deploy.sh framework releng/tools.vitruv.updatesite.aggregated final vitruv-tools updatesite
|
Increase Maven memory to avoid GC limit
|
Increase Maven memory to avoid GC limit
|
YAML
|
epl-1.0
|
vitruv-tools/Vitruv
|
1e636a7d2f69a313e597c53882dda09fc18f0406
|
.travis.yml
|
.travis.yml
|
# Lock down dist to ensure that builds run on a distribution that supports oraclejdk8
dist: trusty
language: ruby
jdk:
- oraclejdk8
rvm:
- 2.6.6
install:
- rvm use 2.6.6
- gem install bundler
- bundle install
script: buildr package
git:
depth: false
|
# Lock down dist to ensure that builds run on a distribution that supports oraclejdk8
dist: trusty
language: ruby
jdk:
- oraclejdk8
rvm:
- 2.6.6
install:
- gem install bundler
- bundle install
script: buildr package
git:
depth: false
|
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/arez,realityforge/arez,realityforge/arez
|
97c5fdf8b6c15d2178dcb80a364a65c8988ab7b5
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- ruby-head
- 2.4.3
- 2.3.6
- 2.2.9
- 2.1.10
before_install:
- gem update --system
install:
- bundle install --without development
addons:
apt_packages:
libmagic-dev
script:
- bundle exec parallel_rspec spec
|
language: ruby
rvm:
- ruby-head
- 2.5.0
- 2.4.3
- 2.3.6
- 2.2.9
- 2.1.10
before_install:
- gem update --system
install:
- bundle install --without development
addons:
apt_packages:
libmagic-dev
script:
- bundle exec parallel_rspec spec
|
Add ruby 2.5.0 to testing versions
|
Add ruby 2.5.0 to testing versions
|
YAML
|
agpl-3.0
|
ONLYOFFICE/ooxml_parser
|
8426f1ca53d524d9c347008e305cade002bf9343
|
.travis.yml
|
.travis.yml
|
language: rust
os:
- linux
- osx
rust:
- stable
- nightly
matrix:
exclude:
- rust: stable
env: FEATURE=nightly
allow_failures:
- os: osx
before_script:
- pip install 'travis-cargo<0.2' --user && export PATH=$HOME/Library/Python/2.7/bin:$HOME/.local/bin:$PATH
script:
- travis-cargo test -- --features $FEATURE --no-default-features
after_success:
- "[[ $TRAVIS_OS_NAME = linux ]] && travis-cargo --only stable coveralls"
env:
global:
- TRAVIS_CARGO_NIGHTLY_FEATURE=""
matrix:
- FEATURE=with-serde-codegen
- FEATURE=nightly
|
language: rust
os:
- linux
- osx
rust:
- stable
- nightly
matrix:
exclude:
- rust: stable
env: FEATURE=nightly
allow_failures:
- os: osx
- rust: nightly
before_script:
- pip install 'travis-cargo<0.2' --user && export PATH=$HOME/Library/Python/2.7/bin:$HOME/.local/bin:$PATH
script:
- travis-cargo test -- --features $FEATURE --no-default-features
after_success:
- "[[ $TRAVIS_OS_NAME = linux ]] && travis-cargo --only stable coveralls"
env:
global:
- TRAVIS_CARGO_NIGHTLY_FEATURE=""
matrix:
- FEATURE=with-serde-codegen
- FEATURE=nightly
|
Allow continuous builds to fail with rust nightly.
|
chore(ci): Allow continuous builds to fail with rust nightly.
Some of the crates used by the rust-nightly build are more than a bit
flaky.
|
YAML
|
apache-2.0
|
dermesser/yup-oauth2,Narfinger/yup-oauth2,dermesser/yup-oauth2
|
176d76d06f9e4cad25dd03a046b1a5fb33db4670
|
.travis.yml
|
.travis.yml
|
# Based on https://github.com/moteus/lua-travis-example
language: c
branches:
only:
- moon
env:
global:
- LUAROCKS=2.3.0
- LUA=lua5.1
before_install:
- source .travis/setenv_lua.sh
install:
- luarocks install moonscript
script:
- bash ./build.sh
notifications:
irc:
channels:
- "irc.esper.net#cc.ru"
use_notice: true
template:
- "\x0300,01New build on \x02%{repository_slug}\x02!"
- "\x02%{repository_name}#%{build_number}\x02 [\x1f%{branch}\x1f] %{message}"
- "\x02Elapsed time:\x02 %{elapsed_time} | \x02Total duration:\x02 %{duration}"
- "[\x1f%{commit}\x1f] \x02%{author}\x02: %{commit_message}"
- "\x02Changes:\x02 %{compare_url}"
- "\x02Build details:\x02 %{build_url}"
|
# Based on https://github.com/moteus/lua-travis-example
language: c
branches:
only:
- moon
env:
global:
- LUAROCKS=2.3.0
- LUA=lua5.1
before_install:
- source .travis/setenv_lua.sh
install:
- luarocks install moonscript
script:
- bash ./build.sh
notifications:
irc:
channels:
- "irc.esper.net#cc.ru"
use_notice: true
template:
- "\x0300,01New build on \x02%{repository_slug}\x02!"
- "\x02%{repository_name}#%{build_number}\x02 [\x1f%{branch}\x1f] \x1f%{message}"
- "\x02Elapsed time:\x02 %{elapsed_time} | \x02Total duration:\x02 %{duration}"
- "[\x1f%{commit}\x1f] \x02%{author}\x02: \x0300,01%{commit_message}"
- "\x02Changes:\x02 %{compare_url}"
- "\x02Build details:\x02 %{build_url}"
|
Update Travis CI notification formatting
|
Update Travis CI notification formatting
|
YAML
|
mit
|
hel-repo/hpm
|
a1fcd32620341f477db568426df6725a4270394a
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.6
- '7'
mysql:
database: activecollab_promises_test
username: root
encoding: utf8mb4
install: composer install --dev
before_script:
# create the database
- mysql -e 'create database if not exists activecollab_promises_test;'
script: phpunit -c test/phpunit.xml
|
language: php
php:
- 7.1
mysql:
database: activecollab_promises_test
username: root
encoding: utf8mb4
install: composer install --dev
before_script:
# create the database
- mysql -e 'create database if not exists activecollab_promises_test;'
script: phpunit -c test/phpunit.xml
|
Switch Travis to PHP 7.1
|
Switch Travis to PHP 7.1
|
YAML
|
mit
|
activecollab/promises
|
3ce9bb6ac14e855ed0531a51ceda7b03b8fffe8e
|
.travis.yml
|
.travis.yml
|
language: rust
sudo: false
script:
- cargo build --verbose
- cargo test --verbose
- cargo doc --no-deps
after_success: |
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
echo '<meta http-equiv=refresh content=0;url=tempdir/index.html>' > target/doc/index.html &&
pip install ghp-import --user $USER &&
$HOME/.local/bin/ghp-import -n target/doc &&
git push -qf https://${TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages
env:
global:
secure: GzgRe6TWVJLBly53nUwyvYnap6vlq3stS5iYnE51n305CxOinA9sKbNev4g/nYegfAvKM12Tmy4hySBVyWaHL43rTMivoBTqHMyVohf5xR9avi/em198GlL0AM005j6w67fiWgmbb0iDC2NcKN358ga8AnIWB6KNd4C4Jm5X+ew=
notifications:
email:
on_success: never
|
language: rust
rust:
- 1.0.0
- beta
- nightly
sudo: false
script:
- cargo build --verbose
- cargo test --verbose
- cargo doc --no-deps
after_success: |
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
[ $TRAVIS_RUST_VERSION = nightly ] &&
echo '<meta http-equiv=refresh content=0;url=tempdir/index.html>' > target/doc/index.html &&
pip install ghp-import --user $USER &&
$HOME/.local/bin/ghp-import -n target/doc &&
git push -qf https://${TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages
env:
global:
secure: GzgRe6TWVJLBly53nUwyvYnap6vlq3stS5iYnE51n305CxOinA9sKbNev4g/nYegfAvKM12Tmy4hySBVyWaHL43rTMivoBTqHMyVohf5xR9avi/em198GlL0AM005j6w67fiWgmbb0iDC2NcKN358ga8AnIWB6KNd4C4Jm5X+ew=
notifications:
email:
on_success: never
|
Test on rust 1.0.0, nightly, and beta
|
Test on rust 1.0.0, nightly, and beta
|
YAML
|
apache-2.0
|
Yamakaky/tempdir,rust-lang/tempdir
|
6ddf84ff75b91332c204eb700e92881061c7a606
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "pypy2.7"
- "pypy3-2"
install:
- pip install -q tox coverage coveralls tox-travis
script:
- coverage erase
- tox
after_success:
- coverage combine
- coveralls
notifications:
email:
- [email protected]
|
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
install:
- pip install -q tox coverage coveralls tox-travis
script:
- coverage erase
- tox
after_success:
- coverage combine
- coveralls
notifications:
email:
- [email protected]
|
Test only for python 2.7, 3.4, 3.5, 3.6
|
Test only for python 2.7, 3.4, 3.5, 3.6
|
YAML
|
mit
|
ierror/django-js-reverse
|
d1ce570b940ecc9d01d69abcb86ef7897b180db7
|
.travis.yml
|
.travis.yml
|
language: c
compiler:
- clang
- gcc
env:
- COVERAGE=true
- COVERAGE=false;
matrix:
exclude:
- compiler: clang
env: COVERAGE=true
- compiler: gcc
env: COVERAGE=false
before_install:
- sudo apt-get install check
- sudo pip install cpp-coveralls
# Change this to your needs
script:
- gcc --version
- ./bootstrap.sh
- ./configure --with-check && make && make check
after_success:
- if [[ $COVERAGE == 'true' ]];
then
./configure --with-check --enable-gcov && make clean && make check;
coveralls --exclude samplecode --exclude test -b src;
fi
|
language: c
compiler:
- clang
- gcc
env:
- COVERAGE=true
- COVERAGE=false;
matrix:
exclude:
- compiler: clang
env: COVERAGE=true
- compiler: gcc
env: COVERAGE=false
before_install:
- sudo apt-get install check
# - sudo pip install cpp-coveralls
- sudo apt-get install -y lcov
- gem install coveralls-lcov
# Change this to your needs
script:
- ./bootstrap.sh
- ./configure --with-check && make && make check
after_success:
- if [[ $COVERAGE == 'true' ]];
then
./configure --with-check --enable-gcov && make clean && make check;
lcov -d . --capture --directory src --output-file spudlib.info;
#coveralls --exclude samplecode --exclude test;
coveralls-lcov spudlib.info;
fi
|
Move to coveralls-lcov to see if that works.
|
Move to coveralls-lcov to see if that works.
|
YAML
|
bsd-2-clause
|
iptube/SPUDlib,iptube/SPUDlib,iptube/SPUDlib,iptube/SPUDlib,iptube/SPUDlib
|
e449786f743363d5db4b4f67ce6b4ca1de7e86b8
|
.travis.yml
|
.travis.yml
|
branches:
only:
- master
- v3-new
language: ruby
rvm:
- 1.9.3
- 2.0.0
- "2.1"
script: bundle exec rspec
|
branches:
only:
- master
- v3-new
language: ruby
matrix:
allow_failures:
- rvm: ruby-head
rvm:
- 1.9.3
- 2.0.0
- "2.1"
- ruby-head
script: bundle exec rspec
|
Build against head Ruby on Travis (but allow failure)
|
Build against head Ruby on Travis (but allow failure)
|
YAML
|
mit
|
collectiveidea/interactor,artofhuman/interactor,youprofit/interactor,JDutil/interactor,EnerfisTeam/interactor,splittingred/interactor
|
2498fc34e6cdf51b8aeeeb9048c8886443672c39
|
.travis.yml
|
.travis.yml
|
sudo: false
cache: bundler
language: ruby
bundler_args: --without kitchen_common kitchen_vagrant kitchen_cloud kitchen_pester
rvm:
- 2.0
- 2.1
- 2.2
script:
- bundle exec foodcritic -f any .
- bundle exec rubocop
- bundle exec rspec --color --format progress
|
# 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 chef-dk install in Travis CI
|
Use chef-dk install in Travis CI
|
YAML
|
apache-2.0
|
chef-cookbooks/windows,GannettDigital/chef-windows,shoekstra/chef-windows,ruicovelo/windows,stuartpreston/windows,rlaveycal/windows,blairham/windows-cookbook,urban-institute/windows,opscode-cookbooks/windows,criteo-forks/windows,daptiv/windows,juliandunn/windows,protec-cookbooks/windows,autoclone/windows
|
1f553f6f10f2d3fd7c8c9347957c4515a4d80e13
|
.travis.yml
|
.travis.yml
|
sudo: required
env:
global:
- PACKAGE="DiffView"
matrix:
- SUBLIME_TEXT_VERSION="3"
env:
global:
- PACKAGE="DiffView"
- SUBLIME_TEXT_VERSION="3"
matrix:
include:
- os: linux
language: python
python: 3.3
- os: osx
language: generic
before_install:
- curl -OL https://raw.githubusercontent.com/SublimeText/UnitTesting/master/sbin/travis.sh
# enable gui, see https://docs.travis-ci.com/user/gui-and-headless-browsers
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then
export DISPLAY=:99.0;
sh -e /etc/init.d/xvfb start;
fi
install:
# bootstrap the testing environment
- sh travis.sh bootstrap
script:
# run tests with test coverage report
- sh travis.sh run_tests --coverage
after_success:
# remove the following if `coveralls` is not needed
- pip3 install python-coveralls;
- pip3 install codecov;
- coveralls
- codecov
notifications:
email: false
|
sudo: required
env:
global:
- PACKAGE="DiffView"
matrix:
- SUBLIME_TEXT_VERSION="3"
env:
global:
- PACKAGE="DiffView"
- SUBLIME_TEXT_VERSION="3"
matrix:
include:
- os: linux
language: python
- os: osx
language: generic
before_install:
- curl -OL https://raw.githubusercontent.com/SublimeText/UnitTesting/master/sbin/travis.sh
# enable gui, see https://docs.travis-ci.com/user/gui-and-headless-browsers
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then
export DISPLAY=:99.0;
sh -e /etc/init.d/xvfb start;
fi
install:
# bootstrap the testing environment
- sh travis.sh bootstrap
script:
# run tests with test coverage report
- sh travis.sh run_tests --coverage
after_success:
# remove the following if `coveralls` is not needed
- pip3 install python-coveralls;
- pip3 install codecov;
- coveralls
- codecov
notifications:
email: false
|
Move UTs off Python 3.4
|
Move UTs off Python 3.4
|
YAML
|
mit
|
CJTozer/SublimeDiffView
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.