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
32d39410da096de9f719adc2824d71ff07df45ee
.github/ISSUE_TEMPLATE/config.yml
.github/ISSUE_TEMPLATE/config.yml
contact_links: - name: Docker container issues url: https://github.com/thelounge/thelounge-docker/issues about: Report issues related to the Docker container here - name: Debian package issues url: https://github.com/thelounge/thelounge-deb/issues about: Report issues related to the Debian package here - name: Arch Linux package issues url: https://github.com/thelounge/thelounge-archlinux/issues about: Report issues related to the Arch Linux package here - name: General support url: https://demo.thelounge.chat/?join=%23thelounge about: Join \#thelounge on Freenode to ask a question before creating an issue
contact_links: - name: Docker container issues url: https://github.com/thelounge/thelounge-docker/issues about: Report issues related to the Docker container here - name: Debian package issues url: https://github.com/thelounge/thelounge-deb/issues about: Report issues related to the Debian package here - name: Arch Linux package issues url: https://github.com/thelounge/thelounge-archlinux/issues about: Report issues related to the Arch Linux package here - name: General support url: https://demo.thelounge.chat/?join=%23thelounge about: "Join #thelounge on Freenode to ask a question before creating an issue"
Put the string in quotes
Put the string in quotes skip ci Github rendered it as "\#"
YAML
mit
williamboman/lounge,thelounge/lounge,thelounge/lounge,MaxLeiter/lounge,MaxLeiter/lounge,williamboman/lounge,MaxLeiter/lounge,williamboman/lounge
40632af1863894b3b68766bcc7cc95516442dc65
.github/workflows/cargo_audit.yml
.github/workflows/cargo_audit.yml
name: Security audit on: schedule: - cron: '0 0 * * *' pull_request: types: [opened, synchronize, reopened] jobs: audit: runs-on: ubuntu-18.04 steps: - uses: actions/checkout@v2 - uses: actions-rs/toolchain@v1 with: target: thumbv7em-none-eabi - uses: actions/setup-python@v1 with: python-version: 3.7 - name: Install Python dependencies run: python -m pip install --upgrade pip setuptools wheel - name: Set up OpenSK run: ./setup.sh - uses: actions-rs/audit-check@v1 with: token: ${{ secrets.GITHUB_TOKEN }}
name: Security audit on: schedule: - cron: '0 0 * * *' jobs: audit: runs-on: ubuntu-18.04 steps: - uses: actions/checkout@v2 - uses: actions-rs/toolchain@v1 with: target: thumbv7em-none-eabi - uses: actions/setup-python@v1 with: python-version: 3.7 - name: Install Python dependencies run: python -m pip install --upgrade pip setuptools wheel - name: Set up OpenSK run: ./setup.sh - uses: actions-rs/audit-check@v1 with: token: ${{ secrets.GITHUB_TOKEN }}
Remove cargo audit on pull request as it fails
Remove cargo audit on pull request as it fails
YAML
apache-2.0
google/OpenSK,google/OpenSK,google/OpenSK
6c12480be2100d0e113a1ee538bde160f688a3fe
.github/workflows/createPost.yaml
.github/workflows/createPost.yaml
name: Create post on: issues: types: - opened - reopened - edited jobs: add-post: name: Add post runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v2 - name: Get data id: get-data uses: actions/github-script@v4 with: script: | const number = context.payload.issue.number.toString() core.setOutput('branch', "issue" + number) const title = context.payload.issue.title core.setOutput('filename', "_posts/" + title + ".md") const author = context.payload.issue.user.login const body = context.payload.issue.body const header = `--- title: permalink: "/x/" layout: post commentsId: 0 author: --- ` core.setOutput('body', header + body) console.log(author) core.setOutput('commitMessage', "Closes #" + number) - name: Commit changes run: | echo "${{steps.get-data.outputs.body}}" > ${{steps.get-data.outputs.filename}} git add . - name: Create Pull Request uses: peter-evans/create-pull-request@v3 with: commit-message: ${{steps.get-data.outputs.commitMessage}} branch: ${{steps.get-data.outputs.branch}} delete-branch: true reviewers: nvdaes
name: Create post on: issues: types: - opened - reopened - edited jobs: add-post: name: Add post if: ${{ github.event.label.name == 'improvement' }} runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v2 - name: Get data id: get-data uses: actions/github-script@v4 with: script: | const number = context.payload.issue.number.toString() core.setOutput('branch', "issue" + number) const title = context.payload.issue.title core.setOutput('filename', "_posts/" + title + ".md") const body = context.payload.issue.body const header = `--- title: permalink: "/x/" layout: post commentsId: 0 author: --- ` core.setOutput('body', header + body) core.setOutput('commitMessage', "Closes #" + number) - name: Commit changes run: | echo "${{steps.get-data.outputs.body}}" > ${{steps.get-data.outputs.filename}} git add . - name: Create Pull Request uses: peter-evans/create-pull-request@v3 with: commit-message: ${{steps.get-data.outputs.commitMessage}} branch: ${{steps.get-data.outputs.branch}} delete-branch: true reviewers: nvdaes
Improve action to add post based on label
Improve action to add post based on label
YAML
mit
nvdaes/nvdaes.github.io,nvdaes/nvdaes.github.io
b695c7d82637973cd4cbcbb2c5e4a3c698d0c45c
.github/workflows/dockerimage.yml
.github/workflows/dockerimage.yml
name: Docker Image CI on: push: branches: - main workflow_dispatch: {} jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Login to Docker Hub uses: docker/login-action@v1 with: username: ${{ secrets.DockerHubUsername }} password: ${{ secrets.DockerHubPassword }} - name: Set up Docker Buildx id: buildx uses: docker/setup-buildx-action@master - name: Build and push id: docker_build uses: docker/build-push-action@v2 with: context: . push: true target: production tags: | neinteractiveliterature/intercode:latest neinteractiveliterature/intercode:${{ github.sha }} cache-from: type=gha cache-to: type=gha,mode=max
name: Docker Image CI on: push: branches: - main workflow_dispatch: {} jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Login to Docker Hub uses: docker/login-action@v1 with: username: ${{ secrets.DockerHubUsername }} password: ${{ secrets.DockerHubPassword }} - name: Set up Docker Buildx id: buildx uses: docker/setup-buildx-action@master - # Temp fix, see below name: Cache Docker layers uses: actions/cache@v2 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-${{ github.sha }} restore-keys: | ${{ runner.os }}-buildx- - name: Build and push id: docker_build uses: docker/build-push-action@v2 with: context: . push: true target: production tags: | neinteractiveliterature/intercode:latest neinteractiveliterature/intercode:${{ github.sha }} # TODO: put this back once it gets working again # cache-from: type=gha # cache-to: type=gha,mode=max cache-from: type=local,src=/tmp/.buildx-cache cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max - # Temp fix # https://github.com/docker/build-push-action/issues/252 # https://github.com/moby/buildkit/issues/1896 name: Move cache run: | rm -rf /tmp/.buildx-cache mv /tmp/.buildx-cache-new /tmp/.buildx-cache
Switch away from experimental GHA cache until it's not broken
Switch away from experimental GHA cache until it's not broken
YAML
mit
neinteractiveliterature/intercode,neinteractiveliterature/intercode,neinteractiveliterature/intercode,neinteractiveliterature/intercode,neinteractiveliterature/intercode
d8f2bb21d8e3f2a6f0891f12954de2a69e36dcb0
.github/workflows/update_iers.yml
.github/workflows/update_iers.yml
name: Auto-update IERS tables on: schedule: - cron: '0 0 * * 0' jobs: update-iers: name: Auto-update IERS tables runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v2 - name: Download latest IERS files run: ./update_builtin_iers.sh working-directory: astropy/utils/iers/data - name: Commit changes run: | git config user.name github-actions git config user.email [email protected] git add astropy/utils/iers/data/Leap_Second.dat git add astropy/utils/iers/data/eopc04_IAU2000.62-now git commit -m "Update IERS Earth rotation and leap second tables" - name: Create Pull Request uses: peter-evans/create-pull-request@v3 with: branch: update-iers branch-suffix: timestamp delete-branch: true labels: no-changelog-entry-needed, utils.iers title: Update IERS Earth rotation and leap second tables body: | This is an automated update of the IERS Earth rotation and leap second tables. **Note to maintainers:** please label this to be backported to all current release branches!
name: Auto-update IERS tables on: schedule: - cron: '0 0 * * 0' workflow_dispatch: jobs: update-iers: name: Auto-update IERS tables runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v2 - name: Download latest IERS files run: ./update_builtin_iers.sh working-directory: astropy/utils/iers/data - name: Commit changes run: | git config user.name github-actions git config user.email [email protected] git add astropy/utils/iers/data/Leap_Second.dat git add astropy/utils/iers/data/eopc04_IAU2000.62-now git commit -m "Update IERS Earth rotation and leap second tables" - name: Create Pull Request uses: peter-evans/create-pull-request@v3 with: branch: update-iers branch-suffix: timestamp delete-branch: true labels: no-changelog-entry-needed, utils.iers title: Update IERS Earth rotation and leap second tables body: | This is an automated update of the IERS Earth rotation and leap second tables. **Note to maintainers:** please label this to be backported to all current release branches!
Allow IERS table update to be triggered with workflow_dispatch
Allow IERS table update to be triggered with workflow_dispatch
YAML
bsd-3-clause
pllim/astropy,pllim/astropy,StuartLittlefair/astropy,astropy/astropy,saimn/astropy,mhvk/astropy,StuartLittlefair/astropy,larrybradley/astropy,StuartLittlefair/astropy,astropy/astropy,lpsinger/astropy,saimn/astropy,mhvk/astropy,larrybradley/astropy,larrybradley/astropy,lpsinger/astropy,astropy/astropy,saimn/astropy,astropy/astropy,lpsinger/astropy,StuartLittlefair/astropy,pllim/astropy,pllim/astropy,saimn/astropy,mhvk/astropy,mhvk/astropy,astropy/astropy,saimn/astropy,pllim/astropy,larrybradley/astropy,mhvk/astropy,larrybradley/astropy,lpsinger/astropy,lpsinger/astropy,StuartLittlefair/astropy
da7b1d12c8255ace617f9b3548bca18610513ff8
packages/pr/pragmatic-show.yaml
packages/pr/pragmatic-show.yaml
homepage: https://github.com/leftaroundabout/pragmatic-show changelog-type: '' hash: 02d1495b1a63af7846389beb48c681b7ecc7c63ee636cdcbb43a2a61743d3a9f test-bench-deps: base: ! '>=4 && <5' vector-space: -any pragmatic-show: -any tasty-quickcheck: -any tasty-hunit: -any tasty: ! '>=0.7' maintainer: (@) jsag $ hvl.no synopsis: Alternative Show class that gives shorter view if possible. changelog: '' basic-deps: base: ! '>=4.8 && <5' containers: ! '>=0.5 && <0.6' all-versions: - 0.1.0.0 - 0.1.0.1 - 0.1.0.2 - 0.1.1.0 - 0.1.2.0 author: Justus Sagemüller latest: 0.1.2.0 description-type: haddock description: |- The standard 'Show' class is handy for quickly viewing any Haskell values without having to think about formatting. However, it often produces needlessly clunky string representations, which are difficult to parse by eye. This package offers a drop-in replacement which attempts to keep the representation as short as possible. license-name: GPL-3.0-only
homepage: https://github.com/leftaroundabout/pragmatic-show changelog-type: '' hash: ec0698d9bad63a0f7761e205a699e7439fb2329c55e50a93af4a9062e85df5a4 test-bench-deps: base: ! '>=4 && <5' vector-space: -any pragmatic-show: -any tasty-quickcheck: -any tasty-hunit: -any tasty: ! '>=0.7' maintainer: (@) jsag $ hvl.no synopsis: Alternative Show class that gives shorter view if possible. changelog: '' basic-deps: base: ! '>=4.8 && <5' containers: ! '>=0.5 && <0.7' all-versions: - 0.1.0.0 - 0.1.0.1 - 0.1.0.2 - 0.1.1.0 - 0.1.2.0 author: Justus Sagemüller latest: 0.1.2.0 description-type: haddock description: |- The standard 'Show' class is handy for quickly viewing any Haskell values without having to think about formatting. However, it often produces needlessly clunky string representations, which are difficult to parse by eye. This package offers a drop-in replacement which attempts to keep the representation as short as possible. license-name: GPL-3.0-only
Update from Hackage at 2019-10-10T15:49:29Z
Update from Hackage at 2019-10-10T15:49:29Z
YAML
mit
commercialhaskell/all-cabal-metadata
5bd7c51ef91d318473a3110729f7c1cd1d0b03cb
packages/pr/pragmatic-show.yaml
packages/pr/pragmatic-show.yaml
homepage: https://github.com/leftaroundabout/number-show changelog-type: '' hash: 1f7f68c1cc6e40d345d699c385d818e57598e6c4300b678401a5bcf2f91da196 test-bench-deps: base: ! '>=4 && <5' vector-space: -any pragmatic-show: -any tasty-quickcheck: -any tasty-hunit: -any tasty: ! '>=0.7' maintainer: (@) jsagemue $ uni-koeln.de synopsis: Alternative Show class that gives shorter view if possible. changelog: '' basic-deps: base: ! '>=4.8 && <5' all-versions: - '0.1.0.0' author: Justus Sagemüller latest: '0.1.0.0' description-type: haddock description: ! 'The standard ''Show'' class is handy for quickly viewing any Haskell values without having to think about formatting. However, it often produces needlessly clunky string representations, which are difficult to parse by eye. This package offers a drop-in replacement which attempts to keep the representation as short as possible.' license-name: GPL-3
homepage: https://github.com/leftaroundabout/pragmatic-show changelog-type: '' hash: 02b41b72de25cff01e168285f568848ba01345b4e4009ebfd52f2d4cdd46fa72 test-bench-deps: base: ! '>=4 && <5' vector-space: -any pragmatic-show: -any tasty-quickcheck: -any tasty-hunit: -any tasty: ! '>=0.7' maintainer: (@) jsagemue $ uni-koeln.de synopsis: Alternative Show class that gives shorter view if possible. changelog: '' basic-deps: base: ! '>=4.8 && <5' all-versions: - '0.1.0.0' author: Justus Sagemüller latest: '0.1.0.0' description-type: haddock description: ! 'The standard ''Show'' class is handy for quickly viewing any Haskell values without having to think about formatting. However, it often produces needlessly clunky string representations, which are difficult to parse by eye. This package offers a drop-in replacement which attempts to keep the representation as short as possible.' license-name: GPL-3
Update from Hackage at 2017-09-22T12:08:00Z
Update from Hackage at 2017-09-22T12:08:00Z
YAML
mit
commercialhaskell/all-cabal-metadata
a5eaa317a26d794290f8b9174b5bcacfe63a198e
.github/workflows/js-tests.yml
.github/workflows/js-tests.yml
name: JS Tests on: push: branches: - develop - master pull_request: types: - opened - reopened - synchronize - ready_for_review jobs: js-tests: name: Run JS Tests runs-on: ubuntu-latest if: github.event.pull_request.draft == false steps: - uses: actions/checkout@v2 - name: Read .nvmrc run: echo "##[set-output name=NVMRC;]$(cat .nvmrc)" id: nvm - name: Setup Node.js (.nvmrc) uses: actions/setup-node@v1 with: node-version: "${{ steps.nvm.outputs.NVMRC }}" - name: Cache Node - npm uses: actions/cache@v1 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} restore-keys: | ${{ runner.os }}-node-cache- - name: npm install run: npm ci - name: Run Jest Tests run: npm run test:js - name: Build JS (Production Version, with tests) run: npm run build:test - name: Run Bundlesize Tests run: npm run test:bundlesize
name: JS Tests on: push: branches: - develop - master pull_request: types: - opened - reopened - synchronize - ready_for_review jobs: js-tests: name: Run JS Tests runs-on: ubuntu-latest if: github.event.pull_request.draft == false steps: - uses: actions/checkout@v2 - name: Read .nvmrc run: echo "##[set-output name=NVMRC;]$(cat .nvmrc)" id: nvm - name: Setup Node.js (.nvmrc) uses: actions/setup-node@v1 with: node-version: "${{ steps.nvm.outputs.NVMRC }}" - name: Cache Node - npm uses: actions/cache@v1 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} restore-keys: | ${{ runner.os }}-node-cache- - name: npm install run: npm ci - name: Run Jest Tests run: npm run test:js - name: Build JS (Production Version, with tests) run: npm run build:test - name: Run Bundlesize Tests run: npm run test:bundlesize env: BUNDLESIZE_GITHUB_TOKEN: ${{ secrets.BUNDLESIZE_GITHUB_TOKEN }}
Add the bundlesize secret if available.
Add the bundlesize secret if available.
YAML
apache-2.0
google/site-kit-wp,google/site-kit-wp,google/site-kit-wp,google/site-kit-wp
d0bf0f2703bb3aa15df4dbf8249830a541aee9fc
packages/co/colorful-monoids.yaml
packages/co/colorful-monoids.yaml
homepage: https://github.com/minad/colorful-monoids#readme changelog-type: '' hash: d7c31880848fe6a694377ed4b0e67b3544451e9b23d0d978b14c398503d871c4 test-bench-deps: colorful-monoids: -any base: ! '>=4.8 && <5' semigroups: ! '>=0.9 && <1' maintainer: Daniel Mendler <[email protected]> synopsis: Styled console text output using ANSI escape sequences. changelog: '' basic-deps: base: ! '>=4.8 && <5' semigroups: ! '>=0.9 && <1' all-versions: - '0.1.0.0' author: Daniel Mendler <[email protected]> latest: '0.1.0.0' description-type: haddock description: Styled console text output using ANSI escape sequences. license-name: MIT
homepage: https://github.com/minad/colorful-monoids#readme changelog-type: '' hash: 9e1c5644f00fe16477faefa183c1dc7508459262476f24ecb4c737ee26e8879f test-bench-deps: colorful-monoids: -any base: ! '>=4.8 && <5' semigroups: ! '>=0.9 && <1' maintainer: Daniel Mendler <[email protected]> synopsis: Styled console text output using ANSI escape sequences. changelog: '' basic-deps: base: ! '>=4.8 && <5' semigroups: ! '>=0.9 && <1' all-versions: - '0.1.0.0' - '0.1.0.1' author: Daniel Mendler <[email protected]> latest: '0.1.0.1' description-type: haddock description: Styled console text output using ANSI escape sequences. license-name: MIT
Update from Hackage at 2017-01-27T01:31:26Z
Update from Hackage at 2017-01-27T01:31:26Z
YAML
mit
commercialhaskell/all-cabal-metadata
1cebb9abf685ae4844550eb71488acafcdd33aa5
packages/gl/gloss-accelerate.yaml
packages/gl/gloss-accelerate.yaml
homepage: '' changelog-type: '' hash: ff61cd1cbd500f87dfcee228e2c07b973fcb5c49b5b8a3d7191c6cd3088aeb8c test-bench-deps: {} maintainer: Trevor L. McDonell <[email protected]> synopsis: Extras to interface Gloss and Accelerate changelog: '' basic-deps: gloss: ! '>=1.9' base: ! '>=4.6 && <4.10' gloss-rendering: ! '>=1.9' accelerate: ! '>=0.16' all-versions: - '0.2.0.0' author: Trevor L. McDonell latest: '0.2.0.0' description-type: haddock description: Extras to interface Gloss and Accelerate license-name: BSD3
homepage: '' changelog-type: '' hash: 9545769ef5e3de356b9f65230357bd941c0ea8872fdf5c1ba9747a415a7dc737 test-bench-deps: {} maintainer: Trevor L. McDonell <[email protected]> synopsis: Extras to interface Gloss and Accelerate changelog: '' basic-deps: gloss: ! '>=1.9' base: ! '>=4.6 && <4.10' gloss-rendering: ! '>=1.9' accelerate: ! '>=0.16' all-versions: - '1.8.0.0' - '1.8.15.0' - '1.9.0.0' - '2.0.0.0' author: Trevor L. McDonell latest: '2.0.0.0' description-type: haddock description: Extras to interface Gloss and Accelerate license-name: BSD3
Update from Hackage at 2017-04-09T04:41:31Z
Update from Hackage at 2017-04-09T04:41:31Z
YAML
mit
commercialhaskell/all-cabal-metadata
6dd3a12c85dfd485dd572729906cfbf98c19e172
src/Atarashii/APIBundle/Resources/config/services.yml
src/Atarashii/APIBundle/Resources/config/services.yml
parameters: atarashii_api.comm.class: Atarashii\APIBundle\Service\Communicator atarashii_api.comm.base_url: http://myanimelist.net services: atarashii_api.communicator: class: '%atarashii_api.comm.class%' arguments: ['%atarashii_api.comm.base_url%', '%api_user_agent%']
parameters: atarashii_api.comm.class: Atarashii\APIBundle\Service\Communicator atarashii_api.comm.base_url: https://myanimelist.net services: atarashii_api.communicator: class: '%atarashii_api.comm.class%' arguments: ['%atarashii_api.comm.base_url%', '%api_user_agent%']
Update to use MAL SSL
Update to use MAL SSL MAL now uses HTTPS and redirects from non. Set the base URL to the new HTTPS protocol to avoid code issues from the redirects.
YAML
apache-2.0
AnimeNeko/atarashii-mal-api,AnimeNeko/atarashii-mal-api,AnimeNeko/atarashii-mal-api,AnimeNeko/atarashii-mal-api
d1c0d7cbe4f6475ed64721a1eb675f31761abd1a
tools/cloud-build/daily-tests/slurm-tests.yml
tools/cloud-build/daily-tests/slurm-tests.yml
# Copyright 2021 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. --- - name: Get partition info command: sinfo --format='%P' --noheader register: partition_output - name: Check partition compute exists fail: msg: Test Check Partitions failed when: item not in partition_output.stdout loop: "{{ partitions }}" - name: Get mount info stat: path: "{{ item }}" register: stat_mounts loop: "{{ mounts }}" - name: Check if mount exists fail: msg: "{{ item.item }} not mounted" when: not item.stat.exists loop: "{{ stat_mounts.results }}" - name: Test Mounts on partitions command: srun -N 1 ls -laF {{ mounts | join(' ') }} loop: "{{ partitions }}" - name: Test partitions with hostname command: srun -N 2 --partition {{ item }} hostname loop: "{{ partitions }}"
# Copyright 2021 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. --- - name: Get partition info command: sinfo --format='%P' --noheader register: partition_output - name: Check partition compute exists fail: msg: Test Check Partitions failed when: item not in partition_output.stdout loop: "{{ partitions }}" - name: Get mount info stat: path: "{{ item }}" register: stat_mounts loop: "{{ mounts }}" - name: Check if mount exists fail: msg: "{{ item.item }} not mounted" when: not item.stat.exists loop: "{{ stat_mounts.results }}" - name: Test Mounts on partitions shell: srun -N 1 ls -laF {{ mounts | join(' ') }} && sleep 120 loop: "{{ partitions }}" - name: Test partitions with hostname shell: srun -N 2 --partition {{ item }} hostname && sleep 120 loop: "{{ partitions }}"
Add a pause between slurm srun tests
Add a pause between slurm srun tests
YAML
apache-2.0
GoogleCloudPlatform/hpc-toolkit,GoogleCloudPlatform/hpc-toolkit,GoogleCloudPlatform/hpc-toolkit,GoogleCloudPlatform/hpc-toolkit
07bdb808bef29aa213e72e8494d24e50324d9ed2
.eslintrc.yml
.eslintrc.yml
# ESLint config # http://eslint.org/docs/user-guide/configuring # https://github.com/BigstickCarpet/eslint-config-modular extends: - modular/best-practices - modular/style - modular/es6 - modular/node
# ESLint config # http://eslint.org/docs/user-guide/configuring # https://github.com/BigstickCarpet/eslint-config-modular root: true extends: - modular/best-practices - modular/style - modular/es6 - modular/node
Mark the ESLint config as the root one for the project
Mark the ESLint config as the root one for the project
YAML
mit
rkrauskopf/chai-exec
04ad81cfa814ef0397f1d2bc9ca31b1abf1ed3a7
_data/topnav.yml
_data/topnav.yml
## Topnav single links ## if you want to list an external url, use external_url instead of url. the theme will apply a different link base. topnav: - title: Topnav items: - title: About url: /about.html - title: News url: /news.html - title: Issues url: /issues.html #Topnav dropdowns topnav_dropdowns: - title: Topnav dropdowns folders: - title: Code folderitems: - title: Source external_url: https://gerrit.googlesource.com/gerrit/ - title: Releases url: /releases-readme.html - title: Builds external_url: https://gerrit-ci.gerritforge.com/ - title: Reviews external_url: https://gerrit-review.googlesource.com/q/status:open+project:gerrit - title: Docs folderitems: - title: Latest external_url: https://gerrit-documentation.storage.googleapis.com/Documentation/2.16/index.html - title: Wiki external_url: https://gerrit.googlesource.com/homepage/+/md-pages/docs/
## Topnav single links ## if you want to list an external url, use external_url instead of url. the theme will apply a different link base. topnav: - title: Topnav items: - title: About url: /about.html - title: News url: /news.html - title: Issues url: /issues.html #Topnav dropdowns topnav_dropdowns: - title: Topnav dropdowns folders: - title: Code folderitems: - title: Source external_url: https://gerrit.googlesource.com/gerrit/ - title: Releases url: /releases-readme.html - title: Builds external_url: https://gerrit-ci.gerritforge.com/ - title: Reviews external_url: https://gerrit-review.googlesource.com/q/status:open+project:gerrit - title: Docs folderitems: - title: Latest external_url: https://gerrit-documentation.storage.googleapis.com/Documentation/2.16.1/index.html - title: Wiki external_url: https://gerrit.googlesource.com/homepage/+/md-pages/docs/
Set latest docs in navigation to v2.16.1
Set latest docs in navigation to v2.16.1 Change-Id: Iae597c7b69c43defe60de8e0df2c6a4a5551caa1
YAML
apache-2.0
GerritCodeReview/homepage,GerritCodeReview/homepage,GerritCodeReview/homepage,GerritCodeReview/homepage,GerritCodeReview/homepage
7a55512dcddb3dbf47ba02a14e535ff1f718f6fe
recipes/pear/meta.yaml
recipes/pear/meta.yaml
package: name: pear version: '0.9.6' about: home: http://sco.h-its.org/exelixis/web/software/pear/ license: 'Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported' summary: 'paired-end read merger' source: fn: pear-0.9.6-src.tar.gz md5: 5ed68d50c1620cd55c58681e38771799 url: http://sco.h-its.org/exelixis/web/software/pear/files/pear-0.9.6-src.tar.gz build: number: 1 skip: True # [osx] requirements: build: - pkgconfig - zlib run: - zlib test: # 'pear -h' exits with error code 1 and there is no 'pear --version', so try # to actually merge something. That way, we can also test whether gzip support # is compiled in. files: - fwd.fastq.gz - rev.fastq.gz commands: - pear -f fwd.fastq.gz -r rev.fastq.gz -o out > /dev/null - pearRM -f fwd.fastq.gz -r rev.fastq.gz -o out > /dev/null
package: name: pear version: '0.9.6' about: home: http://sco.h-its.org/exelixis/web/software/pear/ license: 'Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported' summary: 'paired-end read merger' source: fn: pear-0.9.6-src.tar.gz md5: 5ed68d50c1620cd55c58681e38771799 url: http://sco.h-its.org/exelixis/web/software/pear/files/pear-0.9.6-src.tar.gz build: number: 1 requirements: build: - pkgconfig - zlib run: - zlib test: # 'pear -h' exits with error code 1 and there is no 'pear --version', so try # to actually merge something. That way, we can also test whether gzip support # is compiled in. files: - fwd.fastq.gz - rev.fastq.gz commands: - pear -f fwd.fastq.gz -r rev.fastq.gz -o out > /dev/null - pearRM -f fwd.fastq.gz -r rev.fastq.gz -o out > /dev/null
Remove skip for osx to add osx support.
Remove skip for osx to add osx support.
YAML
mit
lpantano/recipes,pinguinkiste/bioconda-recipes,keuv-grvl/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,daler/bioconda-recipes,phac-nml/bioconda-recipes,rob-p/bioconda-recipes,dmaticzka/bioconda-recipes,mcornwell1957/bioconda-recipes,npavlovikj/bioconda-recipes,jasper1918/bioconda-recipes,acaprez/recipes,xguse/bioconda-recipes,abims-sbr/bioconda-recipes,rvalieris/bioconda-recipes,xguse/bioconda-recipes,mcornwell1957/bioconda-recipes,zachcp/bioconda-recipes,keuv-grvl/bioconda-recipes,ivirshup/bioconda-recipes,gvlproject/bioconda-recipes,xguse/bioconda-recipes,zwanli/bioconda-recipes,bow/bioconda-recipes,blankenberg/bioconda-recipes,omicsnut/bioconda-recipes,zachcp/bioconda-recipes,chapmanb/bioconda-recipes,daler/bioconda-recipes,mdehollander/bioconda-recipes,shenwei356/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,guowei-he/bioconda-recipes,rob-p/bioconda-recipes,keuv-grvl/bioconda-recipes,peterjc/bioconda-recipes,chapmanb/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,zwanli/bioconda-recipes,mdehollander/bioconda-recipes,ivirshup/bioconda-recipes,saketkc/bioconda-recipes,yesimon/bioconda-recipes,dkoppstein/recipes,bebatut/bioconda-recipes,phac-nml/bioconda-recipes,ThomasWollmann/bioconda-recipes,ThomasWollmann/bioconda-recipes,yesimon/bioconda-recipes,martin-mann/bioconda-recipes,roryk/recipes,gvlproject/bioconda-recipes,cokelaer/bioconda-recipes,rvalieris/bioconda-recipes,mdehollander/bioconda-recipes,npavlovikj/bioconda-recipes,CGATOxford/bioconda-recipes,pinguinkiste/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,bow/bioconda-recipes,acaprez/recipes,colinbrislawn/bioconda-recipes,acaprez/recipes,saketkc/bioconda-recipes,zwanli/bioconda-recipes,hardingnj/bioconda-recipes,abims-sbr/bioconda-recipes,jfallmann/bioconda-recipes,oena/bioconda-recipes,cokelaer/bioconda-recipes,omicsnut/bioconda-recipes,bow/bioconda-recipes,jfallmann/bioconda-recipes,ivirshup/bioconda-recipes,mcornwell1957/bioconda-recipes,oena/bioconda-recipes,bioconda/bioconda-recipes,gregvonkuster/bioconda-recipes,oena/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,gvlproject/bioconda-recipes,JenCabral/bioconda-recipes,Luobiny/bioconda-recipes,cokelaer/bioconda-recipes,CGATOxford/bioconda-recipes,ThomasWollmann/bioconda-recipes,daler/bioconda-recipes,martin-mann/bioconda-recipes,xguse/bioconda-recipes,bebatut/bioconda-recipes,blankenberg/bioconda-recipes,guowei-he/bioconda-recipes,peterjc/bioconda-recipes,joachimwolff/bioconda-recipes,mcornwell1957/bioconda-recipes,bebatut/bioconda-recipes,CGATOxford/bioconda-recipes,daler/bioconda-recipes,mdehollander/bioconda-recipes,rvalieris/bioconda-recipes,Luobiny/bioconda-recipes,gvlproject/bioconda-recipes,colinbrislawn/bioconda-recipes,joachimwolff/bioconda-recipes,rvalieris/bioconda-recipes,colinbrislawn/bioconda-recipes,saketkc/bioconda-recipes,shenwei356/bioconda-recipes,keuv-grvl/bioconda-recipes,shenwei356/bioconda-recipes,HassanAmr/bioconda-recipes,pinguinkiste/bioconda-recipes,ivirshup/bioconda-recipes,matthdsm/bioconda-recipes,chapmanb/bioconda-recipes,Luobiny/bioconda-recipes,saketkc/bioconda-recipes,hardingnj/bioconda-recipes,bioconda/recipes,gvlproject/bioconda-recipes,peterjc/bioconda-recipes,blankenberg/bioconda-recipes,zwanli/bioconda-recipes,peterjc/bioconda-recipes,pinguinkiste/bioconda-recipes,ostrokach/bioconda-recipes,HassanAmr/bioconda-recipes,chapmanb/bioconda-recipes,ostrokach/bioconda-recipes,bioconda/bioconda-recipes,peterjc/bioconda-recipes,zwanli/bioconda-recipes,cokelaer/bioconda-recipes,npavlovikj/bioconda-recipes,zwanli/bioconda-recipes,joachimwolff/bioconda-recipes,CGATOxford/bioconda-recipes,rvalieris/bioconda-recipes,HassanAmr/bioconda-recipes,keuv-grvl/bioconda-recipes,ThomasWollmann/bioconda-recipes,matthdsm/bioconda-recipes,mdehollander/bioconda-recipes,colinbrislawn/bioconda-recipes,ThomasWollmann/bioconda-recipes,phac-nml/bioconda-recipes,keuv-grvl/bioconda-recipes,omicsnut/bioconda-recipes,omicsnut/bioconda-recipes,JenCabral/bioconda-recipes,HassanAmr/bioconda-recipes,jfallmann/bioconda-recipes,mcornwell1957/bioconda-recipes,martin-mann/bioconda-recipes,CGATOxford/bioconda-recipes,bow/bioconda-recipes,ostrokach/bioconda-recipes,CGATOxford/bioconda-recipes,oena/bioconda-recipes,dkoppstein/recipes,dmaticzka/bioconda-recipes,mdehollander/bioconda-recipes,jasper1918/bioconda-recipes,omicsnut/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,joachimwolff/bioconda-recipes,phac-nml/bioconda-recipes,ivirshup/bioconda-recipes,hardingnj/bioconda-recipes,Luobiny/bioconda-recipes,ostrokach/bioconda-recipes,guowei-he/bioconda-recipes,martin-mann/bioconda-recipes,matthdsm/bioconda-recipes,colinbrislawn/bioconda-recipes,jasper1918/bioconda-recipes,zachcp/bioconda-recipes,dmaticzka/bioconda-recipes,matthdsm/bioconda-recipes,bioconda/bioconda-recipes,colinbrislawn/bioconda-recipes,jasper1918/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,rvalieris/bioconda-recipes,gregvonkuster/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,acaprez/recipes,bow/bioconda-recipes,hardingnj/bioconda-recipes,oena/bioconda-recipes,ThomasWollmann/bioconda-recipes,gregvonkuster/bioconda-recipes,ostrokach/bioconda-recipes,dmaticzka/bioconda-recipes,lpantano/recipes,joachimwolff/bioconda-recipes,JenCabral/bioconda-recipes,xguse/bioconda-recipes,HassanAmr/bioconda-recipes,hardingnj/bioconda-recipes,lpantano/recipes,chapmanb/bioconda-recipes,joachimwolff/bioconda-recipes,jasper1918/bioconda-recipes,martin-mann/bioconda-recipes,JenCabral/bioconda-recipes,roryk/recipes,rob-p/bioconda-recipes,roryk/recipes,pinguinkiste/bioconda-recipes,ivirshup/bioconda-recipes,pinguinkiste/bioconda-recipes,matthdsm/bioconda-recipes,gvlproject/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,rob-p/bioconda-recipes,matthdsm/bioconda-recipes,daler/bioconda-recipes,saketkc/bioconda-recipes,zachcp/bioconda-recipes,guowei-he/bioconda-recipes,dkoppstein/recipes,peterjc/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,yesimon/bioconda-recipes,shenwei356/bioconda-recipes,guowei-he/bioconda-recipes,abims-sbr/bioconda-recipes,phac-nml/bioconda-recipes,JenCabral/bioconda-recipes,dmaticzka/bioconda-recipes,bebatut/bioconda-recipes,daler/bioconda-recipes,abims-sbr/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,dmaticzka/bioconda-recipes,abims-sbr/bioconda-recipes,jfallmann/bioconda-recipes,bow/bioconda-recipes,blankenberg/bioconda-recipes,bioconda/bioconda-recipes,HassanAmr/bioconda-recipes,lpantano/recipes,gregvonkuster/bioconda-recipes,yesimon/bioconda-recipes,bioconda/recipes,saketkc/bioconda-recipes,bioconda/recipes,ostrokach/bioconda-recipes,abims-sbr/bioconda-recipes,JenCabral/bioconda-recipes,npavlovikj/bioconda-recipes
f90868142a8e7773e93e86fd6310699e4a63042c
packages/jp/jpl-horizons-api.yaml
packages/jp/jpl-horizons-api.yaml
homepage: https://github.com/ocramz/jpl-horizons-api changelog-type: '' hash: 36b61860b1fc5f641d97a42c11134a8a174aa27f59ae2c7bb4b1f0bc16025714 test-bench-deps: {} maintainer: [email protected] synopsis: Ephemerides for solar system objects from the JPL Horizons service changelog: '' basic-deps: bytestring: -any base: '>=4.7 && <5' time: -any text: '>=1.2.4.1' megaparsec: -any req: -any jpl-horizons-api: -any scientific: '>=0.3.7.0' all-versions: - 0.1.0.0 - 0.2.0.0 author: Marco Zocca latest: 0.2.0.0 description-type: markdown description: | # jpl-horizons-api API bindings for the Nasa JPL Horizons service license-name: BSD-3-Clause
homepage: https://github.com/ocramz/jpl-horizons-api changelog-type: '' hash: 1305e013f21bb28ed9a804226056d0848bacaa602af26c2c740b45dd198eb519 test-bench-deps: {} maintainer: ocramz synopsis: Ephemerides for solar system objects from the JPL Horizons service changelog: '' basic-deps: bytestring: -any base: '>=4.7 && <5' time: -any text: '>=1.2.4.1' megaparsec: -any req: -any jpl-horizons-api: -any optparse-applicative: -any scientific: '>=0.3.7.0' all-versions: - 0.1.0.0 - 0.2.0.0 - 0.3.0.0 author: Marco Zocca latest: 0.3.0.0 description-type: markdown description: | # jpl-horizons-api API bindings for the Nasa JPL Horizons service license-name: BSD-3-Clause
Update from Hackage at 2022-03-09T14:20:35Z
Update from Hackage at 2022-03-09T14:20:35Z
YAML
mit
commercialhaskell/all-cabal-metadata
5547fde32dfbd52c63652294d71bd09b75018a4f
velodrome/grafana-stack/prometheus-config.yml
velodrome/grafana-stack/prometheus-config.yml
global: scrape_interval: 1m
global: scrape_interval: 1m scrape_configs: - job_name: kubernetes-submit-queue metrics_path: /prometheus static_configs: - targets: - submit-queue.k8s.io
Add first scrape to prometheus back-end
velodrome: Add first scrape to prometheus back-end
YAML
apache-2.0
BenTheElder/test-infra,pwittrock/test-infra,shyamjvs/test-infra,mindprince/test-infra,spxtr/test-infra,kubernetes/test-infra,lavalamp/test-infra,dchen1107/test-infra,pwittrock/test-infra,BenTheElder/test-infra,fejta/test-infra,piosz/test-infra,kubernetes/test-infra,brahmaroutu/test-infra,ixdy/kubernetes-test-infra,jlowdermilk/test-infra,BenTheElder/test-infra,mindprince/test-infra,foxish/test-infra,mindprince/test-infra,mtaufen/test-infra,mikedanese/test-infra,krousey/test-infra,jlowdermilk/test-infra,shashidharatd/test-infra,madhusudancs/test-infra,monopole/test-infra,shyamjvs/test-infra,kargakis/test-infra,cjwagner/test-infra,krzyzacy/test-infra,jlowdermilk/test-infra,brahmaroutu/test-infra,grodrigues3/test-infra,jessfraz/test-infra,mindprince/test-infra,mtaufen/test-infra,piosz/test-infra,cjwagner/test-infra,dims/test-infra,jessfraz/test-infra,kubernetes/test-infra,monopole/test-infra,madhusudancs/test-infra,michelle192837/test-infra,krousey/test-infra,kubernetes/test-infra,rmmh/kubernetes-test-infra,fejta/test-infra,fejta/test-infra,brahmaroutu/test-infra,nlandolfi/test-infra-1,dchen1107/test-infra,foxish/test-infra,cblecker/test-infra,mikedanese/test-infra,piosz/test-infra,michelle192837/test-infra,kewu1992/test-infra,abgworrall/test-infra,piosz/test-infra,mikedanese/test-infra,cjwagner/test-infra,fejta/test-infra,nlandolfi/test-infra-1,monopole/test-infra,mtaufen/test-infra,michelle192837/test-infra,grodrigues3/test-infra,monopole/test-infra,cjwagner/test-infra,dims/test-infra,shyamjvs/test-infra,jlowdermilk/test-infra,krousey/test-infra,rmmh/kubernetes-test-infra,kargakis/test-infra,krzyzacy/test-infra,cblecker/test-infra,abgworrall/test-infra,kubernetes/test-infra,mikedanese/test-infra,shashidharatd/test-infra,dchen1107/test-infra,krousey/test-infra,dchen1107/test-infra,shyamjvs/test-infra,cblecker/test-infra,fejta/test-infra,nlandolfi/test-infra-1,foxish/test-infra,lavalamp/test-infra,BenTheElder/test-infra,madhusudancs/test-infra,mindprince/test-infra,jlowdermilk/test-infra,michelle192837/test-infra,cblecker/test-infra,gmarek/test-infra,dims/test-infra,kargakis/test-infra,grodrigues3/test-infra,shashidharatd/test-infra,gmarek/test-infra,mtaufen/test-infra,pwittrock/test-infra,shyamjvs/test-infra,michelle192837/test-infra,lavalamp/test-infra,madhusudancs/test-infra,abgworrall/test-infra,krzyzacy/test-infra,spxtr/test-infra,brahmaroutu/test-infra,cblecker/test-infra,rmmh/kubernetes-test-infra,pwittrock/test-infra,spxtr/test-infra,kewu1992/test-infra,lavalamp/test-infra,nlandolfi/test-infra-1,gmarek/test-infra,dims/test-infra,madhusudancs/test-infra,BenTheElder/test-infra,nlandolfi/test-infra-1,kewu1992/test-infra,lavalamp/test-infra,brahmaroutu/test-infra,lavalamp/test-infra,cblecker/test-infra,kubernetes/test-infra,ixdy/kubernetes-test-infra,grodrigues3/test-infra,jessfraz/test-infra,abgworrall/test-infra,fejta/test-infra,kewu1992/test-infra,dchen1107/test-infra,krzyzacy/test-infra,shyamjvs/test-infra,jessfraz/test-infra,dims/test-infra,jessfraz/test-infra,shashidharatd/test-infra,BenTheElder/test-infra,shashidharatd/test-infra,kargakis/test-infra,grodrigues3/test-infra,spxtr/test-infra,monopole/test-infra,kargakis/test-infra,ixdy/kubernetes-test-infra,ixdy/kubernetes-test-infra,krzyzacy/test-infra,ixdy/kubernetes-test-infra,gmarek/test-infra,foxish/test-infra,gmarek/test-infra,krousey/test-infra,foxish/test-infra,cjwagner/test-infra,jlowdermilk/test-infra,spxtr/test-infra,krzyzacy/test-infra,kewu1992/test-infra,rmmh/kubernetes-test-infra,dims/test-infra,pwittrock/test-infra,rmmh/kubernetes-test-infra,mtaufen/test-infra,michelle192837/test-infra,abgworrall/test-infra,monopole/test-infra,brahmaroutu/test-infra,kargakis/test-infra,cjwagner/test-infra,piosz/test-infra,mikedanese/test-infra,jessfraz/test-infra
a11aa2fde745112e2637a19780f1f33e6f90320f
apply-updates/params.yml
apply-updates/params.yml
opsman_domain_or_ip_address: opsman_admin_username: opsman_admin_password: pivnet_token: iaas:
opsman_domain_or_ip_address: # FQDN to access Ops Manager without protocol (will use https), ex: opsmgr.example.com opsman_admin_username: # Username for Ops Manager admin account opsman_admin_password: # Password for Ops Manager admin account pivnet_token: # Pivnet token for downloading resources from Pivnet. Find this token at https://network.pivotal.io/users/dashboard/edit-profile # The IaaS name for which stemcell to download. This must match the IaaS name # within the stemcell to download, e.g. "vsphere", "aws", "azure", "google" must be lowercase. iaas:
Add param descriptions for clarity
Add param descriptions for clarity
YAML
apache-2.0
mcb/pcf-pipelines,cah-josephgeorge/pcf-pipelines,sandyg1/pcf-pipelines,pvsone/pcf-pipelines,cah-josephgeorge/pcf-pipelines,sandyg1/pcf-pipelines,sandyg1/pcf-pipelines,rahulkj/pcf-pipelines,pivotal-cf/pcf-pipelines,rahulkj/pcf-pipelines,rahulkj/pcf-pipelines,pivotal-cf/pcf-pipelines,pvsone/pcf-pipelines,BrianMMcClain/pcf-pipelines,rahulkj/pcf-pipelines,BrianMMcClain/pcf-pipelines,pvsone/pcf-pipelines,cah-josephgeorge/pcf-pipelines,pivotal-cf/pcf-pipelines,sandyg1/pcf-pipelines,mcb/pcf-pipelines,mcb/pcf-pipelines,pivotal-cf/pcf-pipelines
5f29603aceed3a733ac7920198aed682ee8037db
.forestry/front_matter/templates/page-home.yml
.forestry/front_matter/templates/page-home.yml
--- pages: - index.md hide_body: true is_partial: false fields: - type: include name: page_defaults label: Page Defaults template: pages - type: blocks name: sections label: Sections description: Sections to Display template_types: - section-partial-sections - section-partial-collection
--- pages: - index.md hide_body: true is_partial: false fields: - type: include name: page_defaults label: Page Defaults template: pages - type: blocks name: sections label: Sections description: Sections to Display template_types: - section-partial-collection - section-partial-sections
Update from Forestry.io - Updated Forestry configuration
Update from Forestry.io - Updated Forestry configuration
YAML
mit
truecodersio/truecoders.io,truecodersio/truecoders.io,truecodersio/truecoders.io
44a1c8e55b6314233487e809b5f91a01a296bb21
.github/workflows/deploy.yml
.github/workflows/deploy.yml
name: Build and Deploy on: push: branches: - master jobs: build-and-deploy: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v2 with: persist-credentials: false - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: '7.4' extensions: json, gd - name: Setup Node uses: actions/setup-node@v2-beta with: node-version: '14' - name: Install dependencies run: make prod-setup - name: Build site run: make prod-build - name: Deploy uses: JamesIves/[email protected] with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} BRANCH: gh-pages FOLDER: docs CLEAN: true
name: Build and Deploy on: push: branches: - master jobs: build-and-deploy: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v2 with: persist-credentials: false - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: '8.0' extensions: json, gd - name: Setup Node uses: actions/setup-node@v2-beta with: node-version: '14' - name: Install dependencies run: make prod-setup - name: Build site run: make prod-build - name: Deploy uses: JamesIves/[email protected] with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} BRANCH: gh-pages FOLDER: docs CLEAN: true
Configure the pipeline to use PHP 8
Configure the pipeline to use PHP 8
YAML
mit
Mopolo/mopolo.github.io,Mopolo/mopolo.github.io
566e02ac3c9f16ee2eacfcfe668aa009f7af0274
.github/workflows/heroku.yml
.github/workflows/heroku.yml
name: Heroku on: release: types: [published] jobs: deploy: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 with: fetch-depth: 0 - name: Set up Ruby 2.6 uses: actions/setup-ruby@v1 with: ruby-version: 2.6.x - name: Install databases run: sudo apt-get -y install libpq-dev libsqlite3-dev - name: Build and test with Rake run: | gem install bundler bundle install --jobs 4 --retry 3 bundle exec rake - name: Deploy to Heroku run: git push https://heroku:[email protected]/pennfoodtrucks.git HEAD:master
name: Heroku on: release: types: [published] jobs: deploy: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 with: fetch-depth: 0 - name: Set up Ruby 2.6 uses: actions/setup-ruby@v1 with: ruby-version: 2.6.x - name: Install databases run: sudo apt-get -y install libpq-dev libsqlite3-dev - name: Build and test with Rake run: | gem install bundler bundle install --jobs 4 --retry 3 bundle exec rake - name: Deploy to Heroku env: HEROKU_API_TOKEN: ${{ secrets.HEROKU_API_TOKEN }} run: git push https://heroku:[email protected]/pennfoodtrucks.git HEAD:master
Include secrets in Heroku environment
Include secrets in Heroku environment
YAML
agpl-3.0
adelq/pennfoodtrucks,adelq/pennfoodtrucks,adelq/pennfoodtrucks
ef7ce705899c587dcf1c166a074bd94f3ecb3482
.github/workflows/nodejs.yml
.github/workflows/nodejs.yml
name: build on: push: branches: - master # Run tests for any PRs. pull_request: jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [12.x, 13.x, 14.x] steps: - uses: actions/checkout@v1 - 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 test env: CI: true
name: build on: push: branches: - master # Run tests for any PRs. pull_request: jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [12.x, 13.x, 14.x] steps: - uses: actions/checkout@v2 - 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 test env: CI: true
Update actions/checkout action to v2
Update actions/checkout action to v2
YAML
mit
personnummer/js,frozzare/is-personnummer,personnummer/js
aadbfb9a2504d401d3bed5c03bd602935d8da6ec
.github/workflows/nodejs.yml
.github/workflows/nodejs.yml
name: CI on: push: branches: - master pull_request: branches: - '**' jobs: test: name: Lint and test on Node.js ${{ matrix.node }} runs-on: ubuntu-latest strategy: fail-fast: false matrix: node: [10, 12] steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: node-version: ${{ matrix.node }} - run: npm ci - name: Lint and Test run: npm test
name: CI on: push: branches: - master pull_request: branches: - '**' jobs: test: name: Lint and test on Node.js ${{ matrix.node }} runs-on: ubuntu-latest strategy: fail-fast: false matrix: node: [10, 12, 14, 16] steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: node-version: ${{ matrix.node }} - run: npm ci - name: Lint and Test run: npm test
Add LTS and the latest Node.js to CI
Add LTS and the latest Node.js to CI
YAML
mit
hudochenkov/postcss-sorting,hudochenkov/postcss-sorting,hudochenkov/postcss-sorting
787bd0b8449a06b9689d72b370a85b94e987288b
metadata/net.redwarp.gifwallpaper.yml
metadata/net.redwarp.gifwallpaper.yml
Categories: - Theming License: Apache-2.0 AuthorName: Benoit Vermont SourceCode: https://github.com/redwarp/gif-wallpaper IssueTracker: https://github.com/redwarp/gif-wallpaper/issues AutoName: GIF Live Wallpaper RepoType: git Repo: https://github.com/redwarp/gif-wallpaper Builds: - versionName: 1.2.2 versionCode: 23 commit: v1.2.2 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 1.2.2 CurrentVersionCode: 23
Categories: - Theming License: Apache-2.0 AuthorName: Benoit Vermont SourceCode: https://github.com/redwarp/gif-wallpaper IssueTracker: https://github.com/redwarp/gif-wallpaper/issues AutoName: GIF Live Wallpaper RepoType: git Repo: https://github.com/redwarp/gif-wallpaper Builds: - versionName: 1.2.2 versionCode: 23 commit: v1.2.2 subdir: app gradle: - yes - versionName: 1.2.3 versionCode: 24 commit: v1.2.3 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 1.2.3 CurrentVersionCode: 24
Update GIF Live Wallpaper to 1.2.3 (24)
Update GIF Live Wallpaper to 1.2.3 (24)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
7c188a0b25eb6edb10d34e4cdd787e494d52609a
.cirrus.yml
.cirrus.yml
freebsd_task: freebsd_instance: matrix: - image: freebsd-11-2-release-amd64 - image: freebsd-12-0-release-amd64 install_script: pkg install -y rust gmake asciidoc pkgconf stfl curl json-c ncurses openssl sqlite3 gettext-tools # CI builds take a while to provision, install dependencies and compile our # stuff. To maximize the benefits, we ask Make to process as many rules as # possible before failing. This enables developers to fix more errors before # re-submitting the code to CI, which should increase throughput. # # Running three jobs because by default, VMs have 2 cores. compile_script: RUST_BACKTRACE=1 gmake --jobs=3 --keep-going all test test_script: cargo test 32bit_ubuntu_task: container: dockerfile: docker/ubuntu_18.04-i686.dockerfile build_script: make -j3 --keep-going all test test_script: ( cd test && ./test --order rand ); ret=$?; (cargo test) && sh -c "exit $ret"
freebsd_task: freebsd_instance: matrix: - image: freebsd-11-2-release-amd64 - image: freebsd-12-0-release-amd64 install_script: pkg install -y rust gmake asciidoc pkgconf stfl curl json-c ncurses openssl sqlite3 gettext-tools # CI builds take a while to provision, install dependencies and compile our # stuff. To maximize the benefits, we ask Make to process as many rules as # possible before failing. This enables developers to fix more errors before # re-submitting the code to CI, which should increase throughput. # # Running three jobs because by default, VMs have 2 cores. build_script: RUST_BACKTRACE=1 gmake --jobs=3 --keep-going all test test_script: cargo test 32bit_ubuntu_task: container: dockerfile: docker/ubuntu_18.04-i686.dockerfile build_script: make -j3 --keep-going all test test_script: ( cd test && ./test --order rand ); ret=$?; (cargo test) && sh -c "exit $ret"
Rename "compile" stage to "build" on Cirrus FreeBSD
Rename "compile" stage to "build" on Cirrus FreeBSD That's consistent with out i686 job.
YAML
mit
newsboat/newsboat,newsboat/newsboat,der-lyse/newsboat,newsboat/newsboat,newsboat/newsboat,newsboat/newsboat,newsboat/newsboat,der-lyse/newsboat,der-lyse/newsboat,der-lyse/newsboat,der-lyse/newsboat,newsboat/newsboat,der-lyse/newsboat,der-lyse/newsboat,newsboat/newsboat,der-lyse/newsboat
bbeefc070d847ff1ed526d412b7f97c5e743b1c1
.cirrus.yml
.cirrus.yml
container: image: golang:latest test_task: modules_cache: fingerprint_script: cat go.sum folder: $GOPATH/pkg/mod build_script: make --debug install_deps all test_script: make --debug install_deps smoke
# Based on the cirrus example. container: image: golang:latest test_task: modules_cache: fingerprint_script: cat go.sum folder: $GOPATH/pkg/mod build_script: make --debug install_deps all test_script: make --debug install_deps smoke
Add a comment to try to force a build on Cirrus.
Add a comment to try to force a build on Cirrus.
YAML
apache-2.0
google/mtail,google/mtail,SuperQ/mtail,SuperQ/mtail
3776e82cd109548e29b4867f6ac465467f7ff223
.travis.yml
.travis.yml
sudo: required language: c compiler: - clang script: - sudo mknod /dev/net/tap c 10 200 - make test
sudo: required language: c compiler: - clang before_install: - sudo apt-get -qq update - sudo apt-get install -qqy arping script: - sudo mknod /dev/net/tap c 10 200 - make test
Install arping in TravisCI Ubuntu 12.04
Install arping in TravisCI Ubuntu 12.04
YAML
mit
saminiir/level-ip,saminiir/level-ip
df2d9a3222910a471f44bdf0de2fe2c93fc2cf75
.travis.yml
.travis.yml
language: php php: - 5.5 - 5.6 - 7.0 - hhvm matrix: allow_failures: - php: 7.0 - php: hhvm before_script: - travis_retry composer self-update - travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source script: - phpunit --coverage-text --coverage-clover=coverage.clover after_script: - php vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover
language: php php: - 5.5 - 5.6 - 7.0 - hhvm matrix: allow_failures: - php: 7.0 - php: hhvm before_script: - travis_retry composer self-update - travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source script: - phpunit --coverage-text --coverage-clover=coverage.clover after_script: - php vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover before_script: - if [$(phpenv version-name) -eq 7.0]; then echo "extension=xdebug.so" >> ~/.phpenv/versions/7.0/etc/php.ini
Add xdebug to PHP 7.0.
Add xdebug to PHP 7.0.
YAML
mit
SebastianBerc/Repositories
b5e59044e1b413244dad2ab0a174ca9918ff5830
.travis.yml
.travis.yml
language: viml sudo: required dist: trusty os: - linux - osx install: - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update && brew install macvim --with-override-system-vim; fi before_script: - vim --version - git clone --depth 1 https://github.com/Shougo/vimproc.vim /tmp/vimproc - git clone --depth 1 https://github.com/vim-jp/vital.vim /tmp/vital - git clone --depth 1 https://github.com/syngan/vim-vimlint /tmp/vim-vimlint - git clone --depth 1 https://github.com/ynkdir/vim-vimlparser /tmp/vim-vimlparser - git clone --depth 1 https://github.com/thinca/vim-themis /tmp/vim-themis - (cd /tmp/vimproc && make) script: - vim --cmd "try | helptags doc/ | catch | cquit | endtry" --cmd quit - sh /tmp/vim-vimlint/bin/vimlint.sh -l /tmp/vim-vimlint -p /tmp/vim-vimlparser -e EVL103=1 -e EVL102.l:_=1 -c func_abort=1 autoload - sh /tmp/vim-themis/bin/themis --runtimepath /tmp/vimproc --runtimepath /tmp/vital --reporter spec
language: viml sudo: required dist: trusty os: - linux - osx install: - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update && brew install macvim --with-override-system-vim; fi before_script: - vim --version - git clone --depth 1 https://github.com/Shougo/vimproc.vim /tmp/vimproc - git clone --depth 1 https://github.com/vim-jp/vital.vim /tmp/vital - git clone --depth 1 https://github.com/syngan/vim-vimlint /tmp/vim-vimlint - git clone --depth 1 https://github.com/ynkdir/vim-vimlparser /tmp/vim-vimlparser - git clone --depth 1 https://github.com/thinca/vim-themis /tmp/vim-themis - (cd /tmp/vimproc && make) script: - vim --cmd "try | helptags doc/ | catch | cquit | endtry" --cmd quit - sh /tmp/vim-vimlint/bin/vimlint.sh -l /tmp/vim-vimlint -p /tmp/vim-vimlparser -e EVL103=1 -e EVL102.l:_=1 -c func_abort=1 autoload - sh /tmp/vim-themis/bin/themis --runtimepath /tmp/vimproc --runtimepath /tmp/vital --reporter dot
Use dot reporter instead of spec
Use dot reporter instead of spec
YAML
mit
lambdalisue/vim-gita,lambdalisue/vim-gita
bbbe198add20281f47a4eb2a3a62bc7d1368f2b2
.travis.yml
.travis.yml
sudo: false language: ruby cache: bundler rvm: - 1.9.3 - 2.0 - 2.1 - 2.2 - 2.3.0 - ruby-head script: - bundle exec rspec matrix: allow_failures: - rvm: ruby-head gemfile: - gemfiles/clockwork_1_3_1.gemfile - gemfiles/clockwork_2_0_0.gemfile - gemfiles/clockwork_2_0_1.gemfile - gemfiles/clockwork_2_0_2.gemfile
sudo: false language: ruby cache: bundler rvm: - 2.2.7 - 2.3.4 - 2.4.1 - ruby-head script: - bundle exec rspec matrix: allow_failures: - rvm: ruby-head gemfile: - gemfiles/clockwork_1_3_1.gemfile - gemfiles/clockwork_2_0_0.gemfile - gemfiles/clockwork_2_0_1.gemfile - gemfiles/clockwork_2_0_2.gemfile
Update ruby version support matrix
Update ruby version support matrix This updates the versions of ruby that will be tested against to only include those that are continuing to be supported by the ruby core team. This also adds in ruby versions that were not previously tested against, and have been released since this list was last updated.
YAML
mit
kevin-j-m/clockwork-test
40f8608fa47755738ea03a69a19878054c019c5e
.travis.yml
.travis.yml
language: node_js node_js: - "4" - "6" - "7" notifications: email: false script: npm run coverage after_script: './node_modules/.bin/codecov --file=./coverage/lcov.info'
language: node_js node_js: - "4" - "6" - "8" notifications: email: false script: npm run coverage after_script: './node_modules/.bin/codecov --file=./coverage/lcov.info'
Test in Node.js 8, not 7
Test in Node.js 8, not 7
YAML
isc
novemberborn/as-i-preach
eb40ba04518b76bc074865114e46e8bc9f549333
.travis.yml
.travis.yml
cache: bundler language: ruby sudo: false rvm: - 2.1 - 2.2.4 - 2.3.0 before_install: - gem install bundler -v '~> 1.10' env: - rails=4.2.0 - rails=5.0.0.beta3 matrix: exclude: - env: rails=5.0.0.beta3 rvm: 2.1
cache: bundler language: ruby sudo: false rvm: - 2.1 - 2.2.4 - 2.3.0 before_install: - gem install bundler -v '~> 1.10' env: - rails=4.2.0 - rails=5.0.0.rc1 matrix: exclude: - env: rails=5.0.0.rc1 rvm: 2.1
Test against Rails 5 RC1
Test against Rails 5 RC1
YAML
mit
EasterAndJay/doorkeeper,moneytree/doorkeeper,jasl/doorkeeper,nbulaj/doorkeeper,doorkeeper-gem/doorkeeper,moneytree/doorkeeper,mavenlink/doorkeeper,doorkeeper-gem/doorkeeper,mavenlink/doorkeeper,nbulaj/doorkeeper,jasl/doorkeeper,mavenlink/doorkeeper,doorkeeper-gem/doorkeeper,jasl/doorkeeper,outstand/doorkeeper,outstand/doorkeeper,outstand/doorkeeper,EasterAndJay/doorkeeper
37bce07f739bc5769adf1eb2229c7b326d3adc57
.travis.yml
.travis.yml
language: haskell install: - cabal install elm-get - sudo ln -s ~/.cabal/bin/elm /usr/local/bin/elm - sudo ln -s ~/.cabal/bin/elm-get /usr/local/bin/elm-get - git clone git://github.com/maxsnew/IO - cd IO - git checkout tags/0.1 - cabal install - sudo ln -s ~/.cabal/bin/elm-io /usr/local/bin/elm-io - cd .. - echo "y" | elm-get install evancz/automaton - npm install jsdom before_script: elm-io --default-ports Tests/Tests.elm tests.js script: node tests.js
language: haskell install: - cabal install elm-get - sudo ln -s ~/.cabal/bin/elm /usr/local/bin/elm - sudo ln -s ~/.cabal/bin/elm-get /usr/local/bin/elm-get - git clone git://github.com/maxsnew/IO - cd IO - git checkout tags/0.1.1 - cabal install - sudo ln -s ~/.cabal/bin/elm-io /usr/local/bin/elm-io - cd .. - echo "n" | elm-get install evancz/automaton - npm install jsdom before_script: elm-io --default-ports Tests/Tests.elm tests.js script: node tests.js
Use latest version of IO
Use latest version of IO
YAML
bsd-3-clause
robertjlooby/elm-test,elm-community/elm-test
ee663c89b5f219165d15109f0625cfc7f6cd9826
.travis.yml
.travis.yml
--- sudo: false language: ruby rvm: - 1.9 - 2.0 - 2.1 - 2.2 - 2.3 - 2.4 - jruby-19mode bundler_args: --without=localdev
--- sudo: false language: ruby rvm: - 1.9 - 2.0 - 2.1 - 2.2 - 2.3 - 2.4 bundler_args: --without=localdev
Remove jruby from CI as requested by @masci
Remove jruby from CI as requested by @masci
YAML
mit
DataDog/dogstatsd-ruby
097e67db235d6cbd3538412d7100202da2b84a91
.travis.yml
.travis.yml
sudo: required dist: trusty language: ruby cache: bundler addons: postgresql: "9.5" services: - postgresql before_script: - npm install bower - RAILS_ENV=test bin/bundle exec rake db:create db:migrate - RAILS_ENV=production bin/bundle exec rake assets:precompile script: bin/rails test test/models/ test/controllers/ test/helpers/ test/mailers/ test/jobs/ rvm: - "2.3.3" - "2.4.0"
sudo: required dist: trusty language: ruby cache: bundler addons: postgresql: "9.6" services: - postgresql before_script: - npm install bower - RAILS_ENV=test bin/bundle exec rake db:create db:migrate - RAILS_ENV=production bin/bundle exec rake assets:precompile script: bin/rails test test/models/ test/controllers/ test/helpers/ test/mailers/ test/jobs/ rvm: - "2.4.1"
Update Travis settings to reflect Fedora 26.
Update Travis settings to reflect Fedora 26.
YAML
mit
pwnall/seven,pwnall/seven,pwnall/igor,pwnall/seven,pwnall/seven,pwnall/igor,pwnall/seven,pwnall/igor,pwnall/igor,pwnall/igor
a8bea52913deef0ebfc0c839c8f57c7972fc184c
.travis.yml
.travis.yml
--- language: bash sudo: false script: - bin/fetch-configlet - bin/configlet .
--- language: clojure sudo: false lein: lein2 jdk: oraclejdk8 script: - bin/fetch-configlet - bin/configlet .
Update Travis config for Clojure
Update Travis config for Clojure
YAML
mit
yurrriq/xclojure,querenker/xclojure,exercism/xclojure,exercism/xclojure,querenker/xclojure,canweriotnow/xclojure
a2aa47f4a5e01b17c089b6f5f0fb4099c5be1b0b
.travis.yml
.travis.yml
notifications: email: false language: go go: 1.8.3 before_install: - sudo ln -nfs /bin/bash /bin/sh - make prepare install: - make dep script: - make unit-test - make package-test - make integration-test - make shell-test - make lint - make vet after_success: - make deploy GITHUB_TOKEN=${GITHUB_TOKEN} branches: only: - master
notifications: email: false language: go go: 1.8.3 before_install: - sudo ln -nfs /bin/bash /bin/sh - make prepare install: - make dep before_script: - git remote set-url --push origin https://${GITHUB_TOKEN}@github.com/ivanilves/lstags.git script: - make unit-test - make package-test - make integration-test - make shell-test - make lint - make vet after_success: - make deploy GITHUB_TOKEN=${GITHUB_TOKEN} branches: only: - master
Set Travis CI to push using GitHub OAuth token
Set Travis CI to push using GitHub OAuth token
YAML
apache-2.0
ivanilves/lstags,ivanilves/lstags
d906daca5c47f6eb90c7419f4e5e771ac5e01ca6
.circleci/config.yml
.circleci/config.yml
version: 2 jobs: build: working_directory: ~/tokite docker: - image: circleci/ruby:2.4.1-node - image: circleci/postgres:9.4.12-alpine steps: - checkout # Bundle install dependencies - run: bundle install --path vendor/bundle # Database setup - run: bundle exec rake db:create - run: RAILS_ENV=test bundle exec rails app:tokite:ridgepole:install app:tokite:ridgepole:apply # Run rspec in parallel - type: shell command: | bundle exec rspec --profile 10 \ --format RspecJunitFormatter \ --out /tmp/test-results/rspec.xml \ --format progress # Save artifacts - type: store_test_results path: /tmp/test-results
version: 2 jobs: build: working_directory: ~/tokite docker: - image: circleci/ruby:2.4.1-node - image: circleci/postgres:9.4.12-alpine steps: - checkout - type: cache-restore key: gemfile-{{ checksum "Gemfile" }} # Bundle install dependencies - run: bundle install --path vendor/bundle - type: cache-save key: gemfile-{{ checksum "Gemfile" }} paths: - vendor/bundle # Database setup - run: bundle exec rake db:create - run: RAILS_ENV=test bundle exec rails app:tokite:ridgepole:install app:tokite:ridgepole:apply # Run rspec in parallel - type: shell command: | bundle exec rspec --profile 10 \ --format RspecJunitFormatter \ --out /tmp/test-results/rspec.xml \ --format progress # Save artifacts - type: store_test_results path: /tmp/test-results
Save vendor/bundle cache on CircleCI
Save vendor/bundle cache on CircleCI
YAML
mit
hogelog/tokite,hogelog/tokite,hogelog/tokite
65eadc41caa3881710e452393bab57959ec87c99
.travis.yml
.travis.yml
language: objective-c xcode_project: CoreDataStack.xcodeproj xcode_scheme: CoreDataStack xcode_sdk: iphonesimulator8.3 osx_image: xcode7 script: - xcodebuild test -scheme 'CoreDataStack' -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO
language: objective-c xcode_project: CoreDataStack.xcodeproj xcode_scheme: CoreDataStack xcode_sdk: iphonesimulator osx_image: xcode7 script: - xcodebuild test -scheme 'CoreDataStack' -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO
Remove hard coded simulator version.
Remove hard coded simulator version.
YAML
mit
binhho/CoreDataStack,gaurav1981/CoreDataStack,bignerdranch/CoreDataStack,Sully73/CoreDataStack,binhho/CoreDataStack,Sully73/CoreDataStack,gaurav1981/CoreDataStack,sugar2010/CoreDataStack,bignerdranch/CoreDataStack,phatblat/CoreDataStack,phatblat/CoreDataStack,sugar2010/CoreDataStack,bignerdranch/CoreDataStack
4cebc4be465196e43d59c4f77d92419db2f50510
.travis.yml
.travis.yml
language: ruby rvm: - 2.4.0 - 2.3.3 - 2.2.6 - 2.1.10 - 2.0.0 - 1.9.3 - rbx-2 - jruby-19mode - jruby-head matrix: allow_failures: - rvm: rbx-2 - rvm: jruby-head sudo: false bundler_args: --without=guard notifications: disabled: true script: - bundle exec rake
language: ruby rvm: - 2.4.0 - 2.3.3 - 2.2.6 - 2.1.10 - 2.0.0 - 1.9.3 - rbx-2 - jruby-19mode - jruby-head matrix: allow_failures: - rvm: rbx-2 - rvm: jruby-head before_install: - gem update --remote bundler - gem update --system sudo: false bundler_args: --without=guard notifications: disabled: true script: - bundle exec rake
Fix a build error on Travis CI by using latest RubyGems
Fix a build error on Travis CI by using latest RubyGems
YAML
mit
bkeepers/dotenv
d3190311b8e585f31343b55d66ebe906cc9343cd
spring-cloud-skipper/src/main/resources/org/springframework/cloud/skipper/io/generic-template.yml
spring-cloud-skipper/src/main/resources/org/springframework/cloud/skipper/io/generic-template.yml
apiVersion: skipper.spring.io/v1 kind: SpringCloudDeployerApplication metadata: {{#metadata.entrySet}} "{{{key}}}": {{{value}}} {{/metadata.entrySet}} spec: resource: "{{{spec.resource}}}" resourceMetadata: "{{{spec.resource}}}:jar:metadata:{{{spec.version}}}" version: "{{{spec.version}}}" applicationProperties: {{#spec.applicationProperties.entrySet}} "{{{key}}}": {{{value}}} {{/spec.applicationProperties.entrySet}} deploymentProperties: {{#spec.deploymentProperties.entrySet}} "{{{key}}}": {{{value}}} {{/spec.deploymentProperties.entrySet}} cfManifest: "{{{spec.cfManifest}}}"
apiVersion: skipper.spring.io/v1 kind: SpringCloudDeployerApplication metadata: {{#metadata.entrySet}} "{{{key}}}": "{{{value}}}" {{/metadata.entrySet}} spec: resource: "{{{spec.resource}}}" resourceMetadata: "{{{spec.resource}}}:jar:metadata:{{{spec.version}}}" version: "{{{spec.version}}}" applicationProperties: {{#spec.applicationProperties.entrySet}} "{{{key}}}": "{{{value}}}" {{/spec.applicationProperties.entrySet}} deploymentProperties: {{#spec.deploymentProperties.entrySet}} "{{{key}}}": "{{{value}}}" {{/spec.deploymentProperties.entrySet}} cfManifest: "{{{spec.cfManifest}}}"
Add quotes back to generic-manifest.yml
Add quotes back to generic-manifest.yml * Format cfManifest entry to new line
YAML
apache-2.0
markpollack/spring-cloud-skipper,markpollack/spring-cloud-skipper,markpollack/spring-cloud-skipper,markpollack/spring-cloud-skipper,markpollack/spring-cloud-skipper
5271233a07ed8b5a4e82201a17d6b831716a191f
.forestry/settings.yml
.forestry/settings.yml
--- new_page_extension: md auto_deploy: false admin_path: static/redac webhook_url: '' sections: - type: directory path: content/post label: Articles create: all match: "**/*" templates: - post - type: document path: config.yaml label: Configuration upload_dir: '' public_path: '' front_matter_path: https://res.cloudinary.com/jamstatic/image/upload/c_scale,f_auto,q_auto,w_1200 use_front_matter_path: true file_template: 'https://res.cloudinary.com/jamstatic/image/upload/c_scale,f_auto,q_auto,w_1028/:filename:' instant_preview: false build: preview_env: - HUGO_ENV=staging - HUGO_VERSION=0.63.2 preview_output_directory: public preview_docker_image: forestryio/hugo:latest mount_path: "/srv" instant_preview_command: hugo server -D -E -F --port 8080 --bind 0.0.0.0 --renderToDisk -d public publish_command: hugo -d public publish_env: - HUGO_ENV=production - HUGO_VERSION=0.63.1 output_directory: public preview_command: hugo -E -F -D -b $DEPLOY_URL -d public version: 0.63.1
--- new_page_extension: md auto_deploy: false admin_path: static/redac webhook_url: '' sections: - type: directory path: content/post label: Articles create: all match: "**/*" templates: - post - type: document path: config.yaml label: Configuration upload_dir: '' public_path: '' front_matter_path: https://res.cloudinary.com/jamstatic/image/upload/c_scale,f_auto,q_auto,w_1200 use_front_matter_path: true file_template: 'https://res.cloudinary.com/jamstatic/image/upload/c_scale,f_auto,q_auto,w_1028/:filename:' instant_preview: true build: preview_env: - HUGO_ENV=staging - HUGO_VERSION=0.63.2 preview_output_directory: public preview_docker_image: forestryio/hugo:latest mount_path: "/srv" instant_preview_command: hugo server -D -E -F --port 8080 --bind 0.0.0.0 --renderToDisk -d public publish_command: hugo -d public publish_env: - HUGO_ENV=production - HUGO_VERSION=0.63.1 output_directory: public preview_command: hugo -E -F -D -b $DEPLOY_URL -d public version: 0.63.1
Update from Forestry.io - Updated Forestry configuration
Update from Forestry.io - Updated Forestry configuration
YAML
mit
jekyll-fr/jekyll-fr.github.io,jekyll-fr/jekyll-fr.github.io,jekyll-fr/jekyll-fr.github.io
a622a2b13f44066a901d545a8c6e730b304e135f
.travis.yml
.travis.yml
sudo: false cache: bundler language: ruby rvm: - 2.2.5 - 2.3.1 before_install: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" - "sleep 5" script: - bundle exec rspec - bundle exec rubocop
sudo: false cache: bundler language: ruby rvm: - 2.2.5 - 2.3.1 - 2.3.3 before_install: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" - "sleep 5" script: - bundle exec rspec - bundle exec rubocop
Add Ruby 2.3.3 to Travis CI configuration.
Add Ruby 2.3.3 to Travis CI configuration.
YAML
mit
Tybot204/pusher-fake,tristandunn/pusher-fake,Tybot204/pusher-fake,tristandunn/pusher-fake
6f06d071af9ad266859141261bd09ab7b94fabaf
.forestry/settings.yml
.forestry/settings.yml
--- new_page_extension: md auto_deploy: false admin_path: webhook_url: sections: - type: heading label: JTemporal - type: document path: _drafts label: Drafts - type: jekyll-posts label: Posts create: all - type: jekyll-pages label: Pages create: all upload_dir: images public_path: "/images" front_matter_path: '' use_front_matter_path: false file_template: ":filename:" build: preview_command: 'bundle exec jekyll build --drafts --unpublished --future -d _site ' publish_command: bundle exec jekyll build -d _site preview_env: - JEKYLL_ENV=staging publish_env: - JEKYLL_ENV=production preview_output_directory: _site output_directory: _site
--- new_page_extension: md auto_deploy: false admin_path: '' webhook_url: sections: - type: heading label: JTemporal - type: document path: _drafts label: Drafts - type: jekyll-posts label: Posts create: all - type: jekyll-pages label: Pages create: all upload_dir: images public_path: "/images" front_matter_path: '' use_front_matter_path: false file_template: ":filename:" build: preview_command: 'bundle exec jekyll build --drafts --unpublished --future -d _site ' publish_command: bundle exec jekyll build -d _site preview_env: - JEKYLL_ENV=staging publish_env: - JEKYLL_ENV=production preview_output_directory: _site output_directory: _site
Update from Forestry.io - Updated Forestry configuration
Update from Forestry.io - Updated Forestry configuration
YAML
mit
jtemporal/jtemporal.github.io,jtemporal/jtemporal.github.io
636764ff2d2e3bd7c0f764c5fd4118e87fd08212
.forestry/settings.yml
.forestry/settings.yml
--- new_page_extension: md auto_deploy: false admin_path: webhook_url: sections: - type: directory path: projects label: Projects create: documents match: "**/*.md" templates: - project - type: directory path: journal label: Journal create: documents match: "**/*.md" templates: - journal - type: heading label: Data - type: directory path: data/authors label: Authors create: documents match: "**/*.json" new_doc_ext: json upload_dir: uploads public_path: "/uploads" front_matter_path: '' use_front_matter_path: false file_template: ":filename:" build: publish_command: gridsome build output_directory: dist
--- new_page_extension: md auto_deploy: false admin_path: webhook_url: sections: - type: directory path: projects label: Projects create: documents match: "**/*.md" templates: - project - type: directory path: journal label: Journal create: documents match: "**/*.md" templates: - journal - type: heading label: Data - type: directory path: data/authors label: Authors create: documents match: "**/*.json" new_doc_ext: json templates: - author upload_dir: uploads public_path: "/uploads" front_matter_path: '' use_front_matter_path: false file_template: ":filename:" build: publish_command: gridsome build output_directory: dist
Update from Forestry.io - Updated Forestry configuration
Update from Forestry.io - Updated Forestry configuration
YAML
mit
gatsbimantico/blog,wkadwaikar/wkadwaikar.github.io,wkadwaikar/wkadwaikar.github.io,gatsbimantico/blog
6c163a8bf6f8a070d3b19bfceedf5505ebad79ed
.travis.yml
.travis.yml
language: ruby sudo: false rvm: - 2.2.5 - 2.3.1 cache: bundler notifications: email: false hipchat: rooms: secure: "Scevf1Onn0h3uNLsJUPx+dyBf878/iMVWW04+GZrThA5609BQwukk1yz7dKI2fOhlwziUo878nnp2UcJ8lxT+C+3g8QG+XYZp4hI4xnRqE38oO+mwLcAPzCTemQC3+6lYY+Yv9Ux9rGZo2WHcMFHNlCPoDhIArY8qm7+BKJu1pw=" on_success: never on_failure: change template: '%{repository}#%{build_number} (%{branch} - %{commit} : %{author}): %{message}'
language: ruby sudo: false rvm: - jruby-9.0.5.0 - jruby-9.1.5.0 - 2.2.5 - 2.3.1 cache: bundler notifications: email: false hipchat: rooms: secure: "Scevf1Onn0h3uNLsJUPx+dyBf878/iMVWW04+GZrThA5609BQwukk1yz7dKI2fOhlwziUo878nnp2UcJ8lxT+C+3g8QG+XYZp4hI4xnRqE38oO+mwLcAPzCTemQC3+6lYY+Yv9Ux9rGZo2WHcMFHNlCPoDhIArY8qm7+BKJu1pw=" on_success: never on_failure: change template: '%{repository}#%{build_number} (%{branch} - %{commit} : %{author}): %{message}'
Test with JRuby on Travis
Test with JRuby on Travis 9.0.5.0 because that's what we currently use, and 9.1.5.0 which is the latest release.
YAML
mit
twingly/twingly-url
ca3d84c6495da90b653792ae5528f96b97f3cb5a
.travis.yml
.travis.yml
# travis-ci.org build file # As CMake is not officially supported we use erlang VMs language: erlang # Settings to try env: - OPTIONS="-DCMAKE_BUILD_TYPE=Release -DOCIO_BUILD_TESTS=yes" # Make sure CMake is installed install: - sudo apt-get install cmake # Run the Build script script: - mkdir _build - cd _build - cmake .. -DCMAKE_INSTALL_PREFIX=../_install $OPTIONS - cmake --build . --target install # Run Tests after_script: - ctest --output-on-failure .
# travis-ci.org build file # https://docs.travis-ci.com/user/languages/cpp language: cpp compiler: - clang - gcc os: - linux - osx env: - OPTIONS="-DCMAKE_BUILD_TYPE=Release -DOCIO_BUILD_TESTS=yes" # Run the Build script script: - mkdir _build - cd _build - cmake .. -DCMAKE_INSTALL_PREFIX=../_install $OPTIONS - cmake --build . --target install # Run Tests after_script: - ctest --output-on-failure .
Update Travis-CI now it officially supports C++ projects
Update Travis-CI now it officially supports C++ projects Also test with clang and gcc, on linux and OS X
YAML
bsd-3-clause
AcademySoftwareFoundation/OpenColorIO,AcademySoftwareFoundation/OpenColorIO,AcademySoftwareFoundation/OpenColorIO,AcademySoftwareFoundation/OpenColorIO,AcademySoftwareFoundation/OpenColorIO
7978ee641948060e09f218a6460bef3ec02b2d59
metadata/de.wikilab.android.ldapsync.yml
metadata/de.wikilab.android.ldapsync.yml
Categories: - System License: Apache-2.0 AuthorName: weller i/o AuthorEmail: [email protected] WebSite: http://www.danielweisser.de/blog SourceCode: https://github.com/max-weller/LDAP-Sync IssueTracker: https://github.com/max-weller/LDAP-Sync/issues Changelog: https://github.com/max-weller/LDAP-Sync/releases AutoName: LDAP Sync Description: |- LDAP synchronization adapter for Android phones. It integrates seamlessly into the Android accounts and allows the synchronization of contacts stored in a LDAP or Active Directory server. RepoType: git Repo: https://github.com/max-weller/LDAP-Sync.git Builds: - versionName: 2.1.3 versionCode: 17 commit: 2.1.3 subdir: app gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: 2.1.3 CurrentVersionCode: 17
Categories: - System License: Apache-2.0 AuthorName: weller i/o AuthorEmail: [email protected] WebSite: http://www.danielweisser.de/blog SourceCode: https://github.com/max-weller/LDAP-Sync IssueTracker: https://github.com/max-weller/LDAP-Sync/issues Changelog: https://github.com/max-weller/LDAP-Sync/releases AutoName: LDAP Sync Description: |- LDAP synchronization adapter for Android phones. It integrates seamlessly into the Android accounts and allows the synchronization of contacts stored in a LDAP or Active Directory server. RepoType: git Repo: https://github.com/max-weller/LDAP-Sync.git Builds: - versionName: 2.1.3 versionCode: 17 commit: 2.1.3 subdir: app gradle: - yes - versionName: 2.1.4 versionCode: 18 commit: 2.1.4 subdir: app gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: 2.1.4 CurrentVersionCode: 18
Update LDAP Sync to 2.1.4 (18)
Update LDAP Sync to 2.1.4 (18)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
4da6c71f003deea5283ce81f91462fbbff97cd56
metadata/io.kuenzler.whatsappwebtogo.yml
metadata/io.kuenzler.whatsappwebtogo.yml
AntiFeatures: - NonFreeNet Categories: - Internet License: MIT SourceCode: https://github.com/92lleo/WhatsappWebToGo IssueTracker: https://github.com/92lleo/WhatsappWebToGo/issues Changelog: https://github.com/92lleo/WhatsappWebToGo/releases AutoName: WhatsApp Web To Go RepoType: git Repo: https://github.com/92lleo/WhatsappWebToGo Builds: - versionName: 1.5.3 versionCode: 28 commit: v1.5.3 subdir: app gradle: - yes - versionName: 1.6.0 versionCode: 29 commit: v1.6.0 subdir: app gradle: - yes - versionName: 1.6.1 versionCode: 30 commit: v1.6.1 subdir: app gradle: - yes - versionName: 1.6.2 versionCode: 31 commit: v1.6.2 subdir: app gradle: - yes - versionName: 1.6.3 versionCode: 32 commit: v1.6.3 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 1.6.3 CurrentVersionCode: 32
AntiFeatures: - NonFreeNet Categories: - Internet License: MIT SourceCode: https://github.com/92lleo/WhatsappWebToGo IssueTracker: https://github.com/92lleo/WhatsappWebToGo/issues Changelog: https://github.com/92lleo/WhatsappWebToGo/releases AutoName: WhatsApp Web To Go RepoType: git Repo: https://github.com/92lleo/WhatsappWebToGo Builds: - versionName: 1.5.3 versionCode: 28 commit: v1.5.3 subdir: app gradle: - yes - versionName: 1.6.0 versionCode: 29 commit: v1.6.0 subdir: app gradle: - yes - versionName: 1.6.1 versionCode: 30 commit: v1.6.1 subdir: app gradle: - yes - versionName: 1.6.2 versionCode: 31 commit: v1.6.2 subdir: app gradle: - yes - versionName: 1.6.3 versionCode: 32 commit: v1.6.3 subdir: app gradle: - yes - versionName: 1.6.4 versionCode: 33 commit: v1.6.4 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 1.6.4 CurrentVersionCode: 33
Update WhatsApp Web To Go to 1.6.4 (33)
Update WhatsApp Web To Go to 1.6.4 (33)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
f53f2251c8d256c9f77d5452cd864d30c0f22a38
.travis.yml
.travis.yml
sudo: false language: php php: - 7.1 - 7.2 - 7.3 - 7.4snapshot - nightly matrix: allow_failures: - php: 7.4snapshot - php: nightly fast_finish: true install: # --ignore-platform-reqs, because https://github.com/FriendsOfPHP/PHP-CS-Fixer/pull/2722 - composer update -n --prefer-dist - wget https://github.com/php-coveralls/php-coveralls/releases/download/v2.1.0/php-coveralls.phar - chmod +x php-coveralls.phar - mkdir -p coverage/cov coverage/bin - wget https://phar.phpunit.de/phpcov.phar -O coverage/bin/phpcov - chmod +x coverage/bin/phpcov - composer show script: - AMPHP_TEST_REDIS_INSTANCE=tcp://localhost:6379 phpdbg -qrr vendor/bin/phpunit --verbose --coverage-php coverage/cov/main.cov - PHP_CS_FIXER_IGNORE_ENV=1 php vendor/bin/php-cs-fixer --diff --dry-run -v fix after_script: - coverage/bin/phpcov merge --clover build/logs/clover.xml coverage/cov - travis_retry ./php-coveralls.phar -v cache: directories: - $HOME/.composer/cache - $HOME/.php-cs-fixer - $HOME/.local
sudo: false language: php php: - 7.1 - 7.2 - 7.3 - 7.4snapshot - nightly services: - redis-server matrix: allow_failures: - php: 7.4snapshot - php: nightly fast_finish: true install: # --ignore-platform-reqs, because https://github.com/FriendsOfPHP/PHP-CS-Fixer/pull/2722 - composer update -n --prefer-dist - wget https://github.com/php-coveralls/php-coveralls/releases/download/v2.1.0/php-coveralls.phar - chmod +x php-coveralls.phar - mkdir -p coverage/cov coverage/bin - wget https://phar.phpunit.de/phpcov.phar -O coverage/bin/phpcov - chmod +x coverage/bin/phpcov - composer show script: - AMPHP_TEST_REDIS_INSTANCE=tcp://localhost:6379 phpdbg -qrr vendor/bin/phpunit --verbose --coverage-php coverage/cov/main.cov - PHP_CS_FIXER_IGNORE_ENV=1 php vendor/bin/php-cs-fixer --diff --dry-run -v fix after_script: - coverage/bin/phpcov merge --clover build/logs/clover.xml coverage/cov - travis_retry ./php-coveralls.phar -v cache: directories: - $HOME/.composer/cache - $HOME/.php-cs-fixer - $HOME/.local
Use redis service on Travis
Use redis service on Travis
YAML
mit
amphp/redis
1906fe4bad1b99275af151e6f51f5980b780da86
.travis.yml
.travis.yml
language: ruby cache: - bundler - directories: - $HOME/librarian-puppet env: global: - LIBRARIAN_PUPPET_TMP="$HOME/librarian-puppet" matrix: - PUPPET_VERSION="3.4.3" # Version installed on Trusty - PUPPET_VERSION="~> 3.8.0" # Latest 3.x version - PUPPET_VERSION="~> 4.3.0" # Latest 4.x version script: bundle exec rake test
language: ruby cache: - bundler - directories: - $HOME/librarian-puppet env: global: - LIBRARIAN_PUPPET_TMP="$HOME/librarian-puppet" matrix: include: # Puppet 3.4.3 in the standard repos for Ubuntu 14.04 - rvm: 1.9.3 env: PUPPET_VERSION="3.4.3" # Puppetlabs ("vanilla") release tracks latest 3.x version - rvm: 1.9.3 env: PUPPET_VERSION="~> 3" # Puppetlabs PC1 release bundles it's own Ruby 2.1 and tracks Puppet 4.x - rvm: 2.1.9 env: PUPPET_VERSION="~> 4" # Latest 4.x version before_install: - gem install bundler script: - bundle exec rake test
Update Travis file to latest standard
Update Travis file to latest standard * Puppet 3.x and 4.x * Ruby 2.1 for Puppet 4 * Update bundler before install
YAML
bsd-3-clause
praekeltfoundation/puppet-marathon,praekeltfoundation/puppet-marathon
e9bea322597143aa6ac675e8523e859c9f283312
.travis.yml
.travis.yml
language: php php: - 5.5 - 5.6 before_script: - composer self-update - composer update script: - php ./vendor/bin/phpunit --coverage-text --coverage-clover ./build/logs/clover.xml - ./vendor/bin/php-cs-fixer fix -v --diff --dry-run after_script: - php vendor/bin/coveralls -v
language: php php: - 5.5 - 5.6 before_script: - composer self-update - composer update script: - php ./vendor/bin/phpunit --coverage-text --coverage-clover ./build/logs/clover.xml - ./vendor/bin/php-cs-fixer fix -v --diff --dry-run after_script: - php vendor/bin/coveralls -v notifications: webhooks: urls: - https://webhooks.gitter.im/e/61c75218816eebde4486 on_success: change # options: [always|never|change] default: always on_failure: always # options: [always|never|change] default: always on_start: never # options: [always|never|change] default: always
Add webhook for gitter chat
Add webhook for gitter chat
YAML
bsd-3-clause
codeliner/event-store,prooph/event-store
9c45a76c7432bc7007a62a81754e8d7933c33ee3
.travis.yml
.travis.yml
language: node_js node_js: - "6.3.1" deploy: provider: npm email: [email protected] api_key: $NPM_TOKEN on: tags: true after_success: - codeclimate-test-reporter < ./coverage/lcov.info addons: code_climate: repo_token: $CODE_CLIMATE_TOKEN notifications: email: recipients: - [email protected] on_success: never # default: change on_failure: always # default: always slack: $SLACK_TOKEN
language: node_js node_js: - "6.3.1" deploy: - provider: npm email: [email protected] api_key: $NPM_TOKEN on: tags: true - provider: s3 access_key_id: $AWS_ACCESS_KEY secret_access_key: $AWS_SECRET_KEY bucket: "travis-demo-client" skip_cleanup: true on: tags: true after_success: - codeclimate-test-reporter < ./coverage/lcov.info addons: code_climate: repo_token: $CODE_CLIMATE_TOKEN notifications: email: recipients: - [email protected] on_success: never # default: change on_failure: always # default: always slack: $SLACK_TOKEN
Deploy on S3 on tags
Deploy on S3 on tags
YAML
mit
thomaswinckell/travis-demo-client,thomaswinckell/travis-demo-client,thomaswinckell/travis-demo-client
a7d716b3c344c299374f24095fcd42bb4efa5f1e
.travis.yml
.travis.yml
language: ruby script: rake test branches: only: - master services: - redis-server rvm: - 1.9.3 - 2.0.0 - jruby-19mode - rbx-19mode - ruby-head - jruby-head jdk: - openjdk6 - openjdk7 - oraclejdk7 matrix: exclude: - rvm: 2.0.0 jdk: openjdk7 - rvm: 2.0.0 jdk: openjdk6 - rvm: 1.9.3 jdk: openjdk7 - rvm: 1.9.3 jdk: openjdk6 - rvm: rbx-19mode jdk: openjdk7 - rvm: rbx-19mode jdk: openjdk6 - rvm: ruby-head jdk: openjdk7 - rvm: ruby-head jdk: openjdk6 allow_failures: - rvm: rbx-19mode - rvm: ruby-head - rvm: jruby-head
language: ruby script: rake test branches: only: - master services: - redis-server rvm: - 1.9.3 - 2.0.0 - 2.1.1 - jruby-19mode - rbx-19mode - ruby-head - jruby-head jdk: - openjdk6 - openjdk7 - oraclejdk7 matrix: exclude: - rvm: 2.0.0 jdk: openjdk7 - rvm: 2.0.0 jdk: openjdk6 - rvm: 1.9.3 jdk: openjdk7 - rvm: 1.9.3 jdk: openjdk6 - rvm: rbx-19mode jdk: openjdk7 - rvm: rbx-19mode jdk: openjdk6 - rvm: ruby-head jdk: openjdk7 - rvm: ruby-head jdk: openjdk6 allow_failures: - rvm: rbx-19mode - rvm: ruby-head - rvm: jruby-head
Add Travis support for Ruby 2.1.1
Add Travis support for Ruby 2.1.1 Add Travis support for Ruby 2.1.1
YAML
bsd-3-clause
danilogcarolino/sidetiq,vayu-technology/sidetiq,Altonymous/sidetiq,talentpad/sidetiq,sfroehler/sidetiq,slategroup/sidetiq,rjocoleman/sidetiq,atpay/sidetiq,tomoyuki-yanagisawa/sidetiq-mod,grzlus/sidetiq,brennovich/sidetiq,kickserv/sidetiq,vayu-technology/sidetiq,akhiln/sidetiq,flowerett/sidetiq,endofunky/sidetiq,stanchan/sidetiq,b1tw1se/sidetiq,atpay/sidetiq,b1tw1se/sidetiq,tomoyuki-yanagisawa/sidetiq-mod,slategroup/sidetiq,akhiln/sidetiq,rjocoleman/sidetiq,flowerett/sidetiq,brennovich/sidetiq,danilogcarolino/sidetiq,PaulMest/sidetiq,kickserv/sidetiq,sfroehler/sidetiq,tobiassvn/sidetiq,PaulMest/sidetiq,grzlus/sidetiq,endofunky/sidetiq,stanchan/sidetiq,talentpad/sidetiq,tobiassvn/sidetiq
957a3fec3f667310c353a98e3b8ba5d02fee89f6
.travis.yml
.travis.yml
language: php dist: xenial php: - 5.6 - 7.0 - 7.1 - 7.2 - 7.3 - 7.4 matrix: include: - name: PHPStan php: 7.4 before_script: - travis_retry composer update --no-interaction --no-dev - curl -L https://github.com/phpstan/phpstan/releases/download/0.12.32/phpstan.phar -o phpstan.phar script: - php phpstan.phar analyse --no-progress before_script: - travis_retry composer update --no-interaction script: - vendor/bin/phpunit --verbose --coverage-text
language: php dist: xenial php: - 5.6 - 7.0 - 7.1 - 7.2 - 7.3 - 7.4 matrix: include: - name: PHPStan php: 7.4.7 before_script: - travis_retry composer update --no-interaction --no-dev - curl -L https://github.com/phpstan/phpstan/releases/download/0.12.32/phpstan.phar -o phpstan.phar script: - php phpstan.phar analyse --no-progress before_script: - travis_retry composer update --no-interaction script: - vendor/bin/phpunit --verbose --coverage-text
Use PHP 7.4.7 to run PHPStan
Use PHP 7.4.7 to run PHPStan
YAML
mit
m4tthumphrey/php-gitlab-api
3361303da6b383f149c077a95bb9b09ca849f6be
.travis.yml
.travis.yml
language: php php: - 5.6 - 5.5 - 5.4 - 5.3 - hhvm script: phpunit
language: php php: - 5.6 - 5.5 - 5.4 - 5.3 - hhvm before_script: - composer self-update script: - phpunit
Update composer before running tests
Update composer before running tests
YAML
mit
hnq90/Gettext,icebird93/Gettext,oscarotero/Gettext,oscarotero/Gettext,hnq90/Gettext,PSF1/Gettext,PSF1/Gettext,icebird93/Gettext
f3669f04ef4d538a3e98df6218028120b4cdaa8d
.travis.yml
.travis.yml
language: ruby sudo: required rvm: - 2.1 - 2.2 - 2.3.1 install: - sudo apt-get update -qq - sudo apt-get install -qq libpcap-dev - gem install bundler - bundler install --path vendor/bundle --jobs=3 --retry=3 script: - bundler exec rake - sudo bundler exec rake spec:sudo
language: ruby sudo: required rvm: - 2.1 - 2.2 - 2.3.1 install: - sudo apt-get update -qq - sudo apt-get install -qq libpcap-dev - sudo gem install bundler - bundler install --path vendor/bundle --jobs=3 --retry=3 script: - bundler exec rake - sudo bundler exec rake spec:sudo
Add sudo on installing bundler to have it as root
Add sudo on installing bundler to have it as root
YAML
mit
sdaubert/packetgen
c94c02e110945c6aa75198db4e27d17a46e7fa49
.circleci/config.yml
.circleci/config.yml
# Javascript Node CircleCI 2.0 configuration file # # Check https://circleci.com/docs/2.0/language-javascript/ for more details # version: 2 jobs: build: docker: # specify the version you desire here - image: circleci/node:8.11.4 # Specify service dependencies here if necessary # CircleCI maintains a library of pre-built images # documented at https://circleci.com/docs/2.0/circleci-images/ # - image: circleci/mongo:3.4.4 working_directory: ~/repo steps: - checkout # Download and cache dependencies - restore_cache: keys: - v1-dependencies-{{ checksum "package.json" }} # fallback to using the latest cache if no exact match is found - v1-dependencies- - run: yarn install - save_cache: paths: - node_modules key: v1-dependencies-{{ checksum "package.json" }} # run eslint - run: yarn eslint
# Javascript Node CircleCI 2.0 configuration file # # Check https://circleci.com/docs/2.0/language-javascript/ for more details # version: 2 jobs: build: docker: # specify the version you desire here - image: circleci/node:10.16 # Specify service dependencies here if necessary # CircleCI maintains a library of pre-built images # documented at https://circleci.com/docs/2.0/circleci-images/ # - image: circleci/mongo:3.4.4 working_directory: ~/repo steps: - checkout # Download and cache dependencies - restore_cache: keys: - v1-dependencies-{{ checksum "package.json" }} # fallback to using the latest cache if no exact match is found - v1-dependencies- - run: yarn install - save_cache: paths: - node_modules key: v1-dependencies-{{ checksum "package.json" }} # run eslint - run: yarn eslint
Update CircleCI Node.js Docker image
Update CircleCI Node.js Docker image
YAML
mit
ocetnik/react-native-background-timer,ocetnik/react-native-background-timer,ocetnik/react-native-background-timer
a5614ec03b75017723c8e7fbac28acf3727b43ab
.circleci/config.yml
.circleci/config.yml
version: 2 jobs: minecraft_server: docker: - image: circleci/buildpack-deps:18.10 steps: - checkout - setup_remote_docker - run: docker build minecraft-server workflows: version: 2 build: jobs: - minecraft_server
version: 2 jobs: minecraft_server: docker: - image: circleci/buildpack-deps:18.10 steps: - checkout - setup_remote_docker - run: docker build -t mc:$CIRCLE_BUILD_NUM minecraft-server - run: name: Test default version and type no_output_timeout: "10s" command: | docker run -t --rm -e EULA=TRUE mc:$CIRCLE_BUILD_NUM | grep "[Server thread/INFO]: Done" workflows: version: 2 build: jobs: - minecraft_server
Add testing of minecraft-server image in CircleCI
Add testing of minecraft-server image in CircleCI
YAML
apache-2.0
itzg/dockerfiles
fdd72b5967d76d8cb19258df98b6a47997811bc8
.circleci/config.yml
.circleci/config.yml
version: 2.0 jobs: build: docker: - image: clojure:lein-2.8.1 environment: - DB_PORT: 5432 - CLOJARS_ENVIRONMENT: test - image: postgres:12.1 environment: - POSTGRES_USER=clojars - POSTGRES_PASSWORD=clojars - POSTGRES_DB=clojars working_directory: ~/clojars steps: - checkout - restore_cache: keys: - clojars-{{ checksum "project.clj" }} - run: lein deps - save_cache: paths: - $HOME/.m2 - $HOME/.lein key: clojars-{{ checksum "project.clj" }} - run: lein do run -m user/migrate, test, uberjar - store_test_results: path: target/test-results - run: mv target/uberjar/clojars-web-*-standalone.jar clojars-uberjar.jar - store_artifacts: path: clojars-uberjar.jar destination: uberjar
version: 2.0 jobs: build: docker: - image: clojure:lein-2.8.1 environment: - DB_PORT: 5432 - CLOJARS_ENVIRONMENT: test - image: postgres:12.1 environment: - POSTGRES_USER=clojars - POSTGRES_PASSWORD=clojars - POSTGRES_DB=clojars working_directory: ~/clojars steps: - checkout - restore_cache: keys: - clojars-{{ checksum "project.clj" }} - run: lein deps - save_cache: paths: - $HOME/.m2 - $HOME/.lein key: clojars-{{ checksum "project.clj" }} - run: lein do run -m user/migrate, test, uberjar - run: ./bin/clj-kondo --lint src test - store_test_results: path: target/test-results - run: mv target/uberjar/clojars-web-*-standalone.jar clojars-uberjar.jar - store_artifacts: path: clojars-uberjar.jar destination: uberjar
Add clj-kondo linting to CI build
Add clj-kondo linting to CI build
YAML
epl-1.0
ato/clojars-web,ato/clojars-web,tobias/clojars-web,tobias/clojars-web,clojars/clojars-web,clojars/clojars-web,tobias/clojars-web,clojars/clojars-web
9fdb3db0eff4bb531e2a189c4f548a6000131830
.travis.yml
.travis.yml
sudo: required dist: trusty language: node_js branches: only: - master - develop node_js: - 8.16.* cache: - pip - yarn install: - pip install --user awscli before_script: - yarn script: ./travis/build.sh deploy: - provider: script script: ./travis/deploy.sh skip_cleanup: true on: repo: sendgrid/docs all_branches: true condition: $TRAVIS_BRANCH = develop || $TRAVIS_BRANCH = master - provider: script script: ./travis/deploy_open_source.sh skip_cleanup: true on: repo: sendgrid/docs all_branches: true condition: $TRAVIS_BRANCH = develop after_deploy: ./travis/after_deploy.sh
sudo: required dist: trusty language: node_js branches: only: - master - develop node_js: - 12.16.* cache: - pip - yarn install: - pip install --user awscli before_script: - yarn script: ./travis/build.sh deploy: - provider: script script: ./travis/deploy.sh skip_cleanup: true on: repo: sendgrid/docs all_branches: true condition: $TRAVIS_BRANCH = develop || $TRAVIS_BRANCH = master - provider: script script: ./travis/deploy_open_source.sh skip_cleanup: true on: repo: sendgrid/docs all_branches: true condition: $TRAVIS_BRANCH = develop after_deploy: ./travis/after_deploy.sh
Upgrade Node version from 8 to 12
Upgrade Node version from 8 to 12
YAML
mit
sendgrid/docs,Whatthefoxsays/docs,Whatthefoxsays/docs,Whatthefoxsays/docs,sendgrid/docs,sendgrid/docs
dc32d25a4eaa0a87a93199f80f21d6f902676166
.travis.yml
.travis.yml
notifications: email: on_success: never on_failure: change env: global: - DOTFILES_PATH=~/.dotfiles matrix: include: - os: linux sudo: required addons: apt: sources: - debian-sid packages: - shellcheck - os: osx before_install: - brew update - brew install shellcheck install: - curl -L https://raw.githubusercontent.com/jmlntw/dotfiles/master/bin/dotfiles | bash before_script: - cd "${DOTFILES_PATH}" script: - bin/dotfiles test branches: only: - master
notifications: email: on_success: never on_failure: change env: global: - DOTFILES_PATH=~/.dotfiles matrix: include: - os: linux sudo: required addons: apt: sources: - debian-sid packages: - shellcheck #- os: osx # before_install: # - brew update # - brew install shellcheck install: - curl -L https://raw.githubusercontent.com/jmlntw/dotfiles/master/bin/dotfiles | bash before_script: - cd "${DOTFILES_PATH}" script: - bin/dotfiles test branches: only: - master
Remove OS X build configuration temporarily
Remove OS X build configuration temporarily
YAML
mit
jmlntw/dotfiles,jmlntw/dotfiles
45d3974c9357fe8e34ed580ea878a9e7b1689790
.travis.yml
.travis.yml
rvm: - 1.8.7 - 1.9.2 - 1.9.3 - ree - jruby-18mode - jruby-19mode - rbx-18mode - rbx-19mode branches: only: - master env: - GUARD_SLEEP=1 notifications: recipients: - [email protected] - [email protected] - [email protected] - [email protected] irc: "irc.freenode.org#guard"
rvm: - 1.8.7 - 1.9.2 - 1.9.3 - ruby-head - ree #- jruby-18mode #- jruby-19mode #- jruby-head - rbx-18mode - rbx-19mode branches: only: - master env: - GUARD_SLEEP=1 notifications: recipients: - [email protected] - [email protected] - [email protected] - [email protected] irc: "irc.freenode.org#guard"
Revert "Try JRuby on Travis CI."
Revert "Try JRuby on Travis CI." This reverts commit 420d3efc10bd7a08b1f3dd686a97919340b7ae63.
YAML
mit
pjump/guard,ginkel/guard,yujinakayama/guard,baberthal/guard,100star/guard,sdgdsffdsfff/guard,guard/guard,garettarrowood/guard,sideci-sample/sideci-sample-guard
5f35c95faadab0ae53173cb64330cfa983a085bb
.travis.yml
.travis.yml
language: scala jdk: - oraclejdk8 scala: - 2.11.6 script: - cd code - sbt ++$TRAVIS_SCALA_VERSION +publishLocal - cd ../test-app - sbt ++$TRAVIS_SCALA_VERSION -DplayTestVersion=2.4.0 +test after_success: - ! '[[ $TRAVIS_BRANCH == "master" ]] && { sbt +publish; };' env: global: - secure: lWiAEXvfiZWpdhly/x9OHewK2xwLHFH32m5KbeYqGnNxpzJLrR0nSXUDMJabKQZ8msbqh7MUBSgCsWKhI0cqYO/rq22kAZGzKj3sHShe0Eg8uNGb4lMbU8PqWzYfXSfMf2pmnrrNpWLlCkHXr7WKwr+7QGS97D2w/7pOoIb19q8= - secure: q/WADPRt9glUwpu0Gi63FDiHbG0CKcKqhsWz5ihULxQErck3gKpcIqeoM5z3i+UWeA36d/h2hcPUG0pso4ro888FFC4ZWjuz/LNn0XupktdLcfCERRKqNCe6+DvIbgS8R3BbTy76TauS18VG31glXS9KUC6uFmGlzLPx+uPoPVc=
language: scala jdk: - oraclejdk8 scala: - 2.11.6 script: - cd code - sbt ++$TRAVIS_SCALA_VERSION +publishLocal - cd ../test-app - sbt ++$TRAVIS_SCALA_VERSION -DplayTestVersion=2.4.0 +test - cd ../code after_success: - ! '[[ $TRAVIS_BRANCH == "master" ]] && { sbt +publish; };' env: global: - secure: lWiAEXvfiZWpdhly/x9OHewK2xwLHFH32m5KbeYqGnNxpzJLrR0nSXUDMJabKQZ8msbqh7MUBSgCsWKhI0cqYO/rq22kAZGzKj3sHShe0Eg8uNGb4lMbU8PqWzYfXSfMf2pmnrrNpWLlCkHXr7WKwr+7QGS97D2w/7pOoIb19q8= - secure: q/WADPRt9glUwpu0Gi63FDiHbG0CKcKqhsWz5ihULxQErck3gKpcIqeoM5z3i+UWeA36d/h2hcPUG0pso4ro888FFC4ZWjuz/LNn0XupktdLcfCERRKqNCe6+DvIbgS8R3BbTy76TauS18VG31glXS9KUC6uFmGlzLPx+uPoPVc=
Change back to code directory to publish
Change back to code directory to publish
YAML
apache-2.0
schaloner/deadbolt-2-java,mkurz/deadbolt-2-java,schaloner/deadbolt-2-java,mkurz/deadbolt-2-java
28a7d43ba974c08210e135a5ac363b988991546f
.travis.yml
.travis.yml
language: rust rust: - stable - nightly sudo: false script: - cargo build --features=ssl - cargo test --features=ssl env: global: secure: DUE2yG7/ASacYARIs7nysUAUhK86AqwE/PdQ3j+D5dqzxs3IOMSOcc7PA1r2w3FkXd52rENCYqKz2iReniJn4fG5S3Q+NbcfaYkhS/6P1y0sQB8yIIVeBRf/Bo2bR2P5TRh+piYWDmqYLUvsQ0+DpQ78MRA6HSxz7gCKpkZS4Y4= after_success: 'curl https://raw.githubusercontent.com/iron-bot/build-doc/master/build-doc.sh | sh '
language: rust rust: - stable - nightly sudo: false script: - cargo build - cargo test - cargo build --features=ssl - cargo test --features=ssl env: global: secure: DUE2yG7/ASacYARIs7nysUAUhK86AqwE/PdQ3j+D5dqzxs3IOMSOcc7PA1r2w3FkXd52rENCYqKz2iReniJn4fG5S3Q+NbcfaYkhS/6P1y0sQB8yIIVeBRf/Bo2bR2P5TRh+piYWDmqYLUvsQ0+DpQ78MRA6HSxz7gCKpkZS4Y4= after_success: 'curl https://raw.githubusercontent.com/iron-bot/build-doc/master/build-doc.sh | sh '
Test both with and without SSL on Travis CI
Test both with and without SSL on Travis CI
YAML
mit
dorfsmay/iron,ahwatts/iron,reem/iron,iron/iron
60eca3e38e8ee7979c24981d0513e6762d63602c
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.0.0 services: - mongodb before_script: - rake db:mongoid:create_indexes notifications: campfire: rooms: - secure: "eEuzoYFXLPeIMt+zHGzZp6XCvbfxRDe8FA3kVwrNRB0zoOktPRZXD9O8ng2z\nx2Yg8C7i1unstuW0bjPvwphpdxJOTFSxliw6P4Xk1Y9HnTYQqqUbDat/zL9c\nAyjYezuRQgYFSBP2BgNZ2RL9RiLSyLQBWhcHGB0yBS6rsheKWbk=" on_success: change on_failure: always
language: ruby rvm: - 2.0.0 services: - mongodb before_script: - rake db:mongoid:create_indexes notifications: campfire: rooms: - secure: "eEuzoYFXLPeIMt+zHGzZp6XCvbfxRDe8FA3kVwrNRB0zoOktPRZXD9O8ng2z\nx2Yg8C7i1unstuW0bjPvwphpdxJOTFSxliw6P4Xk1Y9HnTYQqqUbDat/zL9c\nAyjYezuRQgYFSBP2BgNZ2RL9RiLSyLQBWhcHGB0yBS6rsheKWbk=" on_success: change on_failure: always
Remove 1.9.3 support from Travis config
Remove 1.9.3 support from Travis config A successful Heroku deploy requires us to specify a version of Ruby in our Gemfile. Since we're developing with Ruby 2.0.0, that's what's specified in the Gemfile. Although Travis builds have been passing on 1.9.3, we can't guarantee that version will always be supported. Therefore, I am telling Travis to only run the build against Ruby 2.0.0
YAML
bsd-3-clause
appropriate/ohana-web-search-la,marks/dmvpmh-ohana-web-search,folklabs/cc-web-search,smcgov/SMC-Connect,ellpee/ohana-web-search,smcgov/SMC-Connect,wesley1001/ohana-web-search,codeforamerica/ohana-web-search,ellpee/ohana-web-search,noahpatterson/DCOpen211DCConnect,volkanunsal/nyc-prepared-search,smcgov/SMC-Connect,marks/dmvpmh-ohana-web-search,marks/dmvpmh-ohana-web-search,cderenburger/win211-ohana-web-search,noahpatterson/DCOpen211DCConnect,CodeforBirmingham/ohana-web-search,folklabs/cc-web-search,wesley1001/ohana-web-search,volkanunsal/nyc-prepared-search,hackforla/ohana-web-search-la,folklabs/cc-web-search,appropriate/ohana-web-search,volkanunsal/nyc-prepared-search,appropriate/ohana-web-search,codeforamerica/ohana-web-search,hackforla/ohana-web-search-la,CodeforBirmingham/ohana-web-search,hackforla/ohana-web-search-la,folklabs/cc-web-search,wesley1001/ohana-web-search,cderenburger/win211-ohana-web-search,codeforamerica/ohana-web-search,appropriate/ohana-web-search,CodeforBirmingham/ohana-web-search,appropriate/ohana-web-search,ellpee/ohana-web-search,appropriate/ohana-web-search-la,smcgov/SMC-Connect,appropriate/ohana-web-search-la,cderenburger/win211-ohana-web-search,codeforamerica/ohana-web-search,appropriate/ohana-web-search-la,wesley1001/ohana-web-search,hackforla/ohana-web-search-la,CodeforBirmingham/ohana-web-search,ellpee/ohana-web-search,marks/dmvpmh-ohana-web-search,cderenburger/win211-ohana-web-search,volkanunsal/nyc-prepared-search
62b9a0c54f6c2b842e9af4e0a2b49a85d008eaa0
.travis.yml
.travis.yml
language: ruby rvm: - 1.8.7 - 1.9.3 - 2.0.0 - 2.1.1 - ruby-head
language: ruby rvm: - 1.8.7 - 1.9.3 - 2.1.5 - 2.2.0 - ruby-head
Update Travis CI ruby versions
Update Travis CI ruby versions
YAML
bsd-3-clause
ItaiLeibowitz/rb-libsvm,ItaiLeibowitz/rb-libsvm,ItaiLeibowitz/rb-libsvm
af3d42817822becb94acba4ba36ee8a30e150623
automation/ansible/roles/common/tasks/main.yml
automation/ansible/roles/common/tasks/main.yml
--- # file: roles/common/tasks/main.yml - name: make sure debootstrap is installed shell: type debootstrap - name: make sure rinse is installed shell: type rinse - name: make sure docker is running service: name=docker state=running - name: execute stage 0 build shell: sudo roles/common/files/stage-0.sh - name: execute stage 1 build script: stage-1.sh debian7-amd64.dockerfile
--- # file: roles/common/tasks/main.yml - name: make sure debootstrap is installed shell: type debootstrap - name: make sure rinse is installed shell: type rinse - name: make sure docker is running service: name=docker state=running - name: execute stage 0 build shell: sudo roles/build/files/stage-0.sh - name: execute stage 1 build shell: roles/build/files/stage-1.sh roles/build/files/debian7-amd64.dockerfile
Make stage-1 execution explicit by using shell module, instead of script module.
Make stage-1 execution explicit by using shell module, instead of script module.
YAML
apache-2.0
locaweb/leela,locaweb/leela,locaweb/leela,locaweb/leela,locaweb/leela
69a3fe1a0f574b2700ec305a9dbd641e19e537b1
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "pypy" - "3.3" - "3.4" install: # Travis uses an outdated PyPy, this installs the most recent one. - "[[ ${TOX_ENV} == pypy ]] && sudo add-apt-repository -y ppa:pypy/ppa || true" - "[[ ${TOX_ENV} == pypy ]] && sudo apt-get -y update && sudo apt-get -y install pypy || true" - "[[ ${TOX_ENV} == pypy ]] && sudo rm -rf /usr/local/pypy/bin || true" - pip install tox script: - tox -e $(echo py$TRAVIS_PYTHON_VERSION | tr -d . | sed -e 's/pypypy/pypy/') branches: except: - website notifications: email: false irc: channels: - "chat.freenode.net#pocoo" on_success: change on_failure: always use_notice: true skip_join: true
language: python python: - "2.6" - "2.7" - "pypy" - "3.3" - "3.4" install: # Travis uses an outdated PyPy, this installs the most recent one. - "[[ ${TRAVIS_PYTHON_VERSION} == pypy ]] && sudo add-apt-repository -y ppa:pypy/ppa || true" - "[[ ${TRAVIS_PYTHON_VERSION} == pypy ]] && sudo apt-get -y update && sudo apt-get -y install pypy || true" - "[[ ${TRAVIS_PYTHON_VERSION} == pypy ]] && sudo rm -rf /usr/local/pypy/bin || true" - pip install tox script: - tox -e $(echo py$TRAVIS_PYTHON_VERSION | tr -d . | sed -e 's/pypypy/pypy/') branches: except: - website notifications: email: false irc: channels: - "chat.freenode.net#pocoo" on_success: change on_failure: always use_notice: true skip_join: true
Remove reference to old variable
Remove reference to old variable
YAML
bsd-3-clause
magne4000/werkzeug,edcomstock/werkzeug,joshfriend/werkzeug,zhaoguixu/werkzeug,ThiefMaster/werkzeug,pjknkda/werkzeug,VishvajitP/werkzeug,VishvajitP/werkzeug,godfreyy/werkzeug,liaoqingwei/werkzeug,miumok98/werkzeug,DasIch/werkzeug,sonnyhu/werkzeug,snordhausen/werkzeug,syrrim/werkzeug,mitsuhiko/werkzeug,nateprewitt/werkzeug,fkazimierczak/werkzeug,pallets/werkzeug,Eagles2F/werkzeug,aniketshukla/werkzeug,aniketshukla/werkzeug,EasonYi/werkzeug,tomviner/werkzeug,syrrim/werkzeug,miumok98/werkzeug,jaapz/werkzeug,liaoqingwei/werkzeug,ThiefMaster/werkzeug,untitaker/werkzeug,dkdewitt/werkzeug,deadly11ama/werkzeug,untitaker/werkzeug,kmee/werkzeug,Eagles2F/werkzeug,nateprewitt/werkzeug,devendra12/werkzeug-1,kmee/werkzeug,joshfriend/werkzeug,dkdewitt/werkzeug,tomviner/werkzeug,bb-zhang/werkzeug,snordhausen/werkzeug,DasIch/werkzeug,sonnyhu/werkzeug,EasonYi/werkzeug,DasIch/werkzeug,EasonYi/werkzeug,pallets/werkzeug,miumok98/werkzeug,magne4000/werkzeug,pjknkda/werkzeug,untitaker/werkzeug,j-fuentes/werkzeug,deadly11ama/werkzeug,godfreyy/werkzeug,liaoqingwei/werkzeug,jaapz/werkzeug,j-fuentes/werkzeug,edcomstock/werkzeug,fkazimierczak/werkzeug,devendra12/werkzeug-1,tomviner/werkzeug,tymofij/werkzeug,bb-zhang/werkzeug,godfreyy/werkzeug,mitsuhiko/werkzeug,tymofij/werkzeug,fkazimierczak/werkzeug,snordhausen/werkzeug,zhaoguixu/werkzeug,pallets/werkzeug
fceb289309a845f6e8d1b0c4bf87f8a620be24bc
.travis.yml
.travis.yml
### Config file for automatic testing at travis-ci.org dist: xenial language: python python: - "3.7" - "3.6" - "3.5" - "3.4" - "3.3" - "2.7" - "2.6" - "pypy" ### command to install external dependencies # using sudo instead of rvmsudo was causing some PATH problems: # see http://stackoverflow.com/questions/6278047/could-not-find-rails-0-amongst-gemloaderror before_install: - sudo apt-get update - sudo apt-get install asciidoc rubygems - rvmsudo gem install asciidoctor ### command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors install: pip install -r requirements.txt ### command to run tests, e.g. python setup.py test script: python setup.py test
### Config file for automatic testing at travis-ci.org dist: xenial language: python python: - "3.7" - "3.6" - "3.5" - "3.4" - "3.3" - "2.7" - "2.6" - "pypy" ### command to install external dependencies # using sudo instead of rvmsudo was causing some PATH problems: # see http://stackoverflow.com/questions/6278047/could-not-find-rails-0-amongst-gemloaderror before_install: - sudo apt-get update - sudo apt-get install asciidoc rubygems libxml2-utils - rvmsudo gem install asciidoctor ### command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors install: pip install -r requirements.txt ### command to run tests, e.g. python setup.py test script: python setup.py test
Add xmllint explicitly (no longer available by default)
Add xmllint explicitly (no longer available by default)
YAML
bsd-3-clause
jmourelos/doconv,jmourelos/doconv
980dc20f964d9a34acd222b4c2fe758365972dfe
.travis.yml
.travis.yml
before_install: - gem install bundler language: ruby rvm: - "1.9.3" - "2.0.0" - "2.1.0" - "2.1.1" - "2.1.2" - "2.1.4" - "2.2.0"
before_install: - gem install bundler language: ruby rvm: - "1.9.3" - "2.0.0" - "2.1.0" - "2.1.1" - "2.1.2" - "2.1.4" - "2.2.0" - "2.3.1"
Add ruby 2.3.1 to unit tests
Add ruby 2.3.1 to unit tests
YAML
mit
neilslater/secret_store,neilslater/secret_store
9b7057addd4a794b54849ae29bada7cb47e7f1ac
.travis.yml
.travis.yml
# Travis CI Configuration language: node_js node_js: - "12" - "11" - "10" - "9" - "8" install: - npm install - npm install coveralls before_script: - gulp build script: - npm run coverage after_success: - cat coverage/lcov.info | coveralls
# Travis CI Configuration language: node_js node_js: - "8" - "9" - "10" - "11" - "12" install: - npm install - npm install coveralls before_script: - gulp build script: - npm run coverage after_success: - cat coverage/lcov.info | coveralls
Sort Travis Node versions from oldest to newest
Sort Travis Node versions from oldest to newest
YAML
mit
caleb531/connect-four
2f623adf1abcf741ae71351aaa64e85313a32798
.travis.yml
.travis.yml
language: php sudo: false php: - 5.6 env: matrix: - PHPUNIT_TEST=1 - PHPCS_TEST=1 matrix: include: - php: 5.6 env: PHPUNIT_TEST=1 - php: 7.0 env: PHPUNIT_TEST=1 - php: 7.1.2 env: PHPUNIT_TEST=1 before_script: - composer validate - composer install --dev --prefer-dist - composer require --prefer-dist --no-update symfony/config:^3.2 silverstripe/framework:4.0.x-dev silverstripe/siteconfig:4.0.x-dev silverstripe/config:1.0.x-dev silverstripe/assets:1.0.x-dev silverstripe/versioned:1.0.x-dev --prefer-dist - composer update - if [[ $PHPCS_TEST ]]; then pyrus install pear/PHP_CodeSniffer; fi - phpenv rehash script: - if [[ $PHPUNIT_TEST ]]; then vendor/bin/phpunit tests/php; fi - if [[ $PHPCS_TEST ]]; then composer run-script lint; fi
language: php sudo: false php: - 5.6 env: matrix: - PHPUNIT_TEST=1 - PHPCS_TEST=1 matrix: include: - php: 5.6 env: PHPUNIT_TEST=1 - php: 7.0 env: PHPUNIT_TEST=1 - php: 7.1.2 env: PHPUNIT_TEST=1 before_script: - composer validate - composer install --dev --prefer-dist - composer require --prefer-dist --no-update symfony/config:^3.2 silverstripe/framework:4.0.x-dev silverstripe/siteconfig:4.0.x-dev silverstripe/config:1.0.x-dev silverstripe/admin:1.0.x-dev silverstripe/assets:1.0.x-dev silverstripe/versioned:1.0.x-dev --prefer-dist - composer update - if [[ $PHPCS_TEST ]]; then pyrus install pear/PHP_CodeSniffer; fi - phpenv rehash script: - if [[ $PHPUNIT_TEST ]]; then vendor/bin/phpunit tests/php; fi - if [[ $PHPCS_TEST ]]; then composer run-script lint; fi
Fix to download the proper version of silverstripe-admin
Fix to download the proper version of silverstripe-admin
YAML
mit
silverstripe-labs/silverstripe-behat-extension,silverstripe/silverstripe-behat-extension,silverstripe/silverstripe-behat-extension
abe26174cdd952134b2f6ec2eb727ac1e031a9cd
.travis.yml
.travis.yml
sudo: false language: erlang install: 'true' otp_release: - 19.0 - 18.0 script: "./elvis rock && ./rebar3 do dialyzer, eunit"
sudo: false language: erlang install: 'true' before_script: - wget https://s3.amazonaws.com/rebar3/rebar3 - chmod +x rebar3 env: PATH=$PATH:. cache: directories: - $HOME/.cache/rebar3/ otp_release: - 19.0 - 18.0 script: "./elvis rock && rebar3 do dialyzer, eunit"
Use latest rebar3 and persist cache on Travis
Use latest rebar3 and persist cache on Travis It might be wise to get rid of ./rebar3 to avoid inconsistent results.
YAML
mit
deadtrickster/prometheus.erl
74fb5edc90981ef2529840455fbb1ccdbd90ef60
.travis.yml
.travis.yml
# Faster container-based infrastructure sudo: false language: python python: - "3.5" - "3.6" install: - pip install -e .[tests] isort unify flake8 - pip freeze script: - pytest - flake8 - isort --check-only --recursive asgiref tests - unify --check-only --recursive --quote \" asgiref tests
# Faster container-based infrastructure sudo: false language: python python: - "3.5" - "3.6" install: - pip install -e .[tests] isort unify flake8 - pip freeze script: - pytest - flake8 - isort --check-only --recursive asgiref tests - unify --check-only --recursive --quote \" asgiref tests jobs: include: - stage: deploy script: skip deploy: provider: pypi user: andrewgodwin_bot on: tags: true distributions: sdist bdist_wheel password: secure: Bt6uFOAf2n9D5z06Orv8w6a3zU86mkpA9wspLsu8AIJ2kZx61bpO+27vHvJFyVpkEW+EerzUY9sOq02jd8EhzHL86wcM5zgXyDYhlZ6CxYxU9vFXrBmLzC/rrGbirArseXnDZY5ulPnuRBFxJyqJ2mZeDKjn+qoa8qe364si/wPDWs9YjQFSbT6lJz0MVIVKQNHw5iAXBsQ+yQewjbNPo4nOd81kqlO8Bg/Xpu85/rHjim8zG9PWAMUnueIMyYSTUTXSmZFRR+3viJ7HZz7o0HxepokkpLODdvbUKnKi2fdQAa4fAlInqFf4gSaLN8f+Ch5aDFeDmz7FVcwUbKEmWo67/lzb0NQwiYz11O+K78xFPRHopCljR3VFpCSxw/oJuLRlbElXO0q8JLznKVdgdoFqSV4/W7HgXXdYuDjcYWHiYHHc1t/JoOF3bRkjRu7Ax9HwmEi1RLL4ou5G/lT60Pd50FRcLV788AYw7CiZFewRyXjJSB59Crqt05Eyl0Wtynd1JwHDkJC2SYuWfqRHYM+oicqxbSyecjbMu8vDD56soDEeM/oHojBo4IpEYtGYHndGvnmtOuPpiKNpxxZC6ipghrv74s0Btw9HaI8SW1/G3EDCudL5rd7X9gdMFESdp/WshKlr4treEYfPRkZcuh3WW9CE2QS0IiCXoWk60AA=
Add deploy stage to Travis
Add deploy stage to Travis
YAML
bsd-3-clause
django/asgiref
04fedcf47aca5eaf160c5e43374db1edc4b24029
.travis.yml
.travis.yml
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r language: r sudo: false cache: packages addons: apt: packages: - python2.7 - python-numpy
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r language: r sudo: false cache: packages addons: apt: packages: - python2.7 - python-numpy - python-scipy
Add scipy installation on Travis
Add scipy installation on Travis
YAML
apache-2.0
terrytangyuan/reticulate,rstudio/reticulate,rstudio/reticulate,terrytangyuan/reticulate,rstudio/reticulate,rstudio/reticulate,rstudio/reticulate,terrytangyuan/reticulate
f89efe56e6a8bb0419d009de4ea20a3dba1dbd27
.travis.yml
.travis.yml
language: go go: - "1.10.x" script: go build
language: go go: - "1.10.x" script: go test -race ./...
Add test -race to CI
Add test -race to CI
YAML
apache-2.0
mattrco/anode
28f3fd97eedbf53744af8792550ecfcf27e5ed87
.travis.yml
.travis.yml
language: objective-c osx_image: xcode9 script: - xcrun xcodebuild -project SipHash.xcodeproj -scheme SipHash-macOS test - xcrun xcodebuild -project SipHash.xcodeproj -scheme SipHash-iOS - xcrun xcodebuild -project SipHash.xcodeproj -scheme SipHash-watchOS - xcrun xcodebuild -project SipHash.xcodeproj -scheme SipHash-tvOS - swift test after_success: bash <(curl -s https://codecov.io/bash)
language: objective-c osx_image: xcode9.3 script: - xcrun xcodebuild -project SipHash.xcodeproj -scheme SipHash-macOS test - xcrun xcodebuild -project SipHash.xcodeproj -scheme SipHash-iOS - xcrun xcodebuild -project SipHash.xcodeproj -scheme SipHash-watchOS - xcrun xcodebuild -project SipHash.xcodeproj -scheme SipHash-tvOS - swift test after_success: bash <(curl -s https://codecov.io/bash)
Switch to xcode 9.3 for newest Swift version
Switch to xcode 9.3 for newest Swift version
YAML
mit
lorentey/SipHash,lorentey/SipHash,lorentey/SipHash
6249239f338be2d36630fd601fccc01c04fa0ed5
.travis.yml
.travis.yml
# Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. language: java sudo: false dist: precise jdk: - openjdk6 - openjdk7 - oraclejdk8 after_success: - mvn clean test jacoco:report coveralls:report
# Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. language: java sudo: false dist: precise jdk: - openjdk6 - openjdk7 - openjdk8 - openjdk11 - openjdk12 - openjdk13 - openjdk-ea after_success: - mvn clean test jacoco:report coveralls:report
Drop Oracle JDK 8, add OpenJDK 13.
Drop Oracle JDK 8, add OpenJDK 13.
YAML
apache-2.0
apache/commons-jexl,apache/commons-jexl,apache/commons-jexl
9eb7082e82da7c522c1a32d7b5b611aa24395932
.travis.yml
.travis.yml
language: c compiler: - gcc script: make test before_install: - sudo apt-get update -qq - if [ `uname -m` = x86_64 ]; then sudo apt-get install -qq --force-yes libgd2-xpm ia32-libs ia32-libs-multiarch; fi - sudo pip install git+https://github.com/openxc/openxc-python - script/bootstrap.sh - cd src notifications: hipchat: - secure: "ZO/hEAoOTZ4FJytMW0m4LZrsdFVM1/V0Hu13zfj8mdcHkf2MyfxthPDecnn5\naZVn4P8mSSwpp39EnAfa9fBcWcDESnKM1YQKPPGkoxZZHIOd2rYhRv34XfpE\n5qNLkQ/lEPQCBEmvIQ5ZJxsiZjGhO7KxWvdNdruH6cdVCYSh4Xo="
language: c compiler: - gcc script: make test before_install: - sudo apt-get update -qq - if [ `uname -m` = x86_64 ]; then sudo apt-get install -qq -y libgd2-xpm ia32-libs ia32-libs-multiarch; fi - sudo pip install git+https://github.com/openxc/openxc-python - script/bootstrap.sh - cd src notifications: hipchat: - secure: "ZO/hEAoOTZ4FJytMW0m4LZrsdFVM1/V0Hu13zfj8mdcHkf2MyfxthPDecnn5\naZVn4P8mSSwpp39EnAfa9fBcWcDESnKM1YQKPPGkoxZZHIOd2rYhRv34XfpE\n5qNLkQ/lEPQCBEmvIQ5ZJxsiZjGhO7KxWvdNdruH6cdVCYSh4Xo="
Use -y flag in CI setup to avoid timing out.
Use -y flag in CI setup to avoid timing out.
YAML
bsd-3-clause
ene-ilies/vi-firmware,mgiannikouris/vi-firmware,mgiannikouris/vi-firmware,mgiannikouris/vi-firmware,ene-ilies/vi-firmware,mgiannikouris/vi-firmware,ene-ilies/vi-firmware,openxc/vi-firmware,openxc/vi-firmware,openxc/vi-firmware,ene-ilies/vi-firmware,openxc/vi-firmware
b540726107e0b60cc764f8de16f98f917e53f650
.travis.yml
.travis.yml
# See https://github.com/silverstripe-labs/silverstripe-travis-support for setup details sudo: false language: php matrix: include: - php: 5.3 env: DB=MYSQL CORE_RELEASE=3.4 - php: 5.4 env: DB=MYSQL CORE_RELEASE=3.5 - php: 5.6 env: DB=MYSQL CORE_RELEASE=3 - php: 5.6 env: DB=MYSQL CORE_RELEASE=3.5 SECUREASSETS=1 before_script: - git clone git://github.com/silverstripe-labs/silverstripe-travis-support.git ~/travis-support - "if [ \"$SECUREASSETS\" = \"\" ]; then php ~/travis-support/travis_setup.php --source `pwd` --target ~/builds/ss; fi" - "if [ \"$SECUREASSETS\" = \"1\" ]; then php ~/travis-support/travis_setup.php --source `pwd` --target ~/builds/ss --require silverstripe/secureassets; fi" - cd ~/builds/ss script: - vendor/bin/phpunit --coverage-clover coverage.clover userforms/tests after_success: - mv coverage.clover ~/build/$TRAVIS_REPO_SLUG/ - cd ~/build/$TRAVIS_REPO_SLUG - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover coverage.clover
# See https://github.com/silverstripe/silverstripe-travis-support for setup details sudo: false language: php matrix: include: - php: 5.3 env: DB=MYSQL CORE_RELEASE=3.4 - php: 5.4 env: DB=MYSQL CORE_RELEASE=3.5 - php: 5.6 env: DB=MYSQL CORE_RELEASE=3 - php: 5.6 env: DB=MYSQL CORE_RELEASE=3.5 SECUREASSETS=1 - php: 7.1 env: DB=MYSQL CORE_RELEASE=3.6 before_script: - git clone git://github.com/silverstripe/silverstripe-travis-support.git ~/travis-support - "if [ \"$SECUREASSETS\" = \"\" ]; then php ~/travis-support/travis_setup.php --source `pwd` --target ~/builds/ss; fi" - "if [ \"$SECUREASSETS\" = \"1\" ]; then php ~/travis-support/travis_setup.php --source `pwd` --target ~/builds/ss --require silverstripe/secureassets; fi" - cd ~/builds/ss script: - vendor/bin/phpunit --coverage-clover coverage.clover userforms/tests after_success: - mv coverage.clover ~/build/$TRAVIS_REPO_SLUG/ - cd ~/build/$TRAVIS_REPO_SLUG - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover coverage.clover
Add PHP7 + SS3.6 build to Travis configuration
Add PHP7 + SS3.6 build to Travis configuration
YAML
bsd-3-clause
silverstripe/silverstripe-userforms,robbyahn/silverstripe-userforms,silverstripe/silverstripe-userforms,dnadesign/silverstripe-userforms,robbyahn/silverstripe-userforms,dnadesign/silverstripe-userforms
a8eaed88bcff2fcbf57211784432abbf05f1ccdd
.travis.yml
.travis.yml
before_install: - gem install bundler language: ruby rvm: - '2.4' - '2.5' - '2.6' - '2.7' - ruby-head matrix: allow_failures: - rvm: ruby-head fast_finish: true
before_install: - gem install bundler language: ruby rvm: - '2.5' - '2.6' - '2.7' - ruby-head matrix: allow_failures: - rvm: ruby-head fast_finish: true
Support of Ruby 2.4 has ended
Support of Ruby 2.4 has ended https://www.ruby-lang.org/en/news/2020/04/05/support-of-ruby-2-4-has-ended/
YAML
mit
envato/zxcvbn-ruby
ba3e31fb844fa6828280c1097a02b7fcb2519b51
.travis.yml
.travis.yml
language: node_js node_js: - "0.10"
language: node_js sudo: false node_js: - "0.10" - "0.12" - "4" after_success: - npm run coverage - npm i coveralls - cat ./coverage/lcov.info | coveralls notifications: email: on_success: never
Use the standard Jade Travis configuration
Use the standard Jade Travis configuration
YAML
mit
pugjs/jade-linker,pugjs/jade-linker,jadejs/jade-linker,jadejs/jade-linker
5e9576f2c7bd122560a4200a57df7dab44979ee4
meta/main.yml
meta/main.yml
--- galaxy_info: author: OpenStack description: Security hardening role for OpenStack Ansible company: OpenStack license: Apache min_ansible_version: 1.8 platforms: - name: Ubuntu versions: - trusty categories: - cloud - secuity - system dependencies: []
--- galaxy_info: author: OpenStack description: Security hardening role for OpenStack Ansible company: OpenStack license: Apache min_ansible_version: 1.8 platforms: - name: Ubuntu versions: - trusty categories: - cloud - security - system dependencies: []
Fix typo: secuity -> security
Fix typo: secuity -> security Change-Id: If9b40bc6dc02fa67a934dd32e77ee1cfaa8125d5
YAML
apache-2.0
major/openstack-ansible-security,major/openstack-ansible-security
2298d1a1081b09844bf7cdbe6fa9b0da095689e0
.travis.yml
.travis.yml
language: php php: - 5.5 - 5.6 - 7.0 before_script: composer install --dev --prefer-source script: bin/phpspec run -fpretty --verbose
language: php php: - 5.5 - 5.6 - 7.0 before_script: composer install --no-interaction --prefer-source script: bin/phpspec run -fpretty --verbose
Fix invalid deps and move AttributeFactory to component
Fix invalid deps and move AttributeFactory to component
YAML
mit
Sylius/Variation
dd0f9896e6b36094c2139b552ca29ce8aa2820bf
provisioning/roles/api/tasks/main.yml
provisioning/roles/api/tasks/main.yml
--- - name: Install Node, NPM and nginx apt: name={{item}} state=installed with_items: - nodejs-legacy - npm - nginx-light - name: Locally install dependencies local_action: command npm install args: chdir: ../api become: false - name: Sync ipfs-search api synchronize: src=../../../api/ dest=/usr/local/libexec/ipfs-search-api times=yes partial=yes archive=no recursive=yes notify: restart ipfs-search - name: Create ipfs-search group. group: name=ipfs-search system=true state=present - name: Create ipfs-search user. user: name=ipfs-search comment="ipfs-search api" group=ipfs-search system=true state=present home=/nonexistent shell=/usr/sbin/nologin - name: Install ipfs-search service copy: src=ipfs-search.service dest=/etc/systemd/system/ipfs-search.service notify: restart ipfs-search - name: Enable search service service: name=ipfs-search enabled=yes state=started - name: Install nginx configuration copy: src=nginx.conf dest=/etc/nginx/nginx.conf notify: restart nginx - name: Enable nginx service service: name=nginx enabled=yes state=started
--- - name: Install Node, NPM and nginx apt: name={{item}} state=installed with_items: - nodejs-legacy - npm - nginx-light - name: Locally install dependencies local_action: command npm install args: chdir: ../api become: false - name: Create destination folder for search api file: path=/usr/local/libexec/ipfs-search-api state=directory - name: Sync ipfs-search api synchronize: src=../../../api/ dest=/usr/local/libexec/ipfs-search-api times=yes partial=yes archive=no recursive=yes notify: restart ipfs-search - name: Create ipfs-search group. group: name=ipfs-search system=true state=present - name: Create ipfs-search user. user: name=ipfs-search comment="ipfs-search api" group=ipfs-search system=true state=present home=/nonexistent shell=/usr/sbin/nologin - name: Install ipfs-search service copy: src=ipfs-search.service dest=/etc/systemd/system/ipfs-search.service notify: restart ipfs-search - name: Enable search service service: name=ipfs-search enabled=yes state=started - name: Install nginx configuration copy: src=nginx.conf dest=/etc/nginx/nginx.conf notify: restart nginx - name: Enable nginx service service: name=nginx enabled=yes state=started
Make sure destination directory exists.
Make sure destination directory exists.
YAML
agpl-3.0
ipfs-search/ipfs-search,ipfs-search/ipfs-search,dokterbob/ipfs-search,dokterbob/ipfs-search,dokterbob/ipfs-search
b9bd0d4c128a43ef98a3713732597664171ed470
provisioning/roles/common/tasks/main.yml
provisioning/roles/common/tasks/main.yml
--- - name: Update apt-cache apt: update_cache=yes cache_valid_time=3600 sudo: yes - name: Upgrade the OS apt: upgrade=yes sudo: yes - name: Install common packages apt: pkg={{ item }} state=latest sudo: yes with_items: - build-essential - git - tree - vim - curl - wget - zip - rsync - name: Add Github's fingerprint to the known_hosts file copy: src=known_hosts dest=~/.ssh/known_hosts
--- - name: Update apt-cache apt: update_cache=yes cache_valid_time=3600 sudo: yes - name: Upgrade the OS apt: upgrade=yes sudo: yes - name: Install common packages apt: pkg={{ item }} state=latest sudo: yes with_items: - build-essential - git - tree - vim - curl - wget - zip - rsync - python-software-properties - name: Add Ansible apt repository sudo: yes apt_repository: repo='ppa:rquillo/ansible' state=present - name: Install Ansible apt: pkg=ansible state=latest - name: Add Github's fingerprint to the known_hosts file copy: src=known_hosts dest=~/.ssh/known_hosts
Install ansible on the guest machine.
Install ansible on the guest machine.
YAML
apache-2.0
diogoosorio/zidisha-vagrant
23dbf0ee67ea568ca54706afeb7373d87f7d1819
integration/signer/policy_template.yaml
integration/signer/policy_template.yaml
apiVersion: kritis.grafeas.io/v1beta1 kind: VulnzSigningPolicy metadata: name: my-vsp spec: project: <ATTESTATION_PROJECT> noteReference: projects/<NOTE_PROJECT>/notes/<NOTE_ID> packageVulnerabilityRequirements: maximumSeverity: MEDIUM maximumFixNotAvailableSeverity: MEDIUM allowlistCVEs: - providers/goog-vulnz/notes/CVE-2017-1000082 - providers/goog-vulnz/notes/CVE-2017-1000081
apiVersion: kritis.grafeas.io/v1beta1 kind: VulnzSigningPolicy metadata: name: my-vsp spec: project: <ATTESTATION_PROJECT> noteReference: projects/<NOTE_PROJECT>/notes/<NOTE_ID> packageVulnerabilityRequirements: maximumSeverity: LOW maximumFixNotAvailableSeverity: ALLOW_ALL allowlistCVEs: - providers/goog-vulnz/notes/CVE-2017-1000082 - providers/goog-vulnz/notes/CVE-2017-1000081
Update requirements so tests can pass.
Update requirements so tests can pass.
YAML
apache-2.0
grafeas/kritis,grafeas/kritis,grafeas/kritis
5784c64dd1314911060f5760cb9a53a136b7359d
.travis.yml
.travis.yml
language: go go: - 1.7 # ubuntu 16.04 - 1.x addons: postgresql: "9.4" apt: packages: - upx-ucl - binutils - fakeroot before_install: - go get github.com/axw/gocov/gocov - go get github.com/mattn/goveralls - go get golang.org/x/tools/cmd/cover - gem install package_cloud - pip install --user requests before_script: - psql -c 'create database henhouse_test;' -U postgres script: - go list ./... | while read pkg; do go test -v -covermode=count -coverprofile=$(basename ${pkg}).cover ${pkg} || return 1; done - ls | grep cover$ | xargs cat | sort -r | uniq >> coverage.out - goveralls -coverprofile=coverage.out -service travis-ci - git clone https://github.com/jollheef/henhouse - git checkout ${TRAVIS_COMMIT} - cd henhouse - PATH=$HOME/.local/bin:$PATH ./package.sh
language: go go: - 1.10 # ubuntu 18.04 - 1.x addons: postgresql: "9.4" apt: packages: - upx-ucl - binutils - fakeroot before_install: - go get github.com/axw/gocov/gocov - go get github.com/mattn/goveralls - go get golang.org/x/tools/cmd/cover - gem install package_cloud - pip install --user requests before_script: - psql -c 'create database henhouse_test;' -U postgres script: - go list ./... | while read pkg; do go test -v -covermode=count -coverprofile=$(basename ${pkg}).cover ${pkg} || return 1; done - ls | grep cover$ | xargs cat | sort -r | uniq >> coverage.out - goveralls -coverprofile=coverage.out -service travis-ci - git clone https://github.com/jollheef/henhouse - git checkout ${TRAVIS_COMMIT} - cd henhouse - PATH=$HOME/.local/bin:$PATH ./package.sh
Use go version for Ubuntu 18.04
Use go version for Ubuntu 18.04
YAML
agpl-3.0
jollheef/henhouse,jollheef/henhouse,jollheef/henhouse,jollheef/henhouse
6a9f0e01556965353189bac368d6ea92f4f3a66e
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 - 5.6 - 7 - hhvm matrix: allow_failures: - php: 7 before_script: - wget http://getcomposer.org/composer.phar - php composer.phar install --dev --prefer-source --no-interaction script: - mkdir -p build/logs - phpunit --coverage-clover build/logs/clover.xml after_script: php vendor/bin/coveralls -v notifications: email: - [email protected]
language: php php: - 5.4 - 5.5 - 5.6 - 7 - hhvm cache: directories: - $HOME/.composer/cache/files env: - SYMFONY_VERSION=2.3.* matrix: allow_failures: - php: 7 include: - php: 5.6 env: SYMFONY_VERSION=3.0.*@dev - php: 7 env: SYMFONY_VERSION=3.0.*@dev before_script: - composer self-update - composer require symfony/symfony:${SYMFONY_VERSION} --no-update install: composer update --prefer-source script: - mkdir -p build/logs - phpunit --coverage-clover build/logs/clover.xml after_script: php vendor/bin/coveralls -v notifications: email: - [email protected]
Add Travis configuration to test also against Symfony 3.0 and speed up testing.
Add Travis configuration to test also against Symfony 3.0 and speed up testing.
YAML
mit
lennerd/vipx-bot-detect
8a8094f935c926ff739459053fa8155909923bf3
simplesamlphp/simplesamlphp/CVE-2016-3124.yaml
simplesamlphp/simplesamlphp/CVE-2016-3124.yaml
title: Information leakage issue in the sanitycheck module link: https://simplesamlphp.org/security/201603-01 cve: CVE-2016-3124 branches: master: time: 2016-03-07 13:04:57 versions: ['<=1.14.1'] 1.14: time: 2016-03-07 13:06:15 versions: ['<=1.14.1'] reference: composer://simplesamlphp/simplesamlphp
title: Information leakage issue in the sanitycheck module link: https://simplesamlphp.org/security/201603-01 cve: CVE-2016-3124 branches: master: time: 2016-03-07 13:04:57 versions: ['<=1.14.1'] reference: composer://simplesamlphp/simplesamlphp
Remove the 1.14 branch, not really needed.
Remove the 1.14 branch, not really needed.
YAML
unlicense
FriendsOfSilverStripe/security-advisories,markstory/security-advisories,Ocramius/security-advisories,FriendsOfPHP/security-advisories,kdambekalns/security-advisories,marcomenzel/security-advisories
f56bc4058202d5358a947efcb2d936320225079e
.github/workflows/code-quality-checks.yml
.github/workflows/code-quality-checks.yml
name: Code quality checks on: push: branches: - main pull_request: jobs: code_quality: name: Check code quality runs-on: ubuntu-latest strategy: fail-fast: false matrix: os: [ubuntu-latest, macos-latest, windows-latest] python-version: [3.6, 3.7, 3.8, 3.9] steps: - name: Checkout repository uses: actions/checkout@v2 - name: Set up 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 poetry poetry config virtualenvs.create false poetry install --no-root --no-interaction - name: Check code formatting run: make formatcheck - name: Check for linter errors run: make lint # - name: Check docstring formatting # run: make doccheck # TODO - name: Check doc site build run: make docs - name: Check type annotations run: make typecheck - name: Run tests run: make test # - name: Check code coverage # run: make covcheck # TODO
name: Code quality checks on: push: branches: - main pull_request: jobs: code_quality: name: Check code quality runs-on: ubuntu-latest strategy: fail-fast: false matrix: os: [ubuntu-latest, macos-latest, windows-latest] python-version: [3.6, 3.7, 3.8, 3.9] steps: - name: Checkout repository uses: actions/checkout@v2 - name: Set up 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 poetry poetry config virtualenvs.create false poetry install --no-root --no-interaction - name: Check code formatting run: make formatcheck - name: Check for linter errors run: make lint # - name: Check docstring formatting # run: make doccheck # TODO - name: Check doc site build run: make docs - name: Check type annotations run: make typecheck - name: Run tests run: make test - name: Check code coverage run: make covcheck
Enable coverage check in CI
Enable coverage check in CI
YAML
bsd-3-clause
nkantar/Parsenvy
e8f86043675f6e23517cd8150f19b3e59bf2f613
.travis.yml
.travis.yml
language: python python: - 2.7 - 3.3 - 3.4 - 3.5 - 3.6 - 3.7 - pypy install: - python setup.py sdist - pip install dist/`python setup.py --name`-`python setup.py --version`.tar.gz - pip install -r requirements.txt - pip install -r requirements-dev.txt before_script: pip install . script: - coverage run --source boscli setup.py test - coverage report -m after_script: - coveralls --verbose
dist: xenial language: python python: - 2.7 - 3.3 - 3.4 - 3.5 - 3.6 - 3.7 - pypy install: - python setup.py sdist - pip install dist/`python setup.py --name`-`python setup.py --version`.tar.gz - pip install -r requirements.txt - pip install -r requirements-dev.txt before_script: pip install . script: - coverage run --source boscli setup.py test - coverage report -m after_script: - coveralls --verbose
Use Xenial distro for testing
Use Xenial distro for testing
YAML
mit
aleasoluciones/boscli
deb591917f915feadd354312cb264b8c620fb938
test/integration/basic-agent/agent.yml
test/integration/basic-agent/agent.yml
--- - name: python2 check hosts: all become: True gather_facts: false tasks: - include: ../ubuntu-test-tools.yml - name: agent hosts: all become: True gather_facts: true vars_files: - agent_vars.yml pre_tasks: - name: Install nginx include: ../nginx.yml roles : - ansible-consul post_tasks: - name: Pause till every thing is update_cache pause: prompt="Make sure that helth checks pass and our services are part of the game" seconds=30
--- - name: python2 check hosts: all become: True gather_facts: false tasks: - include: ../ubuntu-test-tools.yml - name: agent hosts: all become: True gather_facts: true vars_files: - agent_vars.yml roles : - ansible-consul post_tasks: - name: Pause till every thing is update_cache pause: prompt="Make sure that helth checks pass and our services are part of the game" seconds=20 - name: Install nginx include: ../nginx.yml
Install nginx after role executes to check haproxy reload
Install nginx after role executes to check haproxy reload
YAML
mit
hellofresh/ansible-consul,hellofresh/ansible-consul,hellofresh/ansible-consul
12b7daa7bf24b7865aad136265ce33f11d0adac2
.travis.yml
.travis.yml
language: ruby sudo: false rvm: - 2.1 - 2.2 - ruby-head - jruby - rbx-2 matrix: allow_failures: - rvm: rbx-2 addons: code_climate: repo_token: 2a03fa37ce5a5cb21bb117a736be5d83dcf9f1c3ea2b248f7af4c0a7b330d8c8 after_success: - bundle exec codeclimate-test-reporter notifications: slack: secure: IfKhtia5nM6KA9nK8jiSkNnVOLN96er6gK5jgjYKFNrVyWAKRUJZ0TB9L+igjUWDq7t+tRvj8yGT2k61xVJgF+ZDlQiWvyazTsgQeqbjieCxCrj/BTGZLyD1hhOLg7vqpyeQvp/34hDahx6XNp6XPvkxeofjc0H6STv2UjJkpQk=
language: ruby sudo: false rvm: - 2.1 - 2.2 - ruby-head - jruby - rbx matrix: allow_failures: - rvm: rbx-2 addons: code_climate: repo_token: 2a03fa37ce5a5cb21bb117a736be5d83dcf9f1c3ea2b248f7af4c0a7b330d8c8 after_success: - bundle exec codeclimate-test-reporter notifications: slack: secure: IfKhtia5nM6KA9nK8jiSkNnVOLN96er6gK5jgjYKFNrVyWAKRUJZ0TB9L+igjUWDq7t+tRvj8yGT2k61xVJgF+ZDlQiWvyazTsgQeqbjieCxCrj/BTGZLyD1hhOLg7vqpyeQvp/34hDahx6XNp6XPvkxeofjc0H6STv2UjJkpQk=
Test against the current version of rubinius.
Test against the current version of rubinius.
YAML
mit
trailofbits/ruby-sslyze
73c7c70ac8b6108865a15ecfda3ca2c0254b658f
metadata/net.dcnnt.yml
metadata/net.dcnnt.yml
Categories: - Connectivity - System License: MIT AuthorName: cyanomiko SourceCode: https://github.com/cyanomiko/dcnnt-android IssueTracker: https://github.com/cyanomiko/dcnnt-android/issues AutoName: Device Connect RepoType: git Repo: https://github.com/cyanomiko/dcnnt-android Builds: - versionName: 0.3.7 versionCode: 12 commit: 0.3.7 subdir: app gradle: - yes - versionName: 0.3.8 versionCode: 13 commit: 0.3.8 subdir: app gradle: - yes - versionName: 0.4.0 versionCode: 14 commit: 0.4.0 subdir: app gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: 0.4.0 CurrentVersionCode: 14
Categories: - Connectivity - System License: MIT AuthorName: cyanomiko SourceCode: https://github.com/cyanomiko/dcnnt-android IssueTracker: https://github.com/cyanomiko/dcnnt-android/issues AutoName: Device Connect RepoType: git Repo: https://github.com/cyanomiko/dcnnt-android Builds: - versionName: 0.3.7 versionCode: 12 commit: 0.3.7 subdir: app gradle: - yes - versionName: 0.3.8 versionCode: 13 commit: 0.3.8 subdir: app gradle: - yes - versionName: 0.4.0 versionCode: 14 commit: 0.4.0 subdir: app gradle: - yes - versionName: 0.5.0 versionCode: 15 commit: 0.5.0 subdir: app gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: 0.5.0 CurrentVersionCode: 15
Update Device Connect to 0.5.0 (15)
Update Device Connect to 0.5.0 (15)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
4cc8ae74a3c175f0ecab80ab843bdaa8baa43d6a
.travis.yml
.travis.yml
script: ./scripts/build install: - sudo apt-get update -qq - sudo cp -r assets/fonts/* /usr/local/share/fonts/ - sudo fc-cache -f -v - sudo apt-get install texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended - sudo pip install python-docx deploy: provider: s3 access_key_id: AKIAI6DXQYKG4LOZCCSA secret_access_key: secure: hkOs8/obtDqaOGJISU+Ra97BdYB/KbC+nrjvlcXz6xIULx3+zTyWBqCEtVsKKSDkbDiVXkNy2+HPrQhqqqhoOyy0r4RFDQoY9pvQ+IuvlXniKWGEXwwiVdO6P5pU3VkZ9m6O88Ek4KJ9LXoHsJhr6tjCRdohrUq6BGxdXCU5KIQ= bucket: Dissertate skip_cleanup: true local-dir: build on: repo: suchow/Dissertate branch: master
script: ./scripts/build install: - sudo apt-get update -qq - sudo cp -r assets/fonts/* /usr/local/share/fonts/ - sudo fc-cache -f -v - sudo apt-get install texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended - sudo pip install python-docx deploy: provider: s3 access_key_id: AKIAI6DXQYKG4LOZCCSA secret_access_key: secure: hkOs8/obtDqaOGJISU+Ra97BdYB/KbC+nrjvlcXz6xIULx3+zTyWBqCEtVsKKSDkbDiVXkNy2+HPrQhqqqhoOyy0r4RFDQoY9pvQ+IuvlXniKWGEXwwiVdO6P5pU3VkZ9m6O88Ek4KJ9LXoHsJhr6tjCRdohrUq6BGxdXCU5KIQ= bucket: Dissertate skip_cleanup: true local-dir: build on: repo: asm-products/Dissertate branch: master
Change repo name for S3 upload
Change repo name for S3 upload
YAML
agpl-3.0
asm-products/Dissertate,michaelpacer/Dissertate,suchow/Dissertate,michaelpacer/Dissertate,suchow/Dissertate,suchow/Dissertate,asm-products/Dissertate,michaelpacer/Dissertate,asm-products/Dissertate,suchow/Dissertate,asm-products/Dissertate,michaelpacer/Dissertate
88b641977e5959715ee0ee11042babbef95beb04
elasticsearch-kibana-minimal.yml
elasticsearch-kibana-minimal.yml
--- version: '2' services: elasticsearch: image: docker.elastic.co/elasticsearch/elasticsearch:$ELASTIC_VERSION cap_add: - IPC_LOCK volumes: - esdata1:/usr/share/elasticsearch/data ports: - 9200:9200 kibana: image: docker.elastic.co/kibana/kibana:$ELASTIC_VERSION links: - elasticsearch ports: - 5601:5601 volumes: esdata1: driver: local
--- version: '2' services: elasticsearch: image: docker.elastic.co/elasticsearch/elasticsearch:$ELASTIC_VERSION cap_add: - IPC_LOCK volumes: - /usr/share/elasticsearch/data ports: - 9200:9200 kibana: image: docker.elastic.co/kibana/kibana:$ELASTIC_VERSION links: - elasticsearch ports: - 5601:5601
CHANGE to an anonymous volume to simplify the config even further
CHANGE to an anonymous volume to simplify the config even further
YAML
mit
xeraa/elastic-docker
b7e639dfad82b5fe163818df35b5a771c6ed4911
config/space_api.yml
config/space_api.yml
space: init Lab logo: initlab-logo.png url: https://initlab.org location: address: floor 2, 6 Rila str., Sofia, Bulgaria lat: 42.70789247 lon: 23.32527086 spacefed: spacenet: false spacesaml: false spacephone: false contact: irc: irc://irc.ludost.net/#initlab twitter: '@initLab' ml: [email protected] issue_mail: [email protected] issue_report_channels: - issue_mail - twitter feeds: blog: type: rss url: https://initlab.org/feed/ wiki: type: atom url: https://wiki.initlab.org/api.php?hidebots=1&days=7&limit=50&action=feedrecentchanges&feedformat=atom calendar: type: ical url: https://initlab.org/?ical=1 projects: - https://wiki.initlab.org/index.php/Category:Project - https://github.com/initLab/
space: init Lab logo: initlab-logo.png url: https://initlab.org location: address: floor 3, 64A, Tsar Asen Str., Sofia, Bulgaria lat: 42.6879500 lon: 23.3169100 spacefed: spacenet: false spacesaml: false spacephone: false contact: irc: irc://irc.ludost.net/#initlab twitter: '@initLab' ml: [email protected] issue_mail: [email protected] issue_report_channels: - issue_mail - twitter feeds: blog: type: rss url: https://initlab.org/feed/ wiki: type: atom url: https://wiki.initlab.org/api.php?hidebots=1&days=7&limit=50&action=feedrecentchanges&feedformat=atom calendar: type: ical url: https://initlab.org/?ical=1 projects: - https://wiki.initlab.org/index.php/Category:Project - https://github.com/initLab/
Update address and location in SpaceAPI config
Update address and location in SpaceAPI config
YAML
mit
initLab/fauna,initLab/fauna,initLab/fauna
c77ceb8fbacdc498637f7412899b8aa61e8c716c
vars/main.yml
vars/main.yml
--- metronome_powerdns_repo_master: apt_repo: "deb [arch=amd64] http://repo.powerdns.com/{{ ansible_distribution | lower }} {{ ansible_distribution_release | lower }}-metronome main" gpg_key: "http://repo.powerdns.com/CBC8B383-pub.asc" gpg_key_id: "D47975F8DAE32700A563E64FFF389421CBC8B383" yum_repo_baseurl: "http://repo.powerdns.com/centos/$basearch/$releasever/metronome" yum_repo_name: "metronome"
--- metronome_powerdns_repo_master: apt_repo: "deb [arch=amd64] http://repo.powerdns.com/{{ ansible_distribution | lower }} {{ ansible_distribution_release | lower }}-metronome-master main" gpg_key: "http://repo.powerdns.com/CBC8B383-pub.asc" gpg_key_id: "D47975F8DAE32700A563E64FFF389421CBC8B383" yum_repo_baseurl: "http://repo.powerdns.com/centos/$basearch/$releasever/metronome-master" yum_repo_name: "metronome"
Fix the metronome master repo URL
Fix the metronome master repo URL
YAML
mit
PowerDNS/metronome-ansible