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 |
|---|---|---|---|---|---|---|---|---|---|
ef00be3bd4d84fd08d81dc0ba6386384bbd74684 | appveyor.yml | appveyor.yml | version: "{build}"
platform: x64
branches:
only:
- master
clone_depth: 10
skip_tags: true
environment:
APM_TEST_PACKAGES:
ATOM_GITHUB_FS_EVENT_LOG: '1'
MOCHA_TIMEOUT: '60000'
UNTIL_TIMEOUT: '30000'
matrix:
- ATOM_CHANNEL: stable
- ATOM_CHANNEL: beta
install:
- ps: Install-Product node 6
build_script:
- ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/atom/ci/master/build-package.ps1'))
test: off
deploy: off
| version: "{build}"
platform: x64
branches:
only:
- master
clone_depth: 10
skip_tags: true
environment:
APM_TEST_PACKAGES:
ATOM_GITHUB_FS_EVENT_LOG: '1'
MOCHA_TIMEOUT: '60000'
UNTIL_TIMEOUT: '30000'
matrix:
- ATOM_CHANNEL: stable
- ATOM_CHANNEL: beta
- ATOM_CHANNEL: dev
install:
- ps: Install-Product node 6
build_script:
- ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/atom/ci/master/build-package.ps1'))
test: off
deploy: off
| Test the dev channel on AppVeyor | Test the dev channel on AppVeyor
| YAML | mit | atom/github,atom/github,atom/github |
2bf74e04045647208d0151d3c2b06886de2f4f06 | appveyor.yml | appveyor.yml | ---
install:
- SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
- ruby --version
- gem --version
- bundle install
build: off
test_script:
- bundle exec rake ci
environment:
matrix:
- ruby_version: "200"
- ruby_version: "200-x64"
- ruby_version: "21"
- ruby_version: "21-x64"
- ruby_version: "22"
- ruby_version: "22-x64"
- ruby_version: "23"
- ruby_version: "23-x64"
- ruby_version: "24"
- ruby_version: "24-x64"
- ruby_version: "25"
- ruby_version: "25-x64"
| ---
install:
- SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
- ruby --version
- gem --version
- bundle install
build: off
test_script:
- bundle exec rake ci
environment:
matrix:
- ruby_version: "200"
- ruby_version: "200-x64"
- ruby_version: "21"
- ruby_version: "21-x64"
- ruby_version: "22"
- ruby_version: "22-x64"
- ruby_version: "23"
- ruby_version: "23-x64"
- ruby_version: "24"
- ruby_version: "24-x64"
- ruby_version: "25"
- ruby_version: "25-x64"
allow_failures:
- ruby_version: "200"
- ruby_version: "200-x64"
- ruby_version: "21"
- ruby_version: "21-x64"
| Change to allow failures on older rubies | Change to allow failures on older rubies
| YAML | mit | peter-murach/rspec-benchmark,piotrmurach/rspec-benchmark,piotrmurach/rspec-benchmark |
3657ae1197aa47cdb01d82ba5fd8d1bed93995dd | appveyor.yml | appveyor.yml | build: false
version: 0.1.0.{build}
pull_requests:
do_not_increment_build_number: true
skip_tags: true
clone_folder: C:\projects\stakx
branches:
except:
- gh-pages
cache:
- vendor
- '%LocalAppData%\Composer'
install:
- cinst -y OpenSSL.Light
- SET PATH=C:\Program Files\OpenSSL;%PATH%
- cinst -y php --version 7.0.9
- cd c:\tools\php
- copy php.ini-production php.ini
- echo date.timezone="UTC" >> php.ini
- echo extension_dir=ext >> php.ini
- echo extension=php_openssl.dll >> php.ini
- SET PATH=C:\tools\php;%PATH%
- cd C:\projects\stakx
- php -r "readfile('http://getcomposer.org/installer');" | php
- php composer.phar install --no-interaction --prefer-dist
test_script:
- cd C:\projects\stakx
- vendor\bin\phpunit.bat
notifications:
- provider: Webhook
url: http://helit.tech:8093/+sujevo-dev/showSuccessfulBuildMessages=always
on_build_success: true
on_build_failure: true
on_build_status_changed: true | build: false
version: 0.1.0.{build}
pull_requests:
do_not_increment_build_number: true
skip_tags: true
clone_folder: C:\projects\stakx
branches:
except:
- gh-pages
cache:
- vendor
- '%LocalAppData%\Composer'
install:
- cinst -y OpenSSL.Light
- SET PATH=C:\Program Files\OpenSSL;%PATH%
- sc config wuauserv start= auto
- net start wuauserv
- cinst -y php
- cd c:\tools\php
- copy php.ini-production php.ini
- echo date.timezone="UTC" >> php.ini
- echo extension_dir=ext >> php.ini
- echo extension=php_openssl.dll >> php.ini
- SET PATH=C:\tools\php;%PATH%
- cd C:\projects\stakx
- php -r "readfile('http://getcomposer.org/installer');" | php
- php composer.phar install --no-interaction --prefer-dist
test_script:
- cd C:\projects\stakx
- vendor\bin\phpunit.bat
notifications:
- provider: Webhook
url: http://helit.tech:8093/+sujevo-dev/showSuccessfulBuildMessages=always
on_build_success: true
on_build_failure: true
on_build_status_changed: true
| Use current PHP on Windows testing again | Use current PHP on Windows testing again | YAML | mit | allejo/stakx,stakx-io/stakx,stakx-io/stakx,allejo/stakx |
64e06473cfc7111563a6ba0828266d829060d1a1 | appveyor.yml | appveyor.yml | version: 1.0.{build}
image: Visual Studio 2017
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '{version}'
package_version: '{version}'
before_build:
- cmd: >-
cd Source
nuget restore
build:
verbosity: minimal | version: 0.0.{build}
image: Visual Studio 2017
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '{version}'
package_version: '{version}'
before_build:
- cmd: >-
cd Source
nuget restore
build:
verbosity: minimal | Decrease the version for testing builds | Decrease the version for testing builds
| YAML | apache-2.0 | stevenxi/EntityFramework.Enhancement |
7256b43ef7f00b6aa89fbf7e474cd9c59bf4a0ce | fixtures/vcr_cassettes/POST_messages_create_missing_params.yml | fixtures/vcr_cassettes/POST_messages_create_missing_params.yml | ---
http_interactions:
- request:
method: post
uri: http://localhost:3002/api/messages?message%5Bbody%5D=Hello%20people&message%5Btrack_id%5D=&message%5Buser_id%5D=15
body:
encoding: UTF-8
string: ''
headers:
User-Agent:
- Faraday v0.8.7
Content-Length:
- '0'
Accept-Encoding:
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
Accept:
- '*/*'
response:
status:
code: 400
message: Bad Request
headers:
Content-Type:
- application/json; charset=utf-8
Cache-Control:
- no-cache
X-Request-Id:
- 31e81c2ecf740a72294d7e97048258d6
X-Runtime:
- '0.109530'
Connection:
- close
Server:
- thin 1.5.1 codename Straight Razor
body:
encoding: UTF-8
string: '{"error":{"track_id":["can''t be blank"]}}'
http_version:
recorded_at: Tue, 25 Jun 2013 20:11:56 GMT
recorded_with: VCR 2.5.0
| ---
http_interactions:
- request:
method: post
uri: http://localhost:3002/api/messages?message%5Bbody%5D=Hello%20people&message%5Btrack_id%5D=&message%5Buser_id%5D=27
body:
encoding: UTF-8
string: ''
headers:
User-Agent:
- Faraday v0.8.7
Content-Length:
- '0'
Accept-Encoding:
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
Accept:
- '*/*'
response:
status:
code: 400
message: Bad Request
headers:
Content-Type:
- application/json; charset=utf-8
Cache-Control:
- no-cache
X-Request-Id:
- 2093a661c2427519d40bd061fe2896ad
X-Runtime:
- '0.004673'
Connection:
- close
Server:
- thin 1.5.1 codename Straight Razor
body:
encoding: UTF-8
string: '{"error":{"track_id":["can''t be blank"]}}'
http_version:
recorded_at: Tue, 25 Jun 2013 20:13:57 GMT
recorded_with: VCR 2.5.0
| Remove failing vcr cassette, run rspec again to pass all tests | Remove failing vcr cassette, run rspec again to pass all tests
| YAML | mit | 7maples/backchannel-app,7maples/backchannel-app |
ca210b056c2cc015cdd5cbde542e85227dc2332c | .github/workflows/ci-workflow.yml | .github/workflows/ci-workflow.yml | name: j-pet-continuous-integration-tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: system update
run: |
sudo apt-get -qq update
sudo apt-get install -y git libboost-all-dev libtbb-dev cmake
- name: download and setup ROOT
run: |
wget https://root.cern/download/root_v6.12.06.Linux-ubuntu16-x86_64-gcc5.4.tar.gz
tar xzf root_v6.12.06.Linux-ubuntu16-x86_64-gcc5.4.tar.gz
source root/bin/thisroot.sh
- name: cmake and make
run: |
mkdir build
cd build
cmake ..
make all tests -j4
source bin/thisframework.sh
- name: run tests
run: ctest -j6 -C Debug -T test --output-on-failure
| name: j-pet-continuous-integration-tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: system update
run: |
sudo apt-get -qq update
sudo apt-get install -y git libboost-all-dev libtbb-dev cmake
- name: download and setup ROOT
run: |
wget https://root.cern/download/root_v6.12.06.Linux-ubuntu16-x86_64-gcc5.4.tar.gz
tar xzf root_v6.12.06.Linux-ubuntu16-x86_64-gcc5.4.tar.gz
- name: cmake and make
run: |
source root/bin/thisroot.sh
mkdir build
cd build
cmake ..
make all tests -j4
- name: run tests
run: |
source bin/thisframework.sh
ctest -j6 -C Debug -T test --output-on-failure
| Move thisroot to the next run | Move thisroot to the next run
| YAML | apache-2.0 | JPETTomography/j-pet-framework,JPETTomography/j-pet-framework,JPETTomography/j-pet-framework |
74e2b99da3c8b5ec50244edbeb4cb405f7f3ad34 | .github/workflows/dotnet-core.yml | .github/workflows/dotnet-core.yml | name: .NET Core
on: push
jobs:
Build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0
- name: Clean
run: dotnet clean --configuration Release && dotnet nuget locals all --clear
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
Test:
needs: Build
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0
- name: Clean
run: dotnet clean --configuration Release && dotnet nuget locals all --clear
- name: Install dependencies
run: dotnet restore
- name: Test
run: dotnet test *.Tests/*.Tests.csproj --logger:"console;verbosity=normal" | name: .NET Core
on: push
jobs:
Build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.*
- name: Clean
run: dotnet clean --configuration Release && dotnet nuget locals all --clear
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
Test:
needs: Build
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.*
- name: Clean
run: dotnet clean --configuration Release && dotnet nuget locals all --clear
- name: Install dependencies
run: dotnet restore
- name: Test
run: dotnet test *.Tests/*.Tests.csproj --logger:"console;verbosity=normal" | Fix .net core version in pipe | Fix .net core version in pipe
| YAML | unlicense | NonlinearFruit/Retrospector |
74547b70a32114e59192d0aa5676cd6cfa1dbcc4 | .github/workflows/linux-tests.yml | .github/workflows/linux-tests.yml | name: Test Linux Platform
on:
pull_request:
branches:
- stable
jobs:
Test-Linux-Platform:
runs-on: ubuntu-latest
container: swift:5.1
steps:
- uses: actions/checkout@v2
- name: Run Unit Tests
run: swift test | name: Test Linux Platform
on:
pull_request:
branches:
- stable
jobs:
Test-Linux-Platform:
runs-on: ubuntu-latest
container:
image: swift:5.2
options: --cap-add=SYS_PTRACE --security-opt seccomp=unconfined --security-opt apparmor=unconfined
steps:
- uses: actions/checkout@v2
- name: Run Unit Tests
run: swift test | Update the Swift 5.2 and new configurations | Update the Swift 5.2 and new configurations
| YAML | bsd-3-clause | httpswift/swifter,httpswift/swifter |
c4b7a1ccc16fee8f91adddd42e846bfb8adf33bc | demo/_config.yml | demo/_config.yml | server: true
auto: true
exclude: Gemfile, Gemfile.lock, Guardfile, vendor
| server: true
auto: true
exclude: Gemfile, Gemfile.lock, Guardfile, node_modules, test, scss
include: css
| Include livereload back to files to build by jekyll | Include livereload back to files to build by jekyll
| YAML | mit | tyom/stratum,tyom/stratum |
32e4885ef3468aa051f2b9da02eea451a600600e | docs/.travis.yml | docs/.travis.yml | ---
language: node_js
node_js:
- "8"
sudo: false
dist: trusty
addons:
chrome: stable
cache:
yarn: true
env:
global:
# See https://git.io/vdao3 for details.
- JOBS=1
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash
- export PATH=$HOME/.yarn/bin:$PATH
install:
# absurdly, yarn reliably fails on the first try and succeeds on the second here.
- until yarn install --non-interactive; do echo "trying yarn again"; done
script:
- yarn lint:hbs
- yarn lint:js
- yarn test
| ---
language: node_js
node_js:
- "8"
sudo: false
dist: trusty
addons:
chrome: stable
cache:
yarn: true
env:
global:
# See https://git.io/vdao3 for details.
- JOBS=1
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash
- export PATH=$HOME/.yarn/bin:$PATH
install:
- yarn install --non-interactive
script:
- yarn lint:hbs
- yarn lint:js
- yarn test
| Revert "trying yarn with retry" | Revert "trying yarn with retry"
This reverts commit 7ef555011ba7f410a24fc6edf66fa5832df79765.
| YAML | mit | ember-animation/ember-animated,ember-animation/ember-animated,ember-animation/ember-animated |
2ae91f06e224401bc98888523faf5d797104cd48 | openmoltools/meta.yaml | openmoltools/meta.yaml | package:
name: openmoltools
version: 0.7.1
source:
git_url: https://github.com/choderalab/openmoltools.git
git_tag: v0.7.1
build:
number: 1
skip:
- [win32 or (win and py2k)]
# TODO no openmm py35 win
- [win and py35]
requirements:
build:
- python
- setuptools
- pandas
- six
- mdtraj
- numpy
- numpydoc
- scipy
- pandas
- openmm ==7.0rc1
- ambermini
- pytables
- parmed
# - rdkit # rdkit is an optional dependency, may want to comment this out for the release version.
run:
- python
- setuptools
- pandas
- six
- mdtraj
- numpy
- numpydoc
- scipy
- openmm ==7.0rc1
- ambermini
- pytables
- parmed
- libgfortran 1.* # [linux and np == 19]
# - rdkit # rdkit is an optional dependency, may want to comment this out for the release version.
test:
requires:
- nose
- openmmtools
imports:
- openmoltools
commands:
- nosetests openmoltools -v -a '!slow'
about:
home: https://github.com/choderalab/openmoltools
license: GNU Lesser General Public License v2 or later (LGPLv2+)
| package:
name: openmoltools
version: 0.7.1
source:
git_url: https://github.com/choderalab/openmoltools.git
git_tag: v0.7.1
build:
number: 2
skip:
- [win32 or (win and py2k)]
# TODO no openmm py35 win
- [win and py35]
requirements:
build:
- python
- setuptools
- pandas
- six
- mdtraj
- numpy
- numpydoc
- scipy
- pandas
- openmm >=7.0.1
- ambermini
- pytables
- parmed
# - rdkit # rdkit is an optional dependency, may want to comment this out for the release version.
run:
- python
- setuptools
- pandas
- six
- mdtraj
- numpy
- numpydoc
- scipy
- openmm ==7.0rc1
- ambermini
- pytables
- parmed
- libgfortran 1.* # [linux and np == 19]
# - rdkit # rdkit is an optional dependency, may want to comment this out for the release version.
test:
requires:
- nose
- openmmtools
imports:
- openmoltools
commands:
- nosetests openmoltools -v -a '!slow'
about:
home: https://github.com/choderalab/openmoltools
license: GNU Lesser General Public License v2 or later (LGPLv2+)
| Use OpenMM 7.0.1 (instead of 7.0rc1) | [openmoltools] Use OpenMM 7.0.1 (instead of 7.0rc1)
| YAML | mit | marscher/omnia-conda-recipes,jchodera/conda-recipes,marscher/omnia-conda-recipes,jchodera/conda-recipes,omnia-md/conda-recipes,marscher/omnia-conda-recipes,jchodera/conda-recipes,cwehmeyer/conda-recipes,jchodera/conda-recipes,omnia-md/conda-recipes,swails/conda-recipes,omnia-md/conda-recipes,cwehmeyer/conda-recipes,cwehmeyer/conda-recipes,peastman/conda-recipes,marscher/omnia-conda-recipes,cwehmeyer/conda-recipes,peastman/conda-recipes,swails/conda-recipes,peastman/conda-recipes,swails/conda-recipes,swails/conda-recipes |
64de54aa1a057b385186ea05762dc95356c3a251 | packages/mo/model.yaml | packages/mo/model.yaml | homepage: http://github.com/tittoassini/model
changelog-type: ''
hash: 3fe74f0af303bd4a4c7689ab0830e33c1c895464c254f12f3b11b534d30e18dd
test-bench-deps:
base: -any
containers: -any
model: -any
ghc-prim: ! '>=0.4.0.0'
tasty-quickcheck: ! '>=0.8.4'
tasty-hunit: ! '>=0.9.2'
tasty: ! '>=0.11.0.2'
pretty: -any
maintainer: tittoassini@gmail.com
synopsis: Derive a model of a data type using Generics
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
containers: ! '>=0.5.6.2'
transformers: ! '>=0.4'
deepseq: ! '>=1.4'
pretty: ! '>=1.1.2.0'
ListLike: ! '>=4.2.1'
all-versions:
- '0.2'
- '0.2.1'
author: Pasqualino `Titto` Assini
latest: '0.2.1'
description-type: haddock
description: See the github homepage for a tutorial
license-name: BSD3
| homepage: http://github.com/tittoassini/model
changelog-type: ''
hash: 0ee85daf1fe8f02f6050c1648642a322054069424d4a92a8259c2165cd36f5ca
test-bench-deps:
base: ! '>=4.7 && <5'
containers: ! '>=0.5.6.2'
model: ! '>=0.2.4'
ghc-prim: ! '>=0.3.1.0'
tasty-quickcheck: ! '>=0.8.4'
tasty-hunit: ! '>=0.9.2'
tasty: ! '>=0.11.0.2'
pretty: ! '>=1.1.2.0'
maintainer: tittoassini@gmail.com
synopsis: Derive a model of a data type using Generics
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
containers: ! '>=0.5.6.2'
transformers: ! '>=0.4'
deepseq: ! '>=1.4'
pretty: ! '>=1.1.2.0'
ListLike: ! '>=4.2.1'
all-versions:
- '0.2'
- '0.2.1'
- '0.2.4'
author: Pasqualino `Titto` Assini
latest: '0.2.4'
description-type: haddock
description: See the <http://github.com/tittoassini/model online tutorial>
license-name: BSD3
| Update from Hackage at 2017-03-22T15:36:34Z | Update from Hackage at 2017-03-22T15:36:34Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
7d28605d0a47d18b4cbeb3bd06486dde754e9889 | metadata/de.bahnhoefe.deutschlands.bahnhofsfotos.yml | metadata/de.bahnhoefe.deutschlands.bahnhofsfotos.yml | Categories:
- Navigation
- Games
License: MIT
AuthorName: Railwaystations Team
WebSite: https://railway-stations.org
SourceCode: https://github.com/RailwayStations/RSAndroidApp
IssueTracker: https://github.com/RailwayStations/RSAndroidApp/issues
AutoName: Railway station photos
RepoType: git
Repo: https://github.com/RailwayStations/RSAndroidApp.git
Builds:
- versionName: 12.2.2
versionCode: 48
commit: 12.2.2
subdir: app
gradle:
- yes
- versionName: 12.2.5
versionCode: 51
commit: 12.2.5
subdir: app
gradle:
- yes
- versionName: 12.3.0
versionCode: 52
commit: 12.3.0
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 12.3.0
CurrentVersionCode: 52
| Categories:
- Navigation
- Games
License: MIT
AuthorName: Railwaystations Team
WebSite: https://railway-stations.org
SourceCode: https://github.com/RailwayStations/RSAndroidApp
IssueTracker: https://github.com/RailwayStations/RSAndroidApp/issues
AutoName: Railway station photos
RepoType: git
Repo: https://github.com/RailwayStations/RSAndroidApp.git
Builds:
- versionName: 12.2.2
versionCode: 48
commit: 12.2.2
subdir: app
gradle:
- yes
- versionName: 12.2.5
versionCode: 51
commit: 12.2.5
subdir: app
gradle:
- yes
- versionName: 12.3.0
versionCode: 52
commit: 12.3.0
subdir: app
gradle:
- yes
- versionName: 12.3.1
versionCode: 53
commit: 12.3.1
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 12.3.1
CurrentVersionCode: 53
| Update Railway station photos to 12.3.1 (53) | Update Railway station photos to 12.3.1 (53)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
d581bc0017d85676a49433e59dc70877c9714a8a | sli/admin-tools/admin-rails/config/thin.yml | sli/admin-tools/admin-rails/config/thin.yml | port: 3001
daemonize: true
pid: /tmp/pid/thin-admin.pid | port: 3001
daemonize: true
pid: /tmp/pid-admin/thin-admin.pid | Put admin pid file into a separate directory to avoid permission problem | Put admin pid file into a separate directory to avoid permission problem
| YAML | apache-2.0 | inbloom/secure-data-service,inbloom/secure-data-service,inbloom/secure-data-service,inbloom/secure-data-service,inbloom/secure-data-service |
981f464a07cf3aa6ac9487175fad0eee4ad1dcd3 | ansible/roles/common_config/defaults/main.yml | ansible/roles/common_config/defaults/main.yml | ---
# defaults file for apache
rhel_common_packages:
- libselinux-python
- python-devel
- python-pip
- bzip2
- curl
- gawk
- gzip
- git
- ksh
- lsof
- nc
- perl
- screen
- sed
- strace
- sysstat
- telnet
- tmux
- unzip
- vim
- wget
- zip
deb_common_packages:
- python-apt
- apt-transport-https
- git
| ---
# defaults file for apache
rhel_common_packages:
- NetworkManager
- libselinux-python
- python-devel
- python-pip
- bzip2
- curl
- gawk
- gzip
- git
- ksh
- lsof
- nc
- perl
- screen
- sed
- strace
- sysstat
- telnet
- tmux
- unzip
- vim
- wget
- zip
deb_common_packages:
- python-apt
- apt-transport-https
- git
| Install Network Manager so we can use the nmcli ansible role | Install Network Manager so we can use the nmcli ansible role
| YAML | mit | proffalken/aws-blog-framework,proffalken/aws-blog-framework,proffalken/aws-blog-framework |
b84f7e834a26796673c4536a13f7b4aa90b29244 | etc/helm/examples/aws-gp3-values.yaml | etc/helm/examples/aws-gp3-values.yaml | # SPDX-FileCopyrightText: Pachyderm, Inc. <info@pachyderm.com>
# SPDX-License-Identifier: Apache-2.0
# Uses GP3 Storage
deployTarget: AMAZON
# This uses GP3 which requires the CSI Driver https://docs.aws.amazon.com/eks/latest/userguide/ebs-csi.html
# And a storageclass configured named gp3
etcd:
storageClass: gp3
pachd:
storage:
amazon:
bucket: blah
# this is an example access key ID taken from https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_access-keys.html
id: AKIAIOSFODNN7EXAMPLE
# this is an example secret access key taken from https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_access-keys.html
secret: wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY
cloudFrontDistribution: cfd-123
serviceAccount:
additionalAnnotations:
eks.amazonaws.com/role-arn: blah123
worker:
serviceAccount:
additionalAnnotations:
eks.amazonaws.com/role-arn: blah123
postgresql:
persistence:
storageClass: gp3
| # SPDX-FileCopyrightText: Pachyderm, Inc. <info@pachyderm.com>
# SPDX-License-Identifier: Apache-2.0
# Uses GP3 Storage
deployTarget: AMAZON
# This uses GP3 which requires the CSI Driver https://docs.aws.amazon.com/eks/latest/userguide/ebs-csi.html
# And a storageclass configured named gp3
etcd:
storageClass: gp3
pachd:
storage:
amazon:
bucket: blah
region: some-region
# this is an example access key ID taken from https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_access-keys.html
id: AKIAIOSFODNN7EXAMPLE
# this is an example secret access key taken from https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_access-keys.html
secret: wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY
cloudFrontDistribution: cfd-123
serviceAccount:
additionalAnnotations:
eks.amazonaws.com/role-arn: blah123
worker:
serviceAccount:
additionalAnnotations:
eks.amazonaws.com/role-arn: blah123
postgresql:
persistence:
storageClass: gp3
| Fix AWS gp3 helm example. | Fix AWS gp3 helm example.
| YAML | apache-2.0 | pachyderm/pfs,pachyderm/pfs,pachyderm/pfs |
a6e96f6864dd1ff8b28cbf36e07ff7cf54073b6a | docs/antora.yml | docs/antora.yml | name: rubocop
title: RuboCop
# We always provide version without patch here (e.g. 1.1),
# as patch versions should not appear in the docs.
version: '1.12'
nav:
- modules/ROOT/nav.adoc
| name: rubocop
title: RuboCop
# We always provide version without patch here (e.g. 1.1),
# as patch versions should not appear in the docs.
version: 'master'
nav:
- modules/ROOT/nav.adoc
| Switch back the docs version to master | Switch back the docs version to master
| YAML | mit | rrosenblum/rubocop,rrosenblum/rubocop,tejasbubane/rubocop,maxjacobson/rubocop,maxjacobson/rubocop,tejasbubane/rubocop,rrosenblum/rubocop,tejasbubane/rubocop,bbatsov/rubocop,bbatsov/rubocop,maxjacobson/rubocop |
b7639516eb444f5a294da78f4ff8288ec6217497 | demos/gtk2/snapcraft.yaml | demos/gtk2/snapcraft.yaml | name: gtk2-demo-2
version: "0"
summary: Gtk2 launcher demo
description: This is using the gtk2 demo
confinement: strict
apps:
gtk2-demo:
command: gtk-launch gtk-demo
plugs: [unity7, x11]
parts:
gtk2-demo:
plugin: nil
stage-packages: [gtk2.0-examples]
# this is the cloud part
gtk2-launcher:
source: https://github.com/ubuntu/snapcraft-desktop-helpers.git
source-subdir: gtk
plugin: make
build-packages:
- libgtk2.0-dev
stage-packages:
- shared-mime-info
- dmz-cursor-theme
- light-themes
- ttf-ubuntu-font-family
- libgtk2.0-0
- libgdk-pixbuf2.0-0
- libglib2.0-bin
- libgtk2.0-bin
- unity-gtk2-module
| name: gtk2-demo-2
version: "0"
summary: Gtk2 launcher demo
description: This is using the gtk2 demo
confinement: strict
apps:
gtk2-demo:
command: gtk-launch gtk-demo
plugs: [unity7, x11]
gsettings:
command: gtk-launch gsettings
parts:
gtk2-demo:
plugin: nil
stage-packages: [gtk2.0-examples, libglib2.0-bin]
# this is the cloud part
gtk2-launcher:
source: https://github.com/ubuntu/snapcraft-desktop-helpers.git
source-subdir: gtk
plugin: make
build-packages:
- libgtk2.0-dev
stage-packages:
- libxkbcommon0 # XKB_CONFIG_ROOT
- ttf-ubuntu-font-family
- dmz-cursor-theme
- light-themes
- shared-mime-info
- libgtk2.0-0
- libgdk-pixbuf2.0-0
- libglib2.0-bin
- libgtk2.0-bin
- unity-gtk2-module
| Update demo deps + add gsettings | Update demo deps + add gsettings
| YAML | mit | ubuntu/snapcraft-desktop-helpers |
d527e737f8809d35a10db4768c64caa470c4e7c5 | plays/02_bootstrap.yml | plays/02_bootstrap.yml | ---
- hosts: localhost
become: true
pre_tasks:
- include: ssh_key.yml
roles:
- jtyr.environment
- tersmitten.limits
- willshersystems.sshd
- franklinkim.vim
- groks.repo-google
post_tasks:
- name: install software
package:
name: "{{ item }}"
state: latest
with_items:
- tmux
- corkscrew
- krb5-workstation
- google-chrome-stable
- deadbeef
- guake
- skype
- vlc
- sublime_text
- liberation-fonts
- torbrowser-launcher
- ncdu
- vagrant
- strace
tags: packages
| ---
- hosts: localhost
become: true
pre_tasks:
- include: ssh_key.yml
roles:
- jtyr.environment
- tersmitten.limits
- willshersystems.sshd
- franklinkim.vim
- groks.repo-google
post_tasks:
- name: install software
package:
name: "{{ item }}"
state: latest
with_items:
- tmux
- corkscrew
- krb5-workstation
- google-chrome-stable
- deadbeef
- guake
- skype
- vlc
- sublime_text
- liberation-fonts
- torbrowser-launcher
- ncdu
- vagrant
- strace
tags: packages
- name: add current user to vboxusers group
user:
name="{{ lookup('env','USER') }}"
groups=vboxusers
append=yes
| Add user to vboxusers group | Add user to vboxusers group
| YAML | bsd-2-clause | kostyrevaa/workstation |
99e6d29799e42dcdb3dbc82ee069e29298894962 | environment.yml | environment.yml | name: gala
channels:
- conda-forge
dependencies:
- python>=3.5*
- setuptools>=19.6*
- cython>=0.25*
- pytest>=3*
- nose>=1.3
- numpy>=1.11*
- numpydoc>=0.5*
- h5py>=2.6*
- matplotlib>=1.5*
- scipy>=0.17*
- scikit-learn>=0.17*
- scikit-image>=0.12*
- networkx>=1.10*
- jupyter>=1.0*
- pyzmq>=15.*
- coverage>=4.0
- pytest-cov>=2.2
- viridis>=0.4
- memory_profiler>=0.41
- line_profiler>=1.1
- tqdm>=4.7
| name: gala
channels:
- conda-forge
dependencies:
- python>=3.6*
- setuptools>=19.6*
- cython>=0.25*
- pytest>=3*
- nose>=1.3
- numpy>=1.11*
- numpydoc>=0.5*
- h5py>=2.6*
- matplotlib>=1.5*
- scipy>=0.17*
- scikit-learn>=0.17*
- scikit-image>=0.12*
- networkx>=1.10*
- jupyter>=1.0*
- pyzmq>=15.*
- coverage>=4.0
- pytest-cov>=2.2
- viridis>=0.4
- memory_profiler>=0.41
- line_profiler>=1.1
- tqdm>=4.7
| Change v to 3.6 in env.yml | Change v to 3.6 in env.yml
| YAML | bsd-3-clause | jni/gala,janelia-flyem/gala |
4bd1c96b7e908edb50cf9ba2680aeb625e0e4203 | environment.yml | environment.yml |
dependencies:
- click
- fiona
- gdal
- geopy
- matplotlib
- netCDF4
- numba
- pyparsing
- rasterio
- rpy2
- shapely
- xlrd
- pip:
- pylru
|
dependencies:
- click
- fiona
- gdal
- geopy
- joblib
- matplotlib
- netCDF4
- numba
- pandas
- pyparsing
- rasterio
- r-lme4
- rpy2
- shapely
- xlrd
- pip:
- pylru
| Add joblib, pandas, and r-lme | Add joblib, pandas, and r-lme
This file list the requirements for setting up a native conda
environment for running projections.
| YAML | apache-2.0 | ricardog/raster-project,ricardog/raster-project,ricardog/raster-project,ricardog/raster-project,ricardog/raster-project |
d032f0ee42c310f0ddf863c4f8264b3719068c04 | config/document_cloud.yml | config/document_cloud.yml | <% secrets = YAML.load_file('./secrets/secrets.yml')[ENV['RAILS_ENV'] || "development"] %>
defaults: &defaults
cloud_crowd_server: http://dev.dcloud.org:8080
server_root: dev.dcloud.org
aws_zone: us-east-1c
preconfigured_ami_id: ami-1770647e
development:
<<: *defaults
staging:
<<: *defaults
cloud_crowd_server: ec2-50-16-197-147.compute-1.amazonaws.com:8080
server_root: staging.documentcloud.org
asset_root: "//s3.amazonaws.com/dcloud_staging"
production:
<<: *defaults
cloud_crowd_server: <%= secrets['db_host'] %>:8080
server_root: www.documentcloud.org
asset_root: "//s3.amazonaws.com/s3.documentcloud.org"
db_volume_id: vol-d4c305bd
test:
<<: *defaults | <% secrets = YAML.load_file('./secrets/secrets.yml')[ENV['RAILS_ENV'] || "development"] %>
defaults: &defaults
cloud_crowd_server: http://dev.dcloud.org:8080
server_root: dev.dcloud.org
aws_zone: us-east-1c
preconfigured_ami_id: ami-11a4b578
development:
<<: *defaults
staging:
<<: *defaults
cloud_crowd_server: ec2-50-16-197-147.compute-1.amazonaws.com:8080
server_root: staging.documentcloud.org
asset_root: "//s3.amazonaws.com/dcloud_staging"
production:
<<: *defaults
cloud_crowd_server: <%= secrets['db_host'] %>:8080
server_root: www.documentcloud.org
asset_root: "//s3.amazonaws.com/s3.documentcloud.org"
db_volume_id: vol-d4c305bd
test:
<<: *defaults | Update worker to new shiny rails4 worker. | Update worker to new shiny rails4 worker. | YAML | mit | monofox/documentcloud,dannguyen/documentcloud,ivarvong/documentcloud,roberttdev/dactyl4,gunjanmodi/documentcloud,roberttdev/dactyl4,moodpo/documentcloud,monofox/documentcloud,dannguyen/documentcloud,Teino1978-Corp/Teino1978-Corp-documentcloud,documentcloud/documentcloud,ivarvong/documentcloud,Teino1978-Corp/Teino1978-Corp-documentcloud,gunjanmodi/documentcloud,dannguyen/documentcloud,moodpo/documentcloud,dannguyen/documentcloud,Teino1978-Corp/Teino1978-Corp-documentcloud,ivarvong/documentcloud,documentcloud/documentcloud,monofox/documentcloud,monofox/documentcloud,documentcloud/documentcloud,roberttdev/dactyl4,gunjanmodi/documentcloud,documentcloud/documentcloud,roberttdev/dactyl4,Teino1978-Corp/Teino1978-Corp-documentcloud,moodpo/documentcloud,ivarvong/documentcloud,gunjanmodi/documentcloud,moodpo/documentcloud |
6e727871f4d4486f8a5ee6f7ae0593b02c50c73f | recipes/pytz/meta.yaml | recipes/pytz/meta.yaml | {% set version="2016.7" %}
package:
name: pytz
version: {{ version }}
source:
fn: pytz-{{ version }}.tar.bz2
url: https://pypi.io/packages/source/p/pytz/pytz-{{ version }}.tar.bz2
sha256: 6eab31709e3a4aea748457707da45e805b650cbb352583805d2417de2a1dd71e
build:
number: 0
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
build:
- python
- setuptools
run:
- python
test:
imports:
- pytz
about:
home: http://pythonhosted.org/pytz/
license: MIT
license_file: LICENSE.txt
summary: World timezone definitions, modern and historical
description: |
pytz brings the Olson tz database into Python. This library allows
accurate and cross platform timezone calculations using Python 2.4 or
higher. It also solves the issue of ambiguous times at the end of daylight
saving time.
doc_url: http://pythonhosted.org/pytz/
dev_url: https://github.com/newvem/pytz
| {% set version="2016.10" %}
package:
name: pytz
version: {{ version }}
source:
fn: pytz-{{ version }}.tar.bz2
url: https://pypi.io/packages/source/p/pytz/pytz-{{ version }}.tar.bz2
sha256: 7016b2c4fa075c564b81c37a252a5fccf60d8964aa31b7f5eae59aeb594ae02b
build:
number: 0
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
build:
- python
- setuptools
run:
- python
test:
imports:
- pytz
about:
home: http://pythonhosted.org/pytz/
license: MIT
license_file: LICENSE.txt
summary: World timezone definitions, modern and historical
description: |
pytz brings the Olson tz database into Python. This library allows
accurate and cross platform timezone calculations using Python 2.4 or
higher. It also solves the issue of ambiguous times at the end of daylight
saving time.
doc_url: http://pythonhosted.org/pytz/
dev_url: https://github.com/newvem/pytz
| Update pytz recipe to version 2016.10 | Update pytz recipe to version 2016.10
| YAML | bsd-3-clause | jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda |
9d58ee6da35c6bed6ba8b40cea49542a10924101 | .github/workflows/docs.yml | .github/workflows/docs.yml | name: Build and deploy to netlify
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: dart-lang/setup-dart@v1
- name: Get dependencies
run: dart pub get
working-directory: docs
- name: Run build
env:
IS_RELEASE: ${{ github.event_name == 'push' && github.event.ref == 'refs/heads/master' }}
run: |
dart run tool/ci_build.dart
rm -rf deploy/packages deploy/build.manifest deploy/.dart_tool deploy/.packages
working-directory: docs
- name: Deploy to netlify
uses: nwtgck/actions-netlify@v1.1
with:
production-branch: master
publish-dir: docs/deploy
enable-pull-request-comment: true
enable-commit-comment: false
netlify-config-path: "./netlify.toml"
alias: deploy-preview-${{ github.event.number }}
github-token: ${{ secrets.GITHUB_TOKEN }}
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
| name: Build and deploy to netlify
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: dart-lang/setup-dart@v1
- name: Get dependencies
run: dart pub get
working-directory: docs
- name: Run build
env:
IS_RELEASE: ${{ github.event_name == 'push' && github.event.ref == 'refs/heads/master' }}
run: |
dart run tool/ci_build.dart
rm -rf deploy/packages deploy/build.manifest deploy/.dart_tool deploy/.packages
working-directory: docs
- name: Deploy to netlify
uses: nwtgck/actions-netlify@v1.1
with:
production-branch: master
publish-dir: docs/deploy
enable-pull-request-comment: true
enable-commit-comment: false
netlify-config-path: "./netlify.toml"
github-token: ${{ secrets.GITHUB_TOKEN }}
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
| Remove alias from netlify publish | Remove alias from netlify publish
| YAML | mit | simolus3/drift,simolus3/drift,simolus3/drift,simolus3/drift,simolus3/drift,simolus3/moor,simolus3/moor,simolus3/moor,simolus3/moor,simolus3/moor,simolus3/drift,simolus3/drift,simolus3/moor,simolus3/moor |
9d9f0ffcb8a7a4674647e4c012c8a3e444e230f3 | .github/workflows/lint.yml | .github/workflows/lint.yml | name: Lint
on:
- push
- pull_request
jobs:
lint:
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
runs-on: ubuntu-latest
name: Lint the CSS
steps:
- uses: actions/checkout@v3
- uses: actions-hub/stylelint@master
env:
PATTERN: "./mink_plugin/css/options.css"
#- name: Lint CSS
# run: |
# npm install stylelint-use-logical --save-dev
# node_modules/.bin/stylelint ./mink-plugin/css/options.css
# Ultimately check minkui.css, too, but for #348, just fix options.css
# node_modules/.bin/stylelint ./mink-plugin/css/minkui.css ./mink-plugin/css/options.css
| name: Lint
on:
- push
- pull_request
jobs:
lint:
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
runs-on: ubuntu-latest
name: Lint the CSS
steps:
- uses: actions/checkout@v3
- uses: actions-hub/stylelint@master
env:
PATTERN: "./mink-plugin/css/options.css"
#- name: Lint CSS
# run: |
# npm install stylelint-use-logical --save-dev
# node_modules/.bin/stylelint ./mink-plugin/css/options.css
# Ultimately check minkui.css, too, but for #348, just fix options.css
# node_modules/.bin/stylelint ./mink-plugin/css/minkui.css ./mink-plugin/css/options.css
| Use underscore instead of dash | Use underscore instead of dash
| YAML | mit | machawk1/Mink,machawk1/Mink |
c21cbbd8a94cec1672b1ff09c94b4716ac86c74c | .github/workflows/main.yml | .github/workflows/main.yml | name: CI
on:
push:
branches: [ feature/github-actions-for-windows-compilers ]
pull_request:
branches: [ master ]
jobs:
build-windows-vs2019:
name: Windows VS2019 Debug
runs-on: [windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: recursive
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.0.1
- name: Checkout UnitTest++
uses: actions/checkout@v2
with:
repository: unittest-cpp/unittest-cpp
path: ${GITHUB_WORKSPACE}/unittest-cpp
- name: Build
run: MSBuild.exe test/vs2019/etl.sln
- name: Run tests
run: ./test/etl_tests
| name: CI
on:
push:
branches: [ feature/github-actions-for-windows-compilers ]
pull_request:
branches: [ master ]
jobs:
build-windows-vs2019:
name: Windows VS2019 Debug
runs-on: [windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: recursive
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.0.1
- name: Checkout UnitTest++
uses: actions/checkout@v2
with:
repository: unittest-cpp/unittest-cpp
path: ${GITHUB_WORKSPACE}../../unittest-cpp
- name: Build
run: MSBuild.exe test/vs2019/etl.sln
- name: Run tests
run: ./test/etl_tests
| Add VS2019 configuration to Github CI | Add VS2019 configuration to Github CI
| YAML | mit | ETLCPP/etl,ETLCPP/etl,ETLCPP/etl,ETLCPP/etl |
29cba34f09ee5029653b72a0c6cf7c6e650bc52e | .github/workflows/main.yml | .github/workflows/main.yml | name: PHPStan
on: [push, pull_request]
jobs:
phpstan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.ref }}
- name: Create Vendor Directory
run: |
echo Making directory...
mkdir vendor
echo Directory made.
- name: wget virions, FormAPI
uses: wei/wget@v1
with:
args: -O vendor/FormAPI.phar https://poggit.pmmp.io/r/54589/FormApi_dev-9.phar
- name: wget virions, Commando
uses: wei/wget@v1
with:
args: -O vendor/Commando.phar https://poggit.pmmp.io/r/89644/Commando_dev-13.phar
- name: Run PHPStan
uses: paroxity/pmmp-phpstan-action@3.23.1
with:
phpstan-config: phpstan.neon.dist
| name: PHPStan
on: [push, pull_request]
jobs:
phpstan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.ref }}
- name: Create Vendor Directory
run: |
echo Making directory...
mkdir vendor
echo Directory made.
- name: wget virions, FormAPI
uses: wei/wget@v1
with:
args: -O vendor/FormAPI.phar https://poggit.pmmp.io/r/54589/FormApi_dev-9.phar
- name: wget virions, Commando
uses: wei/wget@v1
with:
args: -O vendor/Commando.phar https://poggit.pmmp.io/r/89644/Commando_dev-13.phar
- name: Run PHPStan
uses: paroxity/pmmp-phpstan-action@3.22.1
with:
phpstan-config: phpstan.neon.dist
| Downgrade pmmp-phpstan-action from 3.23.1 to 3.22.1 | Downgrade pmmp-phpstan-action from 3.23.1 to 3.22.1 | YAML | apache-2.0 | DaPigGuy/PiggyCustomEnchants |
f756eb7fe015788ae417cdc0095de2ad4acc8247 | .github/workflows/main.yml | .github/workflows/main.yml | name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build_linux:
name: Build on linux systems
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-16.04]
steps:
- name: Install dependencies
run: sudo apt-get install cmake xorg-dev libglu1-mesa-dev zlib1g-dev zenity
- uses: actions/checkout@v1
with:
submodules: recursive
- name: CMake
run: cmake .
- name: Build
run: make -j
build_macos:
name: Build on macOS
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
with:
submodules: recursive
- name: CMake
run: cmake .
- name: Build
run: make -j
build_windows:
name: Build on Windows
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
with:
submodules: recursive
- name: Setup MSBuild.exe
uses: warrenbuckley/Setup-MSBuild@v1
- name: CMake
run: cmake .
- name: Build
run: msbuild /v:m /p:Configuration=Release tev.sln
| name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build_linux:
name: Build on linux systems
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-16.04]
steps:
- name: Install dependencies
run: sudo apt-get install cmake xorg-dev libglu1-mesa-dev zlib1g-dev zenity
- uses: actions/checkout@v1
with:
submodules: recursive
- name: CMake
run: cmake .
- name: Build
run: make -j
build_macos:
name: Build on macOS
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
with:
submodules: recursive
- name: CMake
run: cmake .
- name: Build
run: make -j
build_windows:
name: Build on Windows
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
with:
submodules: recursive
- name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@v1.0.2
- name: CMake
run: cmake .
- name: Build
run: msbuild /v:m /p:Configuration=Release tev.sln
| Fix Windows CI by using Microsoft's MSBuild setup | Fix Windows CI by using Microsoft's MSBuild setup
| YAML | bsd-3-clause | Tom94/tev,Tom94/tev,Tom94/tev,Tom94/tev |
7a2036ad007e8502bb05e6b4e354c57f559c9d44 | .github/workflows/main.yml | .github/workflows/main.yml | ---
name: CrateDB SQL
on:
pull_request: ~
push:
branches:
- master
jobs:
test:
name: Test CrateDB SQL on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- name: Setup Gradle Java
uses: actions/setup-java@v1
with:
java-version: 11
- name: Run tests on ${{ matrix.os }}
uses: eskatos/gradle-command-action@v1
with:
arguments: :server:test -Dtests.crate.run-windows-incompatible=${{ matrix.os == 'ubuntu-latest' }}
linkcheck:
name: Sphinx linkcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
python -m pip install -r blackbox/requirements.txt
- name: Run linkcheck
run: |
sphinx-build -n -W -c docs/ -b linkcheck -E docs/ docs/out/html
| ---
name: CrateDB SQL
on:
pull_request: ~
push:
branches:
- master
jobs:
test:
name: Test CrateDB SQL on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- name: Setup Gradle Java
uses: actions/setup-java@v1
with:
java-version: 11
- name: Run tests on ${{ matrix.os }}
uses: eskatos/gradle-command-action@v1
env:
CRATE_TESTS_SQL_REQUEST_TIMEOUT: "20"
with:
arguments: :server:test -Dtests.crate.run-windows-incompatible=${{ matrix.os == 'ubuntu-latest' }}
linkcheck:
name: Sphinx linkcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
python -m pip install -r blackbox/requirements.txt
- name: Run linkcheck
run: |
sphinx-build -n -W -c docs/ -b linkcheck -E docs/ docs/out/html
| Increase SQL request timeout on Github actions | Increase SQL request timeout on Github actions
On windows the tests sometimes run into a timeout.
It looks like the default of 5 seconds is too short.
On Azure pipelines we also used to have a 20 second timeout.
| YAML | apache-2.0 | crate/crate,crate/crate,crate/crate |
e5d2ebb25d6edd953f333bf03ac31edcb04a22f1 | .github/workflows/main.yml | .github/workflows/main.yml | name: build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java-version: [ 8, 11, 17 ]
scala-version: [ "2.11.12", "2.12.15", "2.13.6" ]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
with:
distribution: adopt
java-version: ${{ matrix.java-version }}
- name: build
run: sbt ++${{ matrix.scala-version }} -v +test
- uses: actions/upload-artifact@v2
if: always()
with:
name: test-log (Java ${{ matrix.java-version }}, Scala ${{ matrix.scala-version }})
path: ${{ github.workspace }}/dregex-test.log
| name: build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java-version: [ 8, 11, 17 ]
scala-version: [ "2.11.12", "2.12.15", "2.13.6" ]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v2
with:
distribution: adopt
java-version: ${{ matrix.java-version }}
- name: build
run: sbt ++${{ matrix.scala-version }} -v +test
- uses: actions/upload-artifact@v2
if: always()
with:
name: test-log (Java ${{ matrix.java-version }}, Scala ${{ matrix.scala-version }})
path: ${{ github.workspace }}/dregex-test.log
| Update actions/checkout action to v3 | Update actions/checkout action to v3
| YAML | bsd-2-clause | marianobarrios/dregex |
ef4a29a8477841c9182c3bb9b5f98318c2213952 | .github/workflows/main.yml | .github/workflows/main.yml | # This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
merge-branch:
permissions:
issues: write
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: everlytic/branch-merge@1.1.2
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
source_ref: 'master'
target_branch: 'gh-pages'
| # This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [master]
jobs:
merge-branch:
permissions:
issues: write
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: everlytic/branch-merge@1.1.2
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
source_ref: 'master'
target_branch: 'gh-pages'
| Remove PR merge from workflow | Remove PR merge from workflow | YAML | mit | brombomb/f1hub,brombomb/f1hub |
dec407d95875beef6c95cae7cc577a2bf1cf02fd | .github/workflows/test.yml | .github/workflows/test.yml | name: Test
on: [push, pull_request, workflow_dispatch]
env:
FORCE_COLOR: 1
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["pypy-3.8", "3.7", "3.8", "3.9", "3.10", "3.11-dev"]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: setup.cfg
- name: Install dependencies
run: |
python -m pip install -U pip
python -m pip install -U wheel
python -m pip install -U tox
- name: Tox tests
run: |
tox -e py
env:
PYLAST_API_KEY: ${{ secrets.PYLAST_API_KEY }}
PYLAST_API_SECRET: ${{ secrets.PYLAST_API_SECRET }}
PYLAST_PASSWORD_HASH: ${{ secrets.PYLAST_PASSWORD_HASH }}
PYLAST_USERNAME: ${{ secrets.PYLAST_USERNAME }}
- name: Upload coverage
uses: codecov/codecov-action@v2
with:
flags: ${{ matrix.os }}
name: ${{ matrix.os }} Python ${{ matrix.python-version }}
| name: Test
on: [push, pull_request, workflow_dispatch]
env:
FORCE_COLOR: 1
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["pypy-3.8", "3.7", "3.8", "3.9", "3.10", "3.11-dev"]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: setup.cfg
- name: Install dependencies
run: |
python -m pip install -U pip
python -m pip install -U wheel
python -m pip install -U tox
- name: Tox tests
run: |
tox -e py
env:
PYLAST_API_KEY: ${{ secrets.PYLAST_API_KEY }}
PYLAST_API_SECRET: ${{ secrets.PYLAST_API_SECRET }}
PYLAST_PASSWORD_HASH: ${{ secrets.PYLAST_PASSWORD_HASH }}
PYLAST_USERNAME: ${{ secrets.PYLAST_USERNAME }}
- name: Upload coverage
uses: codecov/codecov-action@v2
with:
flags: ${{ matrix.os }}
name: ${{ matrix.os }} Python ${{ matrix.python-version }}
success:
needs: test
runs-on: ubuntu-latest
name: test successful
steps:
- name: Success
run: echo Test successful
| Add final 'Test successful' to simplify PR status check requirements | Add final 'Test successful' to simplify PR status check requirements
| YAML | apache-2.0 | pylast/pylast |
a42aff9a75831bc4d29509418214d741227da695 | .github/workflows/test.yml | .github/workflows/test.yml | name: Node CI
on: [push, pull_request]
jobs:
test:
name: Run test suite
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v2.3.4
- name: Check file formatting against EditorConfig
uses: editorconfig-checker/action-editorconfig-checker@v1.0.0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2.1.4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test
env:
CI: true
merge-me:
name: Auto-merge dependency updates
needs: test
runs-on: ubuntu-latest
steps:
- uses: ridedott/merge-me-action@v1.8.138
with:
GITHUB_LOGIN: 'dependabot[bot]'
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
| name: Node CI
on: [push, pull_request]
jobs:
test:
name: Run test suite
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v2.3.4
- name: Check file formatting against EditorConfig
uses: editorconfig-checker/action-editorconfig-checker@v1.0.0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2.1.4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test
env:
CI: true
merge-me:
name: Auto-merge dependency updates
needs: test
runs-on: ubuntu-latest
steps:
- uses: ridedott/merge-me-action@v2.1.1
with:
GITHUB_LOGIN: 'dependabot[bot]'
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
| Bump ridedott/merge-me-action from v1.8.138 to v2.1.1 | Bump ridedott/merge-me-action from v1.8.138 to v2.1.1
| YAML | mit | noflo/noflo |
b0b0d4f2904f1a6568be059d79daa85bc23e7ba2 | .github/workflows/SonarCloud.yml | .github/workflows/SonarCloud.yml | name: Sonar Cloud
on:
schedule:
- cron: '0 0 * * *'
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Cache SonarCloud packages
uses: actions/cache@v1
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Cache Gradle packages
uses: actions/cache@v1
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle
- name: Build and analyze
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: ./gradlew build testDebug sonarqube --scan
| name: Sonar Cloud
on:
schedule:
- cron: '0 0 * * *'
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Cache SonarCloud packages
uses: actions/cache@v1
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Cache Gradle packages
uses: actions/cache@v1
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle
- name: Build and analyze
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: ./gradlew testDebug sonarqube --scan
| Remove build task from sonarcloud builds | Remove build task from sonarcloud builds
Signed-off-by: Michael obi <17b9e1c64588c7fa6419b4d29dc1f4426279ba01@paystack.com>
| YAML | apache-2.0 | PaystackHQ/paystack-android,PaystackHQ/paystack-android,PaystackHQ/paystack-android |
938147323380de465b52994dd86d72dd9ab77df3 | recipes/cgen/meta.yaml | recipes/cgen/meta.yaml | {% set name = "cgen" %}
{% set version = "2016.2" %}
{% set sha256 = "879b7fe1842a1352591e202d1c33da2aa38b5dfe82ba59493b2b6bba6d5d7ce5" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: {{ sha256 }}
build:
number: 0
script: python setup.py install --single-version-externally-managed --record record.txt
requirements:
build:
- python
- setuptools
- pytools
- six
run:
- python
- pytools
- numpy
- six
test:
requires:
- pytest
imports:
- {{ name }}
commands:
- cd $SRC_DIR/test && python -m pytest # [unix]
about:
home: http://pypi.python.org/pypi/{{ name }}
license: MIT
license_file: LICENSE
summary: C/C++ source generation from an AST
dev_url: http://github.com/inducer/{{ name }}
extra:
recipe-maintainers:
- inducer
| {% set name = "cgen" %}
{% set version = "2016.2" %}
{% set sha256 = "879b7fe1842a1352591e202d1c33da2aa38b5dfe82ba59493b2b6bba6d5d7ce5" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: {{ sha256 }}
build:
number: 0
script: python setup.py install --single-version-externally-managed --record record.txt
requirements:
build:
- python
- setuptools
- pytools
- six
run:
- python
- pytools
- numpy
- six
test:
requires:
- pytest
imports:
- {{ name }}
commands:
- cd $SRC_DIR/test && python -m pytest # [unix]
- cd %SRC_DIR%/test && python -m pytest # [win]
about:
home: http://pypi.python.org/pypi/{{ name }}
license: MIT
license_file: LICENSE
summary: C/C++ source generation from an AST
dev_url: http://github.com/inducer/{{ name }}
doc_url: https://documen.tician.de/{{ name }}
extra:
recipe-maintainers:
- inducer
| Add doc_url, windows test, remove blank line | Add doc_url, windows test, remove blank line
| YAML | bsd-3-clause | igortg/staged-recipes,dfroger/staged-recipes,benvandyke/staged-recipes,mariusvniekerk/staged-recipes,stuertz/staged-recipes,glemaitre/staged-recipes,gqmelo/staged-recipes,Juanlu001/staged-recipes,pmlandwehr/staged-recipes,Juanlu001/staged-recipes,bmabey/staged-recipes,grlee77/staged-recipes,johanneskoester/staged-recipes,atedstone/staged-recipes,sodre/staged-recipes,tylere/staged-recipes,ocefpaf/staged-recipes,rvalieris/staged-recipes,hajapy/staged-recipes,conda-forge/staged-recipes,koverholt/staged-recipes,ReimarBauer/staged-recipes,rmcgibbo/staged-recipes,koverholt/staged-recipes,ocefpaf/staged-recipes,bmabey/staged-recipes,jochym/staged-recipes,vamega/staged-recipes,planetarypy/staged-recipes,petrushy/staged-recipes,dschreij/staged-recipes,jerowe/staged-recipes,chrisburr/staged-recipes,Savvysherpa/staged-recipes,ReimarBauer/staged-recipes,sodre/staged-recipes,synapticarbors/staged-recipes,hadim/staged-recipes,guillochon/staged-recipes,mariusvniekerk/staged-recipes,chohner/staged-recipes,blowekamp/staged-recipes,SylvainCorlay/staged-recipes,chohner/staged-recipes,sodre/staged-recipes,cpaulik/staged-recipes,patricksnape/staged-recipes,basnijholt/staged-recipes,igortg/staged-recipes,blowekamp/staged-recipes,petrushy/staged-recipes,sannykr/staged-recipes,jerowe/staged-recipes,pstjohn/staged-recipes,jcb91/staged-recipes,hadim/staged-recipes,pmlandwehr/staged-recipes,patricksnape/staged-recipes,conda-forge/staged-recipes,dfroger/staged-recipes,kwilcox/staged-recipes,mcs07/staged-recipes,dschreij/staged-recipes,kwilcox/staged-recipes,Cashalow/staged-recipes,caspervdw/staged-recipes,nicoddemus/staged-recipes,grlee77/staged-recipes,basnijholt/staged-recipes,pstjohn/staged-recipes,rmcgibbo/staged-recipes,birdsarah/staged-recipes,hbredin/staged-recipes,glemaitre/staged-recipes,vamega/staged-recipes,stuertz/staged-recipes,nicoddemus/staged-recipes,hajapy/staged-recipes,mcs07/staged-recipes,johanneskoester/staged-recipes,jcb91/staged-recipes,gqmelo/staged-recipes,sannykr/staged-recipes,chrisburr/staged-recipes,NOAA-ORR-ERD/staged-recipes,JohnGreeley/staged-recipes,cpaulik/staged-recipes,caspervdw/staged-recipes,jochym/staged-recipes,goanpeca/staged-recipes,barkls/staged-recipes,dharhas/staged-recipes,mcernak/staged-recipes,birdsarah/staged-recipes,larray-project/staged-recipes,JohnGreeley/staged-recipes,khallock/staged-recipes,rvalieris/staged-recipes,ceholden/staged-recipes,scopatz/staged-recipes,dharhas/staged-recipes,barkls/staged-recipes,asmeurer/staged-recipes,jjhelmus/staged-recipes,isuruf/staged-recipes,planetarypy/staged-recipes,synapticarbors/staged-recipes,johannesring/staged-recipes,jakirkham/staged-recipes,jjhelmus/staged-recipes,guillochon/staged-recipes,tylere/staged-recipes,SylvainCorlay/staged-recipes,goanpeca/staged-recipes,johannesring/staged-recipes,larray-project/staged-recipes,benvandyke/staged-recipes,Cashalow/staged-recipes,ceholden/staged-recipes,Savvysherpa/staged-recipes,atedstone/staged-recipes,shadowwalkersb/staged-recipes,shadowwalkersb/staged-recipes,hbredin/staged-recipes,asmeurer/staged-recipes,khallock/staged-recipes,NOAA-ORR-ERD/staged-recipes,mcernak/staged-recipes,jakirkham/staged-recipes,isuruf/staged-recipes,scopatz/staged-recipes |
132881b197f160363517c98bfba64458b9083968 | frontend/codegen.yml | frontend/codegen.yml | schema: _schema.json
documents:
- ./src/**/*.{ts,tsx}
- ./node_modules/gatsby-*/**/*.js
generates:
src/generated/graphql.ts:
plugins:
- add: |
/* eslint-disable */
import { GatsbyImageProps } from 'gatsby-image'
- "typescript"
- "typescript-operations"
config:
scalars:
ImageSharp: GatsbyImageProps
ImageSharpFilterInput: GatsbyImageProps
namingConvention:
enumValues: keep
maybeValue: T | null
avoidOptionals: true
| schema: _schema.json
documents:
- ./src/**/*.{ts,tsx}
- ./node_modules/gatsby-image/**/*.js
- ./node_modules/gatsby-transformer-sharp/**/*.js
generates:
src/generated/graphql.ts:
plugins:
- add: |
/* eslint-disable */
import { GatsbyImageProps } from 'gatsby-image'
- "typescript"
- "typescript-operations"
config:
scalars:
ImageSharp: GatsbyImageProps
ImageSharpFilterInput: GatsbyImageProps
namingConvention:
enumValues: keep
maybeValue: T | null
avoidOptionals: true
| Fix max files issue on github actions | Fix max files issue on github actions
| YAML | mit | patrick91/pycon,patrick91/pycon |
1941d4f197be123953a1b3a337e378235e710707 | vue-webpack/docker-compose.yml | vue-webpack/docker-compose.yml | version: '2'
services:
frontend:
build:
context: .
ports:
- 8080:8080
volumes:
- .:/src
| version: '2'
services:
frontend:
build:
context: .
ports:
- 8080:8080
volumes:
- .:/src
- /src/node_modules
| Add separate node_modules mounting to vue example | Add separate node_modules mounting to vue example
| YAML | bsd-3-clause | jsalonen/docker-stack-examples,jsalonen/docker-stack-examples |
7dfcb4a4037970e32ca7597c84dfd5e4845102d7 | .github/workflows/deploy.yml | .github/workflows/deploy.yml | name: Deploy
on:
release:
types: [published]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install twine wheel
- name: Build and publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*
| name: Deploy
on:
release:
types: [published]
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install twine wheel
- name: Build and publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*
| Allow GitHub Actions Deploy workflow to be manually triggered | Allow GitHub Actions Deploy workflow to be manually triggered
| YAML | mit | svven/tweepy,tweepy/tweepy |
81c863aa876598bcd2785941c8c7b7355d6a68fe | .github/workflows/dotnet.yml | .github/workflows/dotnet.yml | name: .NET
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
config: Release
disable_test_parallelization: true
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
- name: Build Script
run: dotnet run -p build/build.csproj -- ci
| name: .NET
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
config: Release
disable_test_parallelization: true
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v2
- name: Setup .NET 5
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
- name: Setup .NET 6
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Build Script
run: dotnet run -p build/build.csproj -- ci
| Use .Net 6 in the GH CI action | Use .Net 6 in the GH CI action | YAML | apache-2.0 | JasperFx/oakton,JasperFx/oakton,JasperFx/oakton,JasperFx/oakton |
796f1b64a9dfab748dd6c911d7f44e6f011d5714 | .github/workflows/gradle.yml | .github/workflows/gradle.yml | name: Java CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 8, 11.0.4 ]
name: Java ${{ matrix.java }}
steps:
- uses: actions/checkout@master
- name: Setup java
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- run: ./gradlew
| name: Java CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 8, 11 ]
name: Java ${{ matrix.java }}
steps:
- uses: actions/checkout@master
- name: Setup java
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- run: ./gradlew
| Build Java 1.8 and 11. | [Java] Build Java 1.8 and 11.
| YAML | apache-2.0 | real-logic/Agrona |
dfe33cdad2a3c54938ab30ab40baf86c7b807a22 | .github/workflows/gradle.yml | .github/workflows/gradle.yml | name: check
on:
push:
schedule:
- cron: '15 01 * * SAT'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2.3.5
- name: Set up JDK 11
uses: actions/setup-java@v2.3.1
with:
java-version: 11
distribution: 'adopt'
- name: Setup Ubuntu
run: |
sudo apt-get -y update
sudo apt-get -y install haveged
sudo systemctl enable haveged
sudo systemctl restart haveged
- name: Gradle Wrapper Cache
uses: actions/cache@v2.1.6
with:
path: ~/.gradle/wrapper
key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle-wrapper.properties') }}
- name: Gradle Dependencies Cache
uses: actions/cache@v2.1.6
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-cache-${{ hashFiles('**/*.gradle') }}
restore-keys: |
${{ runner.os }}-gradle-cache-${{ hashFiles('**/*.gradle') }}
${{ runner.os }}-gradle-cache-
- name: Gradle Test
env:
JAVA_TOOL_OPTIONS: -Dpolyglot.js.nashorn-compat=true -Dpolyglot.engine.WarnInterpreterOnly=false
run: ./gradlew -Dorg.gradle.console=plain --no-daemon check | name: check
on:
push:
schedule:
- cron: '15 01 * * SAT'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2.4.0
- name: Set up JDK 11
uses: actions/setup-java@v2.3.1
with:
java-version: 11
distribution: 'adopt'
- name: Setup Ubuntu
run: |
sudo apt-get -y update
sudo apt-get -y install haveged
sudo systemctl enable haveged
sudo systemctl restart haveged
- name: Gradle Wrapper Cache
uses: actions/cache@v2.1.6
with:
path: ~/.gradle/wrapper
key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle-wrapper.properties') }}
- name: Gradle Dependencies Cache
uses: actions/cache@v2.1.6
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-cache-${{ hashFiles('**/*.gradle') }}
restore-keys: |
${{ runner.os }}-gradle-cache-${{ hashFiles('**/*.gradle') }}
${{ runner.os }}-gradle-cache-
- name: Gradle Test
env:
JAVA_TOOL_OPTIONS: -Dpolyglot.js.nashorn-compat=true -Dpolyglot.engine.WarnInterpreterOnly=false
run: ./gradlew -Dorg.gradle.console=plain --no-daemon check | Bump actions/checkout from 2.3.5 to 2.4.0 | Bump actions/checkout from 2.3.5 to 2.4.0
Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.5 to 2.4.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v2.3.5...v2.4.0)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <5bdcd3c0d4d24ae3e71b3b452a024c6324c7e4bb@github.com> | YAML | apache-2.0 | quotidian-ennui/interlok-speedtest-elastic |
597262ba44d506478365e675db4a76c862a41ae2 | .github/workflows/mac-os.yml | .github/workflows/mac-os.yml | # This workflow verifies libtock-rs is usable on Mac OS.
name: ci-mac-os
# We run this workflow during pull request review, but not for Bors merges, as
# it takes over an hour to run.
on: pull_request
jobs:
ci-mac-os:
runs-on: macos-10.15
steps:
# Clones a single commit from the libtock-rs repository. The commit cloned
# is a merge commit between the PR's target branch and the PR's source.
- name: Clone repository
uses: actions/checkout@v2.3.0
# Install the toolchains we need, then run `cargo build`.
- name: Build and Test
run: |
brew tap riscv/riscv
brew update
brew install riscv-gnu-toolchain --with-multilib
cd "${GITHUB_WORKSPACE}"
LIBTOCK_PLATFORM=hifive1 cargo build -p libtock_runtime \
--target=riscv32imac-unknown-none-elf
| # This workflow verifies libtock-rs is usable on Mac OS.
name: ci-mac-os
# We run this workflow during pull request review, but not for Bors merges. We
# can change this if the workflow is reasonably quick and reliable.
on: pull_request
jobs:
ci-mac-os:
runs-on: macos-10.15
steps:
# Clones a single commit from the libtock-rs repository. The commit cloned
# is a merge commit between the PR's target branch and the PR's source.
- name: Clone repository
uses: actions/checkout@v2
# The brew commands are spread out over multiple steps so we can see the
# timings for each step in GitHub Actions' dashboard.
- name: Brew tap ARMmbed
run: brew tap ARMmbed/homebrew-formulae
- name: Brew update
run: brew update
- name: Brew install
run: brew install arm-none-eabi-gcc
- name: Build and Test
run: |
cd "${GITHUB_WORKSPACE}"
LIBTOCK_PLATFORM=nrf52 cargo build -p libtock_runtime \
--target=thumbv7em-none-eabi
| Switch Mac OS' CI to ARM. | Switch Mac OS' CI to ARM.
Hopefully installing the ARM toolchain will be faster and more reliable than installing the RISC-V toolchain. While I was editing the file, I changed he `checkout` action version to `v2`, so we should get automatic upgrades (I'm assuming it is relatively stable).
| YAML | apache-2.0 | tock/libtock-rs |
916ef531476771c619f670e34ef8d5515d467cae | .github/workflows/nodejs.yml | .github/workflows/nodejs.yml | name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install Yarn
run: npm install --global yarn
- name: Install dependencies
run: yarn install
- name: Build
run: yarn build
- name: Test
run: yarn test
| name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn install
- name: Build
run: yarn build
- name: Test
run: yarn test
| Remove explicit yarn installation on CI | Remove explicit yarn installation on CI
| YAML | mit | davidkpiano/xstate,davidkpiano/xstate,davidkpiano/xstate |
4df0fb1f186919a8561a5953114effde478db6b1 | .github/workflows/weekly.yml | .github/workflows/weekly.yml | ---
name: stratis-cli weekly
# yamllint disable-line rule:truthy
on:
schedule:
- cron: 25 3 * * 4
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
next-fedora-python-checks:
continue-on-error: true
strategy:
matrix:
include:
# PYTHON CHECKS ON NEXT FEDORA PYTHON AND PYTHON TOOLS VERSION
- dependencies: >
pylint
python3-dateutil
python3-dbus-client-gen
python3-dbus-python-client-gen
python3-justbytes
python3-packaging
python3-psutil
python3-wcwidth
task: PYTHONPATH=./src make -f Makefile lint
- dependencies: black python3-isort
task: make -f Makefile fmt-ci
- dependencies: shfmt
task: make -f Makefile fmt-shell-ci
- dependencies: yamllint
task: make -f Makefile yamllint
runs-on: ubuntu-18.04
container: fedora:35 # NEXT DEVELOPMENT ENVIRONMENT
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: >
dnf install -y
make
python-unversioned-command
${{ matrix.dependencies }}
- name: ${{ matrix.task }}
run: ${{ matrix.task }}
| ---
name: stratis-cli weekly
# yamllint disable-line rule:truthy
on:
schedule:
- cron: 25 3 * * 4
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
next-fedora-python-checks:
continue-on-error: true
strategy:
matrix:
include:
# PYTHON CHECKS ON NEXT FEDORA PYTHON AND PYTHON TOOLS VERSION
- dependencies: >
pylint
python3-dateutil
python3-dbus-client-gen
python3-dbus-python-client-gen
python3-justbytes
python3-packaging
python3-psutil
python3-wcwidth
task: PYTHONPATH=./src make -f Makefile lint
- dependencies: black python3-isort
task: make -f Makefile fmt-ci
- dependencies: shfmt
task: make -f Makefile fmt-shell-ci
- dependencies: yamllint
task: make -f Makefile yamllint
runs-on: ubuntu-18.04
container: fedora:36 # NEXT DEVELOPMENT ENVIRONMENT
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: >
dnf install -y
make
python-unversioned-command
${{ matrix.dependencies }}
- name: ${{ matrix.task }}
run: ${{ matrix.task }}
| Advance next development environment to Fedora 36 | Advance next development environment to Fedora 36
Signed-off-by: Bryan Gurney <94498243b15882748b18aec9e6dc02da713818c8@redhat.com>
| YAML | apache-2.0 | stratis-storage/stratis-cli,stratis-storage/stratis-cli |
d15698bb91236a346c339f0d3bcc83ec39e6050d | resource-server/src/main/resources/application.yml | resource-server/src/main/resources/application.yml | #
# Copyright 2014 Open mHealth
#
# 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.
#
# FIXME revise this if mixing data stores
dataStore: mongo
server:
port: 8083
spring:
application:
name: Open mHealth DSU server
data:
mongodb:
host: mongo
database: omh
#port: 27017
datasource:
driverClassName: org.postgresql.Driver
url: jdbc:postgresql://localhost:5432/omh
username: postgres
password: postgres
http:
mappers:
jsonPrettyPrint: true | #
# Copyright 2014 Open mHealth
#
# 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.
#
# FIXME revise this if mixing data stores
dataStore: mongo
server:
port: 8083
spring:
application:
name: Open mHealth DSU server
data:
mongodb:
host: mongo
database: omh
#port: 27017
datasource:
driverClassName: org.postgresql.Driver
url: jdbc:postgresql://localhost:5432/omh
username: postgres
password: postgres
http:
mappers:
jsonPrettyPrint: true
logging:
level:
org.springframework: INFO | Add logging property placeholders to resource server configuration to help with debugging. | Add logging property placeholders to resource server configuration to help with debugging.
| YAML | apache-2.0 | smalldatalab/omh-dsu,openmhealth/omh-dsu-ri,smalldatalab/omh-dsu,smalldatalab/omh-dsu,smalldatalab/omh-dsu,openmhealth/omh-dsu-ri |
e8013fd80b53cd02184ae73e8a03c993823ed39a | recipes/sgp4/meta.yaml | recipes/sgp4/meta.yaml | {% set name = "sgp4" %}
{% set version = "1.4" %}
{% set gh_org = "brandon-rhodes" %}
{% set gh_repo = "python-sgp4" %}
{% set sha256 = "a7e03a714de969e2ad980830957793d677681b40047d7d052a50fe9e96e6ab7c" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
fn: v{{ version }}.tar.gz
url: https://github.com/{{ gh_org }}/{{ gh_repo }}/archive/v{{ version }}.tar.gz
sha256: {{ sha256 }}
patches:
- manifest.patch
build:
number: 0
script: python setup.py install # [not win64]
requirements:
build:
- python
run:
- python
test:
imports:
- sgp4
- sgp4.tests
commands:
- python -m unittest -v sgp4.tests
about:
home: https://github.com/brandon-rhodes/python-sgp4
license: MIT
# license_file: LICENSE
summary: 'Python implementation of most recent version of the SGP4 satellite tracking algorithm.'
description: |
Python implementation of most recent version
of the SGP4 satellite tracking algorithm.
extra:
recipe-maintainers:
- jochym
| {% set name = "sgp4" %}
{% set version = "1.4" %}
{% set gh_org = "brandon-rhodes" %}
{% set gh_repo = "python-sgp4" %}
{% set sha256 = "a7e03a714de969e2ad980830957793d677681b40047d7d052a50fe9e96e6ab7c" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
fn: v{{ version }}.tar.gz
url: https://github.com/{{ gh_org }}/{{ gh_repo }}/archive/v{{ version }}.tar.gz
sha256: {{ sha256 }}
patches:
- manifest.patch
build:
skip: True # [win64]
number: 0
script: python setup.py install
requirements:
build:
- python
run:
- python
test:
imports:
- sgp4
- sgp4.tests
commands:
- python -m unittest -v sgp4.tests
about:
home: https://github.com/brandon-rhodes/python-sgp4
license: MIT
# license_file: LICENSE
summary: 'Python implementation of most recent version of the SGP4 satellite tracking algorithm.'
description: |
Python implementation of most recent version
of the SGP4 satellite tracking algorithm.
extra:
recipe-maintainers:
- jochym
| Correct build skipping selector for win64 | Correct build skipping selector for win64
| YAML | bsd-3-clause | stuertz/staged-recipes,mcernak/staged-recipes,koverholt/staged-recipes,gqmelo/staged-recipes,johanneskoester/staged-recipes,hadim/staged-recipes,hbredin/staged-recipes,koverholt/staged-recipes,benvandyke/staged-recipes,planetarypy/staged-recipes,johannesring/staged-recipes,atedstone/staged-recipes,scopatz/staged-recipes,dharhas/staged-recipes,ReimarBauer/staged-recipes,jcb91/staged-recipes,dfroger/staged-recipes,barkls/staged-recipes,glemaitre/staged-recipes,Cashalow/staged-recipes,guillochon/staged-recipes,ocefpaf/staged-recipes,tylere/staged-recipes,tylere/staged-recipes,pmlandwehr/staged-recipes,asmeurer/staged-recipes,mcs07/staged-recipes,barkls/staged-recipes,igortg/staged-recipes,sodre/staged-recipes,rmcgibbo/staged-recipes,Juanlu001/staged-recipes,ceholden/staged-recipes,goanpeca/staged-recipes,grlee77/staged-recipes,isuruf/staged-recipes,NOAA-ORR-ERD/staged-recipes,khallock/staged-recipes,mariusvniekerk/staged-recipes,shadowwalkersb/staged-recipes,johanneskoester/staged-recipes,caspervdw/staged-recipes,goanpeca/staged-recipes,glemaitre/staged-recipes,SylvainCorlay/staged-recipes,birdsarah/staged-recipes,jjhelmus/staged-recipes,isuruf/staged-recipes,kwilcox/staged-recipes,caspervdw/staged-recipes,atedstone/staged-recipes,dfroger/staged-recipes,jerowe/staged-recipes,bmabey/staged-recipes,igortg/staged-recipes,mcernak/staged-recipes,petrushy/staged-recipes,petrushy/staged-recipes,cpaulik/staged-recipes,gqmelo/staged-recipes,larray-project/staged-recipes,guillochon/staged-recipes,jjhelmus/staged-recipes,khallock/staged-recipes,grlee77/staged-recipes,JohnGreeley/staged-recipes,patricksnape/staged-recipes,rmcgibbo/staged-recipes,dschreij/staged-recipes,ceholden/staged-recipes,sannykr/staged-recipes,jerowe/staged-recipes,mariusvniekerk/staged-recipes,hajapy/staged-recipes,planetarypy/staged-recipes,Cashalow/staged-recipes,vamega/staged-recipes,jcb91/staged-recipes,jakirkham/staged-recipes,ReimarBauer/staged-recipes,sodre/staged-recipes,pstjohn/staged-recipes,synapticarbors/staged-recipes,dharhas/staged-recipes,blowekamp/staged-recipes,hadim/staged-recipes,cpaulik/staged-recipes,jakirkham/staged-recipes,chohner/staged-recipes,larray-project/staged-recipes,asmeurer/staged-recipes,vamega/staged-recipes,stuertz/staged-recipes,Savvysherpa/staged-recipes,conda-forge/staged-recipes,conda-forge/staged-recipes,scopatz/staged-recipes,hbredin/staged-recipes,pstjohn/staged-recipes,pmlandwehr/staged-recipes,johannesring/staged-recipes,ocefpaf/staged-recipes,rvalieris/staged-recipes,jochym/staged-recipes,mcs07/staged-recipes,bmabey/staged-recipes,benvandyke/staged-recipes,chrisburr/staged-recipes,basnijholt/staged-recipes,basnijholt/staged-recipes,birdsarah/staged-recipes,rvalieris/staged-recipes,blowekamp/staged-recipes,kwilcox/staged-recipes,JohnGreeley/staged-recipes,dschreij/staged-recipes,sodre/staged-recipes,sannykr/staged-recipes,chohner/staged-recipes,synapticarbors/staged-recipes,Savvysherpa/staged-recipes,shadowwalkersb/staged-recipes,SylvainCorlay/staged-recipes,NOAA-ORR-ERD/staged-recipes,hajapy/staged-recipes,chrisburr/staged-recipes,Juanlu001/staged-recipes,patricksnape/staged-recipes,jochym/staged-recipes |
3e8751f29c7e160ff67b2d109e2521884b5841e5 | host-preparation.yml | host-preparation.yml | ---
- hosts: all
gather_facts: no
become: true
pre_tasks:
- name: Install Python 2 first
raw: python --version || apt-get update && apt-get install -y python
roles:
- opsta.host_preparation
| ---
- hosts: all
gather_facts: no
become: true
pre_tasks:
- name: Configure apt-cacher-ng
raw: "(test -f /etc/apt/apt.conf.d/11proxy ||
echo 'Acquire::http::Proxy \"{{ host_preparation_apt_cacher_ng }}\";' >
/etc/apt/apt.conf.d/11proxy)"
when: host_preparation_apt_cacher_ng is defined
- name: Install Python 2 first
raw: python --version || apt-get update && apt-get install -y python
roles:
- opsta.host_preparation
| Add host preparation playbook to support apt-cacher when install python | Add host preparation playbook to support apt-cacher when install python
| YAML | mit | opsta/opsta-playbook |
46f1c36ea96d724b067956e6c0d4bf1173cc0382 | Resources/config/services.yml | Resources/config/services.yml | services:
bookboon.cache:
public: true
class: Symfony\Component\Cache\Simple\RedisCache
arguments:
- '@default_redis_provider'
- 'api'
- 1800
Bookboon\Api\Bookboon:
public: true
factory: ['Bookboon\ApiBundle\Service\ApiFactory', create]
arguments:
- '@Bookboon\ApiBundle\Helper\ConfigurationHolder'
- '@bookboon.cache'
- '@monolog.logger.api'
tags:
- { name: monolog.logger, channel: api }
| services:
bookboon.cache:
public: true
class: Symfony\Component\Cache\Simple\RedisCache
arguments:
- '@default_redis_provider'
- 'api'
- 1800
Bookboon\Api\Bookboon:
public: true
lazy: true
factory: ['Bookboon\ApiBundle\Service\ApiFactory', create]
arguments:
- '@Bookboon\ApiBundle\Helper\ConfigurationHolder'
- '@bookboon.cache'
- '@monolog.logger.api'
tags:
- { name: monolog.logger, channel: api }
| Mark service as lazy to avoid requesting token at cache:clear time | Mark service as lazy to avoid requesting token at cache:clear time
| YAML | apache-2.0 | bookboon/api-php-bundle |
01af21732a759ff9739249c72353bfd06597e815 | playbook.yml | playbook.yml | ---
- hosts: localhost
connection: local
gather_facts: False
pre_tasks:
- name: create an ec2 node
ec2:
key_name: "{{ lookup('env', 'AWS_KEY_NAME') }}"
group: elasticsearch-test-cluster
instance_profile_name: elasticsearch-test-cluster
instance_type: t2.micro
region: eu-west-1
image: ami-234ecc54
wait: true
exact_count: 2
count_tag:
Name: Elasticsearch-cluster-test
instance_tags:
Name: Elasticsearch-cluster-test
register: ec2
- name: Add all instance public IPs to host group
add_host: hostname={{ item.public_ip }} groupname=elasticsearch
with_items: ec2.tagged_instances
- name: Wait for SSH to be available
wait_for: host={{ item.public_ip }} port=22
with_items: ec2.tagged_instances
- hosts: elasticsearch
name: setup
user: ubuntu
gather_facts: True
sudo: True
roles:
- elasticsearch
| ---
- hosts: localhost
connection: local
gather_facts: False
pre_tasks:
- name: Create an AWS security group
ec2_group:
name: elasticsearch-test-cluster
description: Elasticsearch cluster
region: eu-west-1
rules:
- proto: all
group_name: elasticsearch-test-cluster
- proto: tcp
from_port: 9200
to_port: 9200
cidr_ip: 80.194.77.0/24
- proto: tcp
from_port: 22
to_port: 22
cidr_ip: 80.194.77.0/24
rules_egress:
- proto: all
from_port: 0
to_port: 65535
cidr_ip: 0.0.0.0/0
- name: Create EC2 nodes
ec2:
key_name: "{{ lookup('env', 'AWS_KEY_NAME') }}"
group: elasticsearch-test-cluster
instance_profile_name: elasticsearch-test-cluster
instance_type: t2.micro
region: eu-west-1
image: ami-234ecc54
wait: true
exact_count: 2
count_tag:
Name: Elasticsearch-cluster-test
instance_tags:
Name: Elasticsearch-cluster-test
register: ec2
- name: Add all instance public IPs to host group
add_host: hostname={{ item.public_ip }} groupname=elasticsearch
with_items: ec2.tagged_instances
- name: Wait for SSH to be available
wait_for: host={{ item.public_ip }} port=22
with_items: ec2.tagged_instances
- hosts: elasticsearch
name: setup
user: ubuntu
gather_facts: True
sudo: True
roles:
- elasticsearch
| Add AWS security group creation task | Add AWS security group creation task
| YAML | mit | alphagov/digitalmarketplace-aws,alphagov/digitalmarketplace-aws,alphagov/digitalmarketplace-aws |
33c2c78239fd342632ef2df428952529946b61d2 | metadata/org.docspell.docspellshare.yml | metadata/org.docspell.docspellshare.yml | Categories:
- Science & Education
License: GPL-3.0-or-later
AuthorName: eikek
WebSite: https://docspell.org
SourceCode: https://github.com/docspell/android-client
IssueTracker: https://github.com/docspell/android-client/issues
AutoName: DocspellShare
RepoType: git
Repo: https://github.com/docspell/android-client
Builds:
- versionName: 0.3.0
versionCode: 3
commit: v0.3.0
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersionCode: 3
| Categories:
- Science & Education
License: GPL-3.0-or-later
AuthorName: eikek
WebSite: https://docspell.org
SourceCode: https://github.com/docspell/android-client
IssueTracker: https://github.com/docspell/android-client/issues
AutoName: Docspell Share
RepoType: git
Repo: https://github.com/docspell/android-client
Builds:
- versionName: 0.3.0
versionCode: 3
commit: v0.3.0
subdir: app
gradle:
- yes
- versionName: 0.4.0
versionCode: 4
commit: v0.4.0
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 0.4.0
CurrentVersionCode: 4
| Update Docspell Share to 0.4.0 (4) | Update Docspell Share to 0.4.0 (4)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
0b7f5d70ab01d00f3f5d5e730aef9b1fa51af4b2 | templates/enable-bits.yml | templates/enable-bits.yml | properties:
cc:
bits_service:
enabled: true
public_endpoint: (( concat "http://bits-service." properties.system_domain ))
private_endpoint: http://bits-service.service.cf.internal
username: admin
password: <%= ENV.fetch('CF_PASSWORD', 'admin') %>
| properties:
cc:
bits_service:
enabled: true
public_endpoint: (( concat "http://bits-service." properties.system_domain ))
private_endpoint: http://bits-service.service.cf.internal
username: (( grab properties.bits-service.signing_users.0.username ))
password: (( grab properties.bits-service.signing_users.0.password ))
| Synchronize singing user's credentials between cc and bit-service | Synchronize singing user's credentials between cc and bit-service
[#138931317]
Signed-off-by: Norman Sutorius <c92e212d4253616268289a70bdbb216a97333b3e@de.ibm.com> | YAML | apache-2.0 | cloudfoundry-incubator/bits-service-release,cloudfoundry-incubator/bits-service-release,cloudfoundry-incubator/bits-service-release,cloudfoundry-incubator/bits-service-release |
e5d2440812088ed95237471b08dcca9914223f1b | AutomotiveOS/CarGearViewerKotlin/.google/packaging.yaml | AutomotiveOS/CarGearViewerKotlin/.google/packaging.yaml | # GOOGLE SAMPLE PACKAGING DATA
#
# This file is used by Google as part of our samples packaging process.
# End users may safely ignore this file. It has no relevance to other systems.
---
status: PUBLISHED
technologies: [Android]
categories: [AutomotiveOS]
languages: [Kotlin]
solutions: [Mobile]
github: android/car-samples
level: INTERMEDIATE
icon: screenshots/icon-web.png
apiRefs:
- android:android.car
- android:android.car.Car
- android:android.car.hardware.property.CarPropertyManager
license: apache2
| # Copyright (C) 2020 The Android Open Source Project
#
# 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.
# GOOGLE SAMPLE PACKAGING DATA
#
# This file is used by Google as part of our samples packaging process.
# End users may safely ignore this file. It has no relevance to other systems.
---
status: PUBLISHED
technologies: [Android]
categories: [AutomotiveOS]
languages: [Kotlin]
solutions: [Mobile]
github: android/car-samples
level: INTERMEDIATE
icon: screenshots/icon-web.png
apiRefs:
- android:android.car
- android:android.car.Car
- android:android.car.hardware.property.CarPropertyManager
license: apache2
| Add licence header to package.yaml | Add licence header to package.yaml
Test: /google/bin/releases/opensource/thirdparty/cross/cross <path-to-repo>
Bug: 162446471
Change-Id: I7eaa8aa65839b9e9f594bc0599de99918d4e4e6f
| YAML | apache-2.0 | android/car-samples,android/car-samples |
3c5bed96ff0604a740e7af40c5abd5b89c0972b2 | vars/main.yml | vars/main.yml | ---
tomcat_supported_platforms:
- Archlinux
- Debian
- RedHat
tomcat_supported_distributions:
- Archlinux
- Ubuntu
- CentOS
# filename of Tomcat redistributable package
tomcat_redis_filename: apache-tomcat-{{ tomcat_version }}.tar.gz
# abstract Tomcat major version
tomcat_version_major: "{{ tomcat_version|truncate(1, True, '') }}"
# instances base directory
tomcat_instance_dirs:
- conf
- logs
- webapps
- temp
- bin
- lib
- work
# installation directory, denoted by environment variable CATALINA_HOME
tomcat_env_catalina_home: "{{ tomcat_install_base }}/apache-tomcat-{{ tomcat_version }}"
| ---
tomcat_supported_platforms:
- Archlinux
- Debian
- RedHat
tomcat_supported_distributions:
- Archlinux
- Ubuntu
- CentOS
- RedHat
# filename of Tomcat redistributable package
tomcat_redis_filename: apache-tomcat-{{ tomcat_version }}.tar.gz
# abstract Tomcat major version
tomcat_version_major: "{{ tomcat_version|truncate(1, True, '') }}"
# instances base directory
tomcat_instance_dirs:
- conf
- logs
- webapps
- temp
- bin
- lib
- work
# installation directory, denoted by environment variable CATALINA_HOME
tomcat_env_catalina_home: "{{ tomcat_install_base }}/apache-tomcat-{{ tomcat_version }}"
| Add support for RHEL as a distribution | Add support for RHEL as a distribution
Signed-off-by: Mark Kusch <100d753b1bf12c46cb1704d669587da1096d0b23@silpion.de>
| YAML | apache-2.0 | silpion/ansible-tomcat,silpion/ansible-tomcat,AMeng/ansible-tomcat,AMeng/ansible-tomcat |
1061da59589193d65611dda7d2806645afdf7ccd | packages/hy/hyper.yaml | packages/hy/hyper.yaml | homepage: ''
changelog-type: ''
hash: cbd15c4857305afb543a1a83b07002a706ce967e1ac6b43ca832143913dcf69e
test-bench-deps: {}
maintainer: Heinrich Apfelmus <apfelmus quantentunnel de>
synopsis: Display class for the HyperHaskell graphical Haskell interpreter
changelog: ''
basic-deps:
base: ! '>=4.6 && <4.10'
text: ! '>=0.11 && <1.3'
blaze-html: ! '>=0.7 && <0.9'
deepseq: ! '>=1.2 && <1.5'
all-versions:
- '0.1.0.0'
author: Heinrich Apfelmus
latest: '0.1.0.0'
description-type: haddock
description: ! 'This package is part of the /HyperHaskell/ project and provides
the @Display@ class for visualizing and pretty printing Haskell values.
'
license-name: BSD3
| homepage: ''
changelog-type: ''
hash: 9fd45d833e5eccbfeb9456af2e986a85b2f2662c3630a4295f574ddb38273afe
test-bench-deps: {}
maintainer: Heinrich Apfelmus <apfelmus quantentunnel de>
synopsis: Display class for the HyperHaskell graphical Haskell interpreter
changelog: ''
basic-deps:
base: ! '>=4.6 && <4.10'
text: ! '>=0.11 && <1.3'
blaze-html: ! '>=0.7 && <0.10'
deepseq: ! '>=1.2 && <1.5'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
author: Heinrich Apfelmus
latest: '0.1.0.1'
description-type: haddock
description: ! 'This package is part of the /HyperHaskell/ project and provides
the @Display@ class for visualizing and pretty printing Haskell values.
'
license-name: BSD3
| Update from Hackage at 2017-04-29T16:11:47Z | Update from Hackage at 2017-04-29T16:11:47Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
cdee4fce780dcdf69f63c2260799cdb37a2df09b | percy.config.yml | percy.config.yml | version: 1
snapshot:
widths: [1600]
min-height: 1000
percy-css: |
.toplevel_page_amp-options, #footer-upgrade {
display: none;
}
span.update-plugins {
display: none !important;
}
| version: 1
snapshot:
widths: [1600]
min-height: 1000
percy-css: |
.toplevel_page_amp-options, #footer-upgrade, #wpadminbar #wp-admin-bar-updates {
display: none;
}
span.update-plugins {
display: none !important;
}
| Remove update plugin from admin bar. | Remove update plugin from admin bar.
| YAML | apache-2.0 | GoogleForCreators/web-stories-wp,GoogleForCreators/web-stories-wp,GoogleForCreators/web-stories-wp,GoogleForCreators/web-stories-wp,GoogleForCreators/web-stories-wp |
4b691d1b582dfa013479f44b305417e6de6c9605 | data/galaxy_tools_playbook/taxonomic_assignation_tool_list.yaml | data/galaxy_tools_playbook/taxonomic_assignation_tool_list.yaml | api_key: <Admin user API key from galaxy_instance>
galaxy_instance: <Galaxy instance IP>
tools:
- name: 'metaphlan2'
owner: 'bebatut'
tool_panel_section_id: 'all_seq_taxonomic_assignation'
tool_shed_url: 'https://testtoolshed.g2.bx.psu.edu'
install_tool_dependencies: True
install_repository_dependencies: True
#revisions:
#- '8ec3dfde378b'
- name: 'qiime'
owner: 'bebatut'
tool_panel_section_id: 'qiime_rRNA_taxonomic_assignation'
tool_shed_url: 'https://testtoolshed.g2.bx.psu.edu'
install_tool_dependencies: True
install_repository_dependencies: True
#revisions:
#- '8ec3dfde378b'
| api_key: <Admin user API key from galaxy_instance>
galaxy_instance: <Galaxy instance IP>
tools:
- name: 'metaphlan2'
owner: 'bebatut'
tool_panel_section_id: 'all_seq_taxonomic_assignation'
tool_shed_url: 'https://testtoolshed.g2.bx.psu.edu'
install_tool_dependencies: True
install_repository_dependencies: True
#revisions:
#- '8ec3dfde378b'
##- name: 'qiime'
# owner: 'bebatut'
# tool_panel_section_id: 'qiime_rRNA_taxonomic_assignation'
# tool_shed_url: 'https://testtoolshed.g2.bx.psu.edu'
# install_tool_dependencies: True
# install_repository_dependencies: True
#revisions:
#- '8ec3dfde378b'
| Comment not working qiime wrapper | Comment not working qiime wrapper
| YAML | apache-2.0 | ASaiM/framework,ASaiM/framework |
540a45b1a13dff9ae14ef2ed98dab49c09fc6c76 | tutum.yml | tutum.yml | ubuntu:
image: tutum/ubuntu:latest
ports:
- 2222:22
environment:
- AUTHORIZED_KEYS="YOUR SSH PUBLIC KEY HERE"
| ubuntu:
image: tutum/ubuntu:latest
ports:
- 2222:22
environment:
- AUTHORIZED_KEYS=YOUR SSH PUBLIC KEY HERE
| Remove misleading double quotes in stack file | Remove misleading double quotes in stack file
User needs to provide ssh pub key without double quotes.
If user leaves the double quotes, the resulting stack file is created in Tutum like below:
ubuntu:
image: 'tutum/ubuntu:latest'
environment:
- 'AUTHORIZED_KEYS="YOUR SSH PUBLIC KEY HERE"'
ports:
- '2222:22'
Container deployment logs will then show (notice doubles quotes here):
2015-07-06T20:52:53.994433980Z => Adding public key to /root/.ssh/authorized_keys: "YOUR SSH PUBLIC KEY HERE"
And in the container, we can then see:
root@ubuntu-1:~# cat .ssh/authorized_keys
"YOUR SSH PUBLIC KEY HERE"
Obviously (even with the correct ssh key), it will show something like "ssh-rsa AAAAB3NzaC..." (with double quotes). Consequence is user cannot login with provided ssh key as file content isnt properly formated. | YAML | apache-2.0 | ivotron/tutum-ubuntu,tutumcloud/tutum-ubuntu,bigsurge/tutum-ubuntu |
9c995511e10c82c9fe13fe27c5c4221b207477e6 | docker-compose-unit-tests.yml | docker-compose-unit-tests.yml | version: '3.2'
services:
#############################################
# Start app as a container
#############################################
web:
# build from local Dockerfile
build: .
# if not --build and kth-azure-app already exists in
# your local computers registry 'image' is used.
image: $LOCAL_IMAGE_ID
# LOCAL_IMAGE_ID, IMAGE_NAME and IMAGE_VERSION
# Since we do not want to add tests to our
# production image. We mount the catalog
# 'tests' on in the repo on your local machine
# to /tests on the inside of the container.
# The volume mount is done at startup.
volumes:
- ./test:/test
- ./node_modules:/node_modules
# The unit test command that triggers tests to be run
# inside the container
# This example runs test in package.json which is
# part of the kth-azure-app image.
tty: true
command: npm run test:docker-unit
environment:
- TEST_CREDENTIAL_FEEL_FREE_TO_REMOVE
| version: '3.2'
services:
#############################################
# Start app as a container
#############################################
web:
# build from local Dockerfile
build: .
# if not --build and kth-azure-app already exists in
# your local computers registry 'image' is used.
image: $LOCAL_IMAGE_ID
# LOCAL_IMAGE_ID, IMAGE_NAME and IMAGE_VERSION
# Since we do not want to add tests to our
# production image. We mount the catalog
# 'tests' on in the repo on your local machine
# to /tests on the inside of the container.
# The volume mount is done at startup.
volumes:
- ./test:/test
- ./node_modules:/node_modules
# The unit test command that triggers tests to be run
# inside the container
# This example runs test in package.json which is
# part of the kth-azure-app image.
tty: true
command: npm run test:docker-unit
| Remove unused variable in .yml file | Remove unused variable in .yml file
| YAML | mit | KTH/lms-sync,KTH/lms-sync |
235978e3aaaef24249071edd0ba7fd08c6848b7c | recipes/cgns/meta.yaml | recipes/cgns/meta.yaml | {% set name = "cgns" %}
{% set version = "3.2.1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://github.com/{{ name|upper }}/{{ name|upper }}/archive/v{{ version }}.tar.gz
sha256: 677d0da94f0892b72b96da7cf4de51f661acfff1141c585af50a531fa161773f
patches:
= if-block.patch
build:
number: 0
skip: True # [win]
requirements:
build:
- {{ compiler('c') }}
- {{ compiler('fortran') }}
- cmake
- make
host:
- zlib
- hdf5 =1.8
test:
commands:
- cgnscheck
about:
home: http://cgns.org
license: Zlib
license_file: LICENSE
summary: 'CFD General Notation System (CGNS)'
description: |
The CFD General Notation System (CGNS) provides a standard for
recording and recovering computer data associated with the
numerical solution of fluid dynamics equations.
doc_url: http://cgns.github.io/CGNS_docs_current/index.html
dev_url: https://github.com/CGNS/CGNS
extra:
recipe-maintainers:
- mdpiper
| {% set name = "cgns" %}
{% set version = "3.2.1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://github.com/{{ name|upper }}/{{ name|upper }}/archive/v{{ version }}.tar.gz
sha256: 677d0da94f0892b72b96da7cf4de51f661acfff1141c585af50a531fa161773f
patches:
= if-block.patch
build:
number: 0
skip: True # [win]
requirements:
build:
- {{ compiler('c') }}
- {{ compiler('fortran') }}
- cmake
- make
- zlib
- hdf5 =1.8
test:
commands:
- cgnscheck
about:
home: http://cgns.org
license: Zlib
license_file: LICENSE
summary: 'CFD General Notation System (CGNS)'
description: |
The CFD General Notation System (CGNS) provides a standard for
recording and recovering computer data associated with the
numerical solution of fluid dynamics equations.
doc_url: http://cgns.github.io/CGNS_docs_current/index.html
dev_url: https://github.com/CGNS/CGNS
extra:
recipe-maintainers:
- mdpiper
| Add zlib and hdf5 to build requirements | Add zlib and hdf5 to build requirements
| YAML | bsd-3-clause | petrushy/staged-recipes,ceholden/staged-recipes,chrisburr/staged-recipes,birdsarah/staged-recipes,dschreij/staged-recipes,ocefpaf/staged-recipes,synapticarbors/staged-recipes,cpaulik/staged-recipes,jakirkham/staged-recipes,asmeurer/staged-recipes,conda-forge/staged-recipes,hadim/staged-recipes,jochym/staged-recipes,conda-forge/staged-recipes,birdsarah/staged-recipes,mariusvniekerk/staged-recipes,goanpeca/staged-recipes,hadim/staged-recipes,goanpeca/staged-recipes,Juanlu001/staged-recipes,isuruf/staged-recipes,johanneskoester/staged-recipes,igortg/staged-recipes,ReimarBauer/staged-recipes,ceholden/staged-recipes,isuruf/staged-recipes,stuertz/staged-recipes,Juanlu001/staged-recipes,SylvainCorlay/staged-recipes,patricksnape/staged-recipes,scopatz/staged-recipes,asmeurer/staged-recipes,chrisburr/staged-recipes,jochym/staged-recipes,kwilcox/staged-recipes,mcs07/staged-recipes,ReimarBauer/staged-recipes,stuertz/staged-recipes,mariusvniekerk/staged-recipes,scopatz/staged-recipes,mcs07/staged-recipes,synapticarbors/staged-recipes,ocefpaf/staged-recipes,patricksnape/staged-recipes,SylvainCorlay/staged-recipes,jakirkham/staged-recipes,dschreij/staged-recipes,johanneskoester/staged-recipes,igortg/staged-recipes,cpaulik/staged-recipes,petrushy/staged-recipes,kwilcox/staged-recipes |
f97fabe1279e794a6f57b19d5d43ef20b0a615a2 | recipes/fmpy/meta.yaml | recipes/fmpy/meta.yaml | {% set name = "fmpy" %}
{% set version = "0.1.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://github.com/CATIA-Systems/FMPy/archive/v{{ version }}.tar.gz
fn: v{{ version }}.tar.gz
build:
skip: true # [not win]
number: 0
script: python setup.py install --single-version-externally-managed --record record.txt
requirements:
build:
- python
- setuptools
run:
- lxml
- numpy
- pathlib
- python
- requests
- pywin32 # [win]
test:
source_files:
- tests/*
requires:
- pytest
- dask
imports:
- fmpy
- fmpy.cross_check
- fmpy.examples
- fmpy.ssp
- fmpy.ssp.examples
- fmpy.sundials
about:
home: https://github.com/CATIA-Systems/FMPy
license: BSD-3-Clause
license_family: BSD
license_file: LICENSE.txt
summary: 'Simulate Functional Mockup Units (FMUs) in Python'
extra:
recipe-maintainers:
- wulmer
| {% set name = "fmpy" %}
{% set version = "0.1.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://github.com/CATIA-Systems/FMPy/archive/v{{ version }}.tar.gz
fn: v{{ version }}.tar.gz
build:
number: 0
script: python setup.py install --single-version-externally-managed --record record.txt
requirements:
build:
- python
- setuptools
run:
- lxml
- numpy
- pathlib
- python
- requests
- pywin32 # [win]
test:
source_files:
- tests/*
requires:
- pytest
- dask
imports:
- fmpy
- fmpy.cross_check
- fmpy.examples
- fmpy.ssp
- fmpy.ssp.examples
- fmpy.sundials
about:
home: https://github.com/CATIA-Systems/FMPy
license: BSD-3-Clause
license_family: BSD
license_file: LICENSE.txt
summary: 'Simulate Functional Mockup Units (FMUs) in Python'
extra:
recipe-maintainers:
- wulmer
| Remove skip for non-Windows platforms | Remove skip for non-Windows platforms
| YAML | bsd-3-clause | rmcgibbo/staged-recipes,Juanlu001/staged-recipes,pmlandwehr/staged-recipes,johanneskoester/staged-recipes,mcs07/staged-recipes,cpaulik/staged-recipes,rvalieris/staged-recipes,stuertz/staged-recipes,patricksnape/staged-recipes,rmcgibbo/staged-recipes,mariusvniekerk/staged-recipes,kwilcox/staged-recipes,shadowwalkersb/staged-recipes,johanneskoester/staged-recipes,mariusvniekerk/staged-recipes,scopatz/staged-recipes,basnijholt/staged-recipes,chrisburr/staged-recipes,patricksnape/staged-recipes,birdsarah/staged-recipes,rvalieris/staged-recipes,kwilcox/staged-recipes,sodre/staged-recipes,glemaitre/staged-recipes,Cashalow/staged-recipes,isuruf/staged-recipes,shadowwalkersb/staged-recipes,hadim/staged-recipes,chohner/staged-recipes,jochym/staged-recipes,conda-forge/staged-recipes,jjhelmus/staged-recipes,NOAA-ORR-ERD/staged-recipes,asmeurer/staged-recipes,asmeurer/staged-recipes,barkls/staged-recipes,barkls/staged-recipes,hadim/staged-recipes,Cashalow/staged-recipes,jjhelmus/staged-recipes,ReimarBauer/staged-recipes,jochym/staged-recipes,ceholden/staged-recipes,pmlandwehr/staged-recipes,basnijholt/staged-recipes,chohner/staged-recipes,guillochon/staged-recipes,glemaitre/staged-recipes,SylvainCorlay/staged-recipes,stuertz/staged-recipes,scopatz/staged-recipes,petrushy/staged-recipes,Juanlu001/staged-recipes,birdsarah/staged-recipes,ReimarBauer/staged-recipes,chrisburr/staged-recipes,petrushy/staged-recipes,sannykr/staged-recipes,sodre/staged-recipes,SylvainCorlay/staged-recipes,sodre/staged-recipes,ceholden/staged-recipes,dschreij/staged-recipes,dschreij/staged-recipes,mcs07/staged-recipes,synapticarbors/staged-recipes,jakirkham/staged-recipes,igortg/staged-recipes,goanpeca/staged-recipes,ocefpaf/staged-recipes,igortg/staged-recipes,isuruf/staged-recipes,guillochon/staged-recipes,sannykr/staged-recipes,jakirkham/staged-recipes,ocefpaf/staged-recipes,goanpeca/staged-recipes,NOAA-ORR-ERD/staged-recipes,conda-forge/staged-recipes,synapticarbors/staged-recipes,cpaulik/staged-recipes |
abd8cbd27312178c6be9c02da6c6d9a2ce076eaa | .gitlab-ci.yml | .gitlab-ci.yml | image: 'python:3.6.1'
before_script:
# installing pre-commit
- pip install -c requirements/constraints.txt -r requirements/linters.txt -r requirements/test.txt -r requirements/common.txt
- pre-commit install-hooks
lint:
# basically just run pre-commit linters
script: pre-commit run --all-files
test:
script: py.test
vagga:test:
image: tailhook/vagga:v0.7.2-93-g0884e15
script: vagga test | image: 'python:3.6.1'
before_script:
# installing pre-commit
- pip install -c requirements/constraints.txt -r requirements/linters.txt -r requirements/test.txt -r requirements/common.txt
- pre-commit install-hooks
lint:
# basically just run pre-commit linters
script: pre-commit run --all-files
test:
script: py.test
vagga:test:
image: tailhook/vagga:v0.7.2-93-g0884e15
before_script: []
script: vagga test | Reset before_script in `vagga:test` job | Reset before_script in `vagga:test` job | YAML | mit | open-craft-guild/aio-feature-flags |
2c3390101ea64ef1eca8641b5a0ccc7dbd4e5389 | .gitlab-ci.yml | .gitlab-ci.yml | # Automatic build and test against SugarCRM 7.X
# Push to github on success.
stages:
- test
- build
- publish
phpunit:
stage: test
script:
- composer install --quiet -o
- bin/phpunit --color=never
phar:
stage: build
script:
- composer install --no-dev --quiet -o
- mkdir build
- ulimit -Sn 4096
- php -dphar.readonly=0 bin/box build
artifacts:
paths:
- build/sugarcli.phar
mirror:
stage: publish
only:
- master
script:
- git push git@github.com:inetprocess/sugarcli.git HEAD:master
mirror_tags:
stage: publish
only:
- tags
script:
- git push --tags git@github.com:inetprocess/sugarcli.git
| # Automatic build and test against SugarCRM 7.X
# Push to github on success.
stages:
- test
- build
- publish
phpunit:
stage: test
tags:
- sugarcli
script:
- composer install --quiet -o
- bin/phpunit --color=never
phar:
stage: build
tags:
- sugarcli
script:
- composer install --no-dev --quiet -o
- mkdir build
- ulimit -Sn 4096
- php -dphar.readonly=0 bin/box build
artifacts:
expire_in: '5m'
paths:
- build/sugarcli.phar
mirror:
stage: publish
tags:
- sugarcli
only:
- master
script:
- git push git@github.com:inetprocess/sugarcli.git HEAD:master
mirror_tags:
stage: publish
tags:
- sugarcli
only:
- tags
script:
- git push --tags git@github.com:inetprocess/sugarcli.git
gitlab_release:
tags:
- docker
image: inetprocess/gitlab-release:latest
stage: publish
only:
- tags
script:
- cp build/sugarcli.phar build/sugarcli-$CI_BUILD_TAG.phar
- gitlab-release build/sugarcli-$CI_BUILD_TAG.phar
| Make automatic releases on gitlab. | Make automatic releases on gitlab.
| YAML | apache-2.0 | inetprocess/sugarcli,inetprocess/sugarcli |
f931aeeb89bc8c5fd4e1f7a326604d24f2f1da91 | .gitlab-ci.yml | .gitlab-ci.yml | image: docker:latest
services:
- docker:dind
variables:
DOCKER_DRIVER: overlay
before_script:
- apt-get update -y
test:
script:
- apt-get install default-jre -y
- wget https://raw.githubusercontent.com/technomancy/leiningen/stable/bin/lein
- chmod a+x lein
- export LEIN_ROOT=1
- PATH=$PATH:.
- lein deps
- lein midje
build:
script:
- ./build.sh
deploy:
script:
- curl https://cli-assets.heroku.com/install-ubuntu.sh | sh
- ./deploy.sh
| image: docker:latest
services:
- docker:dind
variables:
DOCKER_DRIVER: overlay
stages:
- test
- build
- release
test:
stage: test
script:
- apk update
- apk install openjdk8-jre-base
- wget https://raw.githubusercontent.com/technomancy/leiningen/stable/bin/lein
- chmod a+x lein
- export LEIN_ROOT=1
- PATH=$PATH:.
- lein deps
- lein midje
build:
stage: build
script:
- docker build --tag registry.heroku.com/yorck-ratings/web --rm .
- echo $HEROKU_API_KEY | docker login --username _ --password-stdin registry.heroku.com
- docker push registry.heroku.com/yorck-ratings/web
release:
stage: release
script:
- docker run --rm -e HEROKU_API_KEY=$HEROKU_API_KEY dickeyxxx/heroku-cli:v7.0.98 heroku container:release web --app yorck-ratings
| Work with Docker in Docker setup | Work with Docker in Docker setup
| YAML | epl-1.0 | treppo/yorck-ratings-v2 |
f81637ce2fe7730c5169f805fc7beca4a06d1145 | .codeclimate.yml | .codeclimate.yml | languages:
Ruby: false
JavaScript: true
PHP: true
Python: false
exclude_paths:
- "vendor/*"
- "config/*"
- "bootstrap/*"
- "database/*"
- "storage/*"
- "resources/assets/css/skin-*.css"
- "resources/assets/js/AdminLTE.js"
- "resources/assets/css/AdminLTE.css"
- "resources/lang/en/*.php"
- "*.blade.php"
| languages:
Ruby: false
JavaScript: true
PHP: true
Python: false
exclude_paths:
- "vendor/*"
- "config/*"
- "bootstrap/*"
- "database/*"
- "storage/*"
- "resources/assets/css/skin-*.css"
- "resources/assets/js/AdminLTE.js"
- "resources/assets/css/AdminLTE.css"
- "resources/lang/en/*.php"
- "*.blade.php"
- "*.js"
| Remove JS from code climate for now | Remove JS from code climate for now
| YAML | mit | REBELinBLUE/deployer,talib570/deployer,iflamed/deployer,iflamed/deployer,REBELinBLUE/deployer,JamesForks/deployer,JamesForks/deployer,JamesForks/deployer,talib570/deployer,REBELinBLUE/deployer,JamesForks/deployer,REBELinBLUE/deployer |
973e355947da06be0ba6a85bafbf8576a2ba7813 | recipes/perl-scalar-list-utils/meta.yaml | recipes/perl-scalar-list-utils/meta.yaml | package:
name: perl-scalar-list-utils
version: "1.42"
source:
fn: Scalar-List-Utils-1.42.tar.gz
url: https://cpan.metacpan.org/authors/id/P/PE/PEVANS/Scalar-List-Utils-1.42.tar.gz
md5: a76768c6e0f92eefb6d4b3b779469c3d
# patches:
# List any patch files here
# - fix.patch
build:
number: 2
skip: True # [osx]
requirements:
build:
- gcc
- perl-threaded
run:
- libgcc
- perl-threaded
test:
# Perl 'use' tests
imports:
- Scalar::Util
about:
home: http://metacpan.org/pod/Scalar-List-Utils
license: perl_5
summary: 'Common Scalar and List utility subroutines'
# See
# http://docs.continuum.io/conda/build.html for
# more information about meta.yaml
| package:
name: perl-scalar-list-utils
version: "1.42"
source:
fn: Scalar-List-Utils-1.42.tar.gz
url: https://cpan.metacpan.org/authors/id/P/PE/PEVANS/Scalar-List-Utils-1.42.tar.gz
md5: a76768c6e0f92eefb6d4b3b779469c3d
# patches:
# List any patch files here
# - fix.patch
build:
number: 3
requirements:
build:
- gcc
- perl-threaded
run:
- libgcc
- perl-threaded
test:
# Perl 'use' tests
imports:
- Scalar::Util
about:
home: http://metacpan.org/pod/Scalar-List-Utils
license: perl_5
summary: 'Common Scalar and List utility subroutines'
# See
# http://docs.continuum.io/conda/build.html for
# more information about meta.yaml
| Build Perl Scalar-List-Utils for OSX | Build Perl Scalar-List-Utils for OSX
| YAML | mit | Luobiny/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,oena/bioconda-recipes,matthdsm/bioconda-recipes,zwanli/bioconda-recipes,omicsnut/bioconda-recipes,JenCabral/bioconda-recipes,ostrokach/bioconda-recipes,abims-sbr/bioconda-recipes,joachimwolff/bioconda-recipes,jfallmann/bioconda-recipes,ostrokach/bioconda-recipes,bebatut/bioconda-recipes,keuv-grvl/bioconda-recipes,bow/bioconda-recipes,oena/bioconda-recipes,JenCabral/bioconda-recipes,peterjc/bioconda-recipes,keuv-grvl/bioconda-recipes,phac-nml/bioconda-recipes,zachcp/bioconda-recipes,cokelaer/bioconda-recipes,gregvonkuster/bioconda-recipes,ivirshup/bioconda-recipes,ThomasWollmann/bioconda-recipes,HassanAmr/bioconda-recipes,bebatut/bioconda-recipes,phac-nml/bioconda-recipes,gregvonkuster/bioconda-recipes,omicsnut/bioconda-recipes,HassanAmr/bioconda-recipes,ThomasWollmann/bioconda-recipes,phac-nml/bioconda-recipes,rvalieris/bioconda-recipes,gregvonkuster/bioconda-recipes,rob-p/bioconda-recipes,bioconda/bioconda-recipes,dmaticzka/bioconda-recipes,omicsnut/bioconda-recipes,zwanli/bioconda-recipes,CGATOxford/bioconda-recipes,bow/bioconda-recipes,dmaticzka/bioconda-recipes,acaprez/recipes,matthdsm/bioconda-recipes,abims-sbr/bioconda-recipes,hardingnj/bioconda-recipes,keuv-grvl/bioconda-recipes,mcornwell1957/bioconda-recipes,zachcp/bioconda-recipes,hardingnj/bioconda-recipes,lpantano/recipes,colinbrislawn/bioconda-recipes,pinguinkiste/bioconda-recipes,joachimwolff/bioconda-recipes,blankenberg/bioconda-recipes,jasper1918/bioconda-recipes,jasper1918/bioconda-recipes,chapmanb/bioconda-recipes,ThomasWollmann/bioconda-recipes,yesimon/bioconda-recipes,phac-nml/bioconda-recipes,bebatut/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,ivirshup/bioconda-recipes,pinguinkiste/bioconda-recipes,chapmanb/bioconda-recipes,abims-sbr/bioconda-recipes,gvlproject/bioconda-recipes,ivirshup/bioconda-recipes,colinbrislawn/bioconda-recipes,colinbrislawn/bioconda-recipes,keuv-grvl/bioconda-recipes,ostrokach/bioconda-recipes,gvlproject/bioconda-recipes,xguse/bioconda-recipes,rob-p/bioconda-recipes,oena/bioconda-recipes,ThomasWollmann/bioconda-recipes,daler/bioconda-recipes,acaprez/recipes,jasper1918/bioconda-recipes,blankenberg/bioconda-recipes,npavlovikj/bioconda-recipes,peterjc/bioconda-recipes,HassanAmr/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,mdehollander/bioconda-recipes,bioconda/bioconda-recipes,keuv-grvl/bioconda-recipes,gvlproject/bioconda-recipes,jfallmann/bioconda-recipes,zachcp/bioconda-recipes,xguse/bioconda-recipes,lpantano/recipes,xguse/bioconda-recipes,chapmanb/bioconda-recipes,Luobiny/bioconda-recipes,acaprez/recipes,martin-mann/bioconda-recipes,colinbrislawn/bioconda-recipes,gvlproject/bioconda-recipes,xguse/bioconda-recipes,JenCabral/bioconda-recipes,bebatut/bioconda-recipes,saketkc/bioconda-recipes,CGATOxford/bioconda-recipes,abims-sbr/bioconda-recipes,saketkc/bioconda-recipes,peterjc/bioconda-recipes,joachimwolff/bioconda-recipes,rvalieris/bioconda-recipes,matthdsm/bioconda-recipes,martin-mann/bioconda-recipes,pinguinkiste/bioconda-recipes,npavlovikj/bioconda-recipes,roryk/recipes,mcornwell1957/bioconda-recipes,abims-sbr/bioconda-recipes,daler/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,CGATOxford/bioconda-recipes,lpantano/recipes,npavlovikj/bioconda-recipes,HassanAmr/bioconda-recipes,cokelaer/bioconda-recipes,lpantano/recipes,mdehollander/bioconda-recipes,mdehollander/bioconda-recipes,cokelaer/bioconda-recipes,pinguinkiste/bioconda-recipes,CGATOxford/bioconda-recipes,daler/bioconda-recipes,bioconda/recipes,dkoppstein/recipes,rvalieris/bioconda-recipes,colinbrislawn/bioconda-recipes,guowei-he/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,guowei-he/bioconda-recipes,HassanAmr/bioconda-recipes,hardingnj/bioconda-recipes,bow/bioconda-recipes,roryk/recipes,keuv-grvl/bioconda-recipes,dmaticzka/bioconda-recipes,ThomasWollmann/bioconda-recipes,chapmanb/bioconda-recipes,rob-p/bioconda-recipes,ostrokach/bioconda-recipes,oena/bioconda-recipes,mcornwell1957/bioconda-recipes,yesimon/bioconda-recipes,gvlproject/bioconda-recipes,shenwei356/bioconda-recipes,jfallmann/bioconda-recipes,yesimon/bioconda-recipes,mdehollander/bioconda-recipes,bioconda/recipes,martin-mann/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,saketkc/bioconda-recipes,dmaticzka/bioconda-recipes,bow/bioconda-recipes,guowei-he/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,rob-p/bioconda-recipes,oena/bioconda-recipes,saketkc/bioconda-recipes,joachimwolff/bioconda-recipes,zwanli/bioconda-recipes,shenwei356/bioconda-recipes,rvalieris/bioconda-recipes,jasper1918/bioconda-recipes,daler/bioconda-recipes,JenCabral/bioconda-recipes,zachcp/bioconda-recipes,phac-nml/bioconda-recipes,dmaticzka/bioconda-recipes,npavlovikj/bioconda-recipes,guowei-he/bioconda-recipes,mcornwell1957/bioconda-recipes,mcornwell1957/bioconda-recipes,matthdsm/bioconda-recipes,abims-sbr/bioconda-recipes,bioconda/recipes,hardingnj/bioconda-recipes,ivirshup/bioconda-recipes,rvalieris/bioconda-recipes,pinguinkiste/bioconda-recipes,shenwei356/bioconda-recipes,zwanli/bioconda-recipes,colinbrislawn/bioconda-recipes,yesimon/bioconda-recipes,martin-mann/bioconda-recipes,jfallmann/bioconda-recipes,ivirshup/bioconda-recipes,mdehollander/bioconda-recipes,ThomasWollmann/bioconda-recipes,CGATOxford/bioconda-recipes,roryk/recipes,Luobiny/bioconda-recipes,gregvonkuster/bioconda-recipes,martin-mann/bioconda-recipes,zwanli/bioconda-recipes,daler/bioconda-recipes,JenCabral/bioconda-recipes,dkoppstein/recipes,ostrokach/bioconda-recipes,bioconda/bioconda-recipes,hardingnj/bioconda-recipes,acaprez/recipes,BIMSBbioinfo/bioconda-recipes,saketkc/bioconda-recipes,blankenberg/bioconda-recipes,HassanAmr/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,cokelaer/bioconda-recipes,omicsnut/bioconda-recipes,omicsnut/bioconda-recipes,xguse/bioconda-recipes,jasper1918/bioconda-recipes,chapmanb/bioconda-recipes,blankenberg/bioconda-recipes,shenwei356/bioconda-recipes,rvalieris/bioconda-recipes,bioconda/bioconda-recipes,daler/bioconda-recipes,guowei-he/bioconda-recipes,ostrokach/bioconda-recipes,matthdsm/bioconda-recipes,bow/bioconda-recipes,peterjc/bioconda-recipes,CGATOxford/bioconda-recipes,peterjc/bioconda-recipes,mdehollander/bioconda-recipes,dmaticzka/bioconda-recipes,JenCabral/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,joachimwolff/bioconda-recipes,pinguinkiste/bioconda-recipes,dkoppstein/recipes,matthdsm/bioconda-recipes,joachimwolff/bioconda-recipes,zwanli/bioconda-recipes,bow/bioconda-recipes,ivirshup/bioconda-recipes,peterjc/bioconda-recipes,Luobiny/bioconda-recipes,saketkc/bioconda-recipes,gvlproject/bioconda-recipes |
deb844253841f17e7e949c6afa433e3229f899ea | recipe/meta.yaml | recipe/meta.yaml | {% set version = "0.10.5" %}
package:
name: conda-smithy
version: {{ version }}
source:
fn: conda-smithy-v{{ version }}.tar.gz
url: https://github.com/conda-forge/conda-smithy/archive/v{{ version }}.tar.gz
sha256: 7d436c60cc117e6b9a648fc6cfd9f36ad8b708858c55764c5caaf43a188aeeea
build:
number: 0
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
build:
- python
- setuptools
run:
- python
- setuptools
- conda-build-all
- conda
- conda-build
- jinja2
- requests
- pycrypto
- gitpython
- pygithub <2
- ruamel.yaml
test:
imports:
- conda_smithy
- conda_smithy.ci_register
- conda_smithy.configure_feedstock
commands:
- conda smithy --help
about:
home: https://github.com/conda-forge/conda-smithy
license: BSD 3-clause
summary: The tool for managing conda-forge feedstocks
extra:
recipe-maintainers:
- pelson
| {% set version = "0.10.5" %}
package:
name: conda-smithy
version: {{ version }}
source:
fn: conda-smithy-v{{ version }}.tar.gz
url: https://github.com/conda-forge/conda-smithy/archive/v{{ version }}.tar.gz
sha256: 7d436c60cc117e6b9a648fc6cfd9f36ad8b708858c55764c5caaf43a188aeeea
build:
number: 0
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
build:
- python
- setuptools
run:
- python
- setuptools
- conda-build-all
- conda
- conda-build
- jinja2
- requests
- pycrypto
- gitpython
- pygithub <2
- ruamel.yaml
test:
imports:
- conda_smithy
- conda_smithy.ci_register
- conda_smithy.configure_feedstock
commands:
- conda smithy --help
about:
home: https://github.com/conda-forge/conda-smithy
license: BSD 3-clause
summary: The tool for managing conda-forge feedstocks
extra:
recipe-maintainers:
- jakirkham
- pelson
| Add @jakirkham as a maintainer. | recipe: Add @jakirkham as a maintainer.
| YAML | bsd-3-clause | ocefpaf/conda-smithy-feedstock |
8ed50cea15f035b412f7393f5f9dc8517e65b1f4 | .readthedocs.yml | .readthedocs.yml | # .readthedocs.yml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
# Required
version: 2
# Build documentation in the docs/ directory with Sphinx
sphinx:
builder: html
configuration: docs/source/conf.py
# Build documentation with MkDocs
#mkdocs:
# configuration: mkdocs.yml
# Optionally build your docs in additional formats such as PDF and ePub
formats: all
# Optionally set the version of Python and requirements required to build your docs
#python:
# version: 3.7
conda:
environment: environment-docs.yml
build:
image: latest
| # .readthedocs.yml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
# Required
version: 2
# Build documentation in the docs/ directory with Sphinx
sphinx:
builder: html
configuration: docs/source/conf.py
# Build documentation with MkDocs
#mkdocs:
# configuration: mkdocs.yml
# Optionally build your docs in additional formats such as PDF and ePub
formats: all
# Optionally set the version of Python and requirements required to build your docs
#python:
# version: 3.7
conda:
environment: environment-docs.yml
build:
image: stable
| Use the stable build image | Use the stable build image
| YAML | apache-2.0 | bird-house/flyingpigeon |
1f886fc4da1562a1624c31f8a62fbf459180799b | .readthedocs.yml | .readthedocs.yml | version: 2
conda:
environment: environment_docs.yml | version: 2
build:
os: ubuntu-20.04
tools:
python: mambaforge-4.10
conda:
environment: environment_docs.yml
| Update Read the Docs configuration (automatic) | Update Read the Docs configuration (automatic)
The following migrators were applied:
- Migrate to `build.tools` configuration.
This uses the new base Docker image based on Ubuntu 20.04 introduced in October 2021
and picks an appropriate Python version for your project
(read [our blog post](https://blog.readthedocs.com/new-build-specification/)
for details).
Notice that now you can specify the Node.js, Rust, and Go versions as well.
*Note:* Some system dependencies are not preinstalled anymore,
so this might require manually adding them to `build.apt_packages`
(see [our
documentation](https://docs.readthedocs.io/en/stable/config-file/v2.html#build-apt-packages>)).
- Migrate to Mamba as a drop-in replacement for Conda.
Your project requested using Mamba instead of Conda for performance reasons.
Now this is included in your configuration
and you can change it without our intervention. | YAML | mit | PyPSA/PyPSA |
31afeab5bbe9f8592dde4005cc1daabe91254582 | .scrutinizer.yml | .scrutinizer.yml | checks:
php:
code_rating: true
filter:
excluded_paths:
- tests/*
- vendor/*
build:
environment:
php: '7.3'
dependencies:
before:
- composer install
- mkdir -p build/logs
tests:
override:
-
command: 'vendor/bin/phpunit --coverage-clover build/logs/clover.xml'
coverage:
file: 'build/logs/clover.xml'
format: 'clover'
| checks:
php:
code_rating: true
filter:
excluded_paths:
- tests/*
- vendor/*
build:
nodes:
analysis:
tests:
override:
- php-scrutinizer-run
environment:
php: '7.3'
dependencies:
before:
- composer install
- mkdir -p build/logs
tests:
override:
-
command: 'vendor/bin/phpunit --coverage-clover build/logs/clover.xml'
coverage:
file: 'build/logs/clover.xml'
format: 'clover'
| Upgrade to new PHP Analysis | Upgrade to new PHP Analysis
See: https://scrutinizer-ci.com/docs/tools/php/php-analyzer/guides/migrate_to_new_php_analysis
| YAML | mit | lampager/lampager |
64233b63b03aa0f182f41e1a54820d51d43b7565 | .scrutinizer.yml | .scrutinizer.yml | filter:
excluded_paths:
- doc/*
- vendor/*
- example/*
checks:
php:
duplication: false | filter:
excluded_paths:
- doc/*
- vendor/*
- example/*
- tests/Parser/Php/ParserTest/*
- tests/Parser/Php/PreprocessorTest/*
checks:
php:
duplication: false | Exclude intentionally bad test input from Scrutinizer. | Exclude intentionally bad test input from Scrutinizer. | YAML | mit | vanderlee/PHPSwaggerGen,vanderlee/PHPSwaggerGen,vanderlee/PHPSwaggerGen |
7f40173c91cd1b1344707f5a547761f335320e9b | .scrutinizer.yml | .scrutinizer.yml | filter:
excluded_paths:
- 'tests/'
- 'vendor/'
tools:
external_code_coverage: true
build:
nodes:
analysis:
project_setup:
override: true
tests:
override:
- php-scrutinizer-run --enable-security-analysis
| filter:
excluded_paths:
- 'tests/'
- 'vendor/'
tools:
external_code_coverage: true
build:
nodes:
analysis:
tests:
override:
- php-scrutinizer-run --enable-security-analysis
| Remove innocuous project setup override | Remove innocuous project setup override
| YAML | mit | eclipxe13/CfdiUtils,eclipxe13/CfdiUtils |
c0b7ff3d836cc4298579c388cfb136d11d84d164 | environment.yml | environment.yml | name: typhon
dependencies:
- python>=3.5.1
- matplotlib>=1.4
- netCDF4>=1.1.1
- nose>=1.3.0
- numexpr
- numpy>=1.6
- scikit-learn
- scipy>=0.15.1
- setuptools>=0.7.2
- xarray
- numba
| name: typhon
dependencies:
- python>=3.5.1
- matplotlib>=1.4
- netCDF4>=1.1.1
- nose>=1.3.0
- numexpr
- numpy>=1.13
- scikit-learn
- scipy>=0.15.1
- setuptools>=0.7.2
- xarray>=0.10.2
- numba
| Add necessary version for xarray dependency | Add necessary version for xarray dependency
Since commit c6ea042 (merged in #143), UnitsAwareDataArray depends on
xarray.DataArray.__array_ufunc__ (which in turn depends on numpy 1.13 or
newer). This was merged into xarray in
https://github.com/pydata/xarray/pull/1962 and added to release 0.10.2.
The old UnitsAwareDataArray does not work with xarray>=0.10.2 and the new
one does not work with xarray<=0.10.1. Therefore, typhon now depends on
xarray>=0.10.2 and numpy>=1.13.
| YAML | mit | atmtools/typhon,atmtools/typhon |
56bc814a53d4e29dfda1287c5b1598d72b91d845 | prow/monitoring/grafana_configmaps.yaml | prow/monitoring/grafana_configmaps.yaml | ---
apiVersion: v1
kind: ConfigMap
metadata:
namespace: prow-monitoring
name: grafana-datasources
data:
datasources.yaml: |
---
apiVersion: 1
datasources:
- name: prometheus
type: prometheus
access: proxy
url: http://prometheus.prow-monitoring.svc:9090
version: 1
orgId: 1
editable: false
---
apiVersion: v1
kind: ConfigMap
metadata:
namespace: prow-monitoring
name: grafana-config
data:
grafana.ini: |
[auth]
disable_login_form = true
disable_signout_menu = true
[auth.basic]
enabled = false
[auth.anonymous]
enabled = true
org_role = Viewer
[paths]
data = /var/lib/grafana
logs = /var/lib/grafana/logs
plugins = /var/lib/grafana/plugins
provisioning = /etc/grafana/provisioning
[server]
http_port = 3001
| ---
apiVersion: v1
kind: ConfigMap
metadata:
namespace: prow-monitoring
name: grafana-datasources
data:
datasources.yaml: |
---
apiVersion: 1
datasources:
- name: prometheus
type: prometheus
access: proxy
url: http://prometheus.prow-monitoring.svc:9090
version: 1
orgId: 1
editable: false
---
apiVersion: v1
kind: ConfigMap
metadata:
namespace: prow-monitoring
name: grafana-config
data:
grafana.ini: |
[auth]
disable_login_form = true
disable_signout_menu = true
[auth.basic]
enabled = false
[auth.anonymous]
enabled = true
org_role = Viewer
[paths]
data = /var/lib/grafana
logs = /var/lib/grafana/logs
plugins = /var/lib/grafana/plugins
provisioning = /etc/grafana/provisioning
[server]
http_port = 3001
---
apiVersion: v1
kind: ConfigMap
metadata:
namespace: prow-monitoring
name: grafana-dashboards
data:
dashboards.yaml: |
apiVersion: 1
providers:
- folder: ''
name: '0'
options:
path: "/grafana-dashboard-definitions/0"
orgId: 1
type: file
| Add configMap grafana-dashboards in prow-monitoring | Add configMap grafana-dashboards in prow-monitoring
| YAML | apache-2.0 | BenTheElder/test-infra,pwittrock/test-infra,cblecker/test-infra,cblecker/test-infra,monopole/test-infra,brahmaroutu/test-infra,monopole/test-infra,BenTheElder/test-infra,jessfraz/test-infra,pwittrock/test-infra,brahmaroutu/test-infra,michelle192837/test-infra,cjwagner/test-infra,fejta/test-infra,krzyzacy/test-infra,pwittrock/test-infra,monopole/test-infra,dims/test-infra,cjwagner/test-infra,monopole/test-infra,BenTheElder/test-infra,BenTheElder/test-infra,kubernetes/test-infra,kubernetes/test-infra,dims/test-infra,krzyzacy/test-infra,ixdy/kubernetes-test-infra,cjwagner/test-infra,cjwagner/test-infra,jessfraz/test-infra,michelle192837/test-infra,kubernetes/test-infra,dims/test-infra,fejta/test-infra,michelle192837/test-infra,jessfraz/test-infra,BenTheElder/test-infra,jessfraz/test-infra,michelle192837/test-infra,cblecker/test-infra,krzyzacy/test-infra,ixdy/kubernetes-test-infra,krzyzacy/test-infra,pwittrock/test-infra,kubernetes/test-infra,jessfraz/test-infra,cblecker/test-infra,michelle192837/test-infra,brahmaroutu/test-infra,kubernetes/test-infra,kubernetes/test-infra,ixdy/kubernetes-test-infra,brahmaroutu/test-infra,cjwagner/test-infra,monopole/test-infra,cblecker/test-infra,fejta/test-infra,cblecker/test-infra,fejta/test-infra,fejta/test-infra,cjwagner/test-infra,krzyzacy/test-infra,krzyzacy/test-infra,ixdy/kubernetes-test-infra,dims/test-infra,pwittrock/test-infra,brahmaroutu/test-infra,ixdy/kubernetes-test-infra,fejta/test-infra,dims/test-infra,dims/test-infra,jessfraz/test-infra,BenTheElder/test-infra,michelle192837/test-infra,monopole/test-infra,brahmaroutu/test-infra |
b32d51f8bbdd7a8ee2434108b7fdfef50913e6bd | metadata/de.tcrass.minos.yml | metadata/de.tcrass.minos.yml | Categories:
- Games
License: GPL-3.0-or-later
AuthorName: Torsten Crass
SourceCode: https://gitlab.com/tcrass/minos
IssueTracker: https://gitlab.com/tcrass/minos/issues
RepoType: git
Repo: https://gitlab.com/tcrass/minos.git
Builds:
- versionName: 1.0.3
versionCode: 4099
commit: v1.0.3
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 1.0.3
CurrentVersionCode: 4099
| Categories:
- Games
License: GPL-3.0-or-later
AuthorName: Torsten Crass
SourceCode: https://gitlab.com/tcrass/minos
IssueTracker: https://gitlab.com/tcrass/minos/issues
AutoName: Minos
RepoType: git
Repo: https://gitlab.com/tcrass/minos.git
Builds:
- versionName: 1.0.3
versionCode: 4099
commit: v1.0.3
subdir: app
gradle:
- yes
- versionName: 1.0.4
versionCode: 10004
commit: v1.0.4
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 1.0.4
CurrentVersionCode: 10004
| Update Minos to 1.0.4 (10004) | Update Minos to 1.0.4 (10004)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
d3a1f810a213da63bc78ec9c8a4107918bc1cda5 | tasks/run-cats.yml | tasks/run-cats.yml | ---
platform: linux
image_resource: { type: docker-image, source: { repository: flintstonecf/ci } }
inputs:
- name: ci-tasks
- name: acceptance-tests
- name: deployment-vars
outputs:
params:
BOSH_TARGET:
DEPLOYMENT_NAME:
ENVIRONMENT_NAME:
CF_DOMAIN: bosh-lite.com
CF_DIAL_TIMEOUT: 300
NODES: 5
run:
path: ci-tasks/scripts/run-cats.sh
| ---
platform: linux
image_resource: { type: docker-image, source: { repository: flintstonecf/ci } }
inputs:
- name: ci-tasks
- name: acceptance-tests
- name: deployment-vars
outputs:
params:
BOSH_TARGET:
DEPLOYMENT_NAME:
ENVIRONMENT_NAME:
CF_DOMAIN: bosh-lite.com
CF_DIAL_TIMEOUT: 300
NODES: 12
run:
path: ci-tasks/scripts/run-cats.sh
| Change num nodes to 12 to have same setup as RelInt Team | Change num nodes to 12 to have same setup as RelInt Team
| YAML | apache-2.0 | cloudfoundry-incubator/bits-service-ci,cloudfoundry-incubator/bits-service-ci,cloudfoundry-incubator/bits-service-ci |
62a60fb4b480cc711a5e7054ec7c621895cc36f3 | manifest.yml | manifest.yml | ---
applications:
- name: sample-java-helloworld
random-route: true
memory: 512M
path: target/JavaHelloWorldApp.war
| ---
applications:
- name: sample-java-helloworld
random-route: true
memory: 256M
path: target/JavaHelloWorldApp.war
| Reduce the amount of memory used | Reduce the amount of memory used
| YAML | apache-2.0 | IBM-Bluemix/java-helloworld,IBM-Bluemix/java-helloworld,IBM-Bluemix/java-helloworld |
aee44d669b351e9bf8a20c6f89a1c47c20790179 | appveyor.yml | appveyor.yml | version: 1.0.{build}
image: Windows Server 2016
environment:
DOCKER_USER:
secure: LjNiW/ZWrfVIJn3Mc9foeg==
DOCKER_PASS:
secure: 4gsl5WiqIztEWhL5fuhp9X0qT/mKg9fYzKYUUPf5WStIuNddv0fvIKGmvvyuFzzd
install:
- docker version
build_script:
- ps: .\build.ps1
test_script:
- ps: .\test.ps1
deploy_script:
- ps: .\deploy.ps1
| version: 1.0.{build}
image: Visual Studio 2017
environment:
DOCKER_USER:
secure: LjNiW/ZWrfVIJn3Mc9foeg==
DOCKER_PASS:
secure: 4gsl5WiqIztEWhL5fuhp9X0qT/mKg9fYzKYUUPf5WStIuNddv0fvIKGmvvyuFzzd
install:
- docker version
build_script:
- ps: .\build.ps1
test_script:
- ps: .\test.ps1
deploy_script:
- ps: .\deploy.ps1
| Use official AppVeyor builder w/ Docker | Use official AppVeyor builder w/ Docker
| YAML | apache-2.0 | StefanScherer/winspector,StefanScherer/winspector |
d6045d2b21cc7e2b9b635c3de3cabdb7b910cf23 | appveyor.yml | appveyor.yml | version: 1.0.{build}
pull_requests:
do_not_increment_build_number: true
branches:
only:
- ci-debug
- master
clone_depth: 1
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
init:
# https://www.appveyor.com/docs/how-to/rdp-to-build-worker
- ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
before_build:
- choco install redis-64
- redis-server --service-install
- redis-server --service-start
- nuget restore
configuration: Release
build:
parallel: true
verbosity: minimal
deploy:
- provider: NuGet
api_key:
secure: 8nOJ8wjmitnOcDwlirh5QLHECezb9AQgSzbXbBsNkOBGhtOxz1WDQKBDOZXIhoM9
on:
branch: master
on_finish:
# https://www.appveyor.com/docs/how-to/rdp-to-build-worker
- ps: |
If ($env:APPVEYOR_REPO_BRANCH -eq 'ci-debug')
{
$blockRdp = $true
iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
} | version: 1.0.{build}
pull_requests:
do_not_increment_build_number: true
branches:
only:
- ci-debug
- master
clone_depth: 1
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
init:
# https://www.appveyor.com/docs/how-to/rdp-to-build-worker
- ps: |
If ($env:APPVEYOR_REPO_BRANCH -eq 'ci-debug') {
$blockRdp = $true
iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
}
before_build:
- choco install redis-64
- redis-server --service-install
- redis-server --service-start
- nuget restore
configuration: Release
build:
parallel: true
verbosity: minimal
deploy:
- provider: NuGet
api_key:
secure: 8nOJ8wjmitnOcDwlirh5QLHECezb9AQgSzbXbBsNkOBGhtOxz1WDQKBDOZXIhoM9
on:
branch: master
| Consolidate RDP access scripts. RDP access to build worker now only on ci-debug branch. | Consolidate RDP access scripts. RDP access to build worker now only on ci-debug branch.
| YAML | mit | Aqovia/Aqovia.SagaMachine |
f3f54a326bda7cf44e73f61f2b5b3312d569990c | appveyor.yml | appveyor.yml | os: Visual Studio 2015
platform: x64
environment:
NODE_ENV: development
matrix:
- nodejs_version: "0.12"
- nodejs_version: "4"
- nodejs_version: "5"
install:
- ps: Install-Product node $env:nodejs_version
- npm install
# Post-install test scripts.
test_script:
# Output useful info for debugging.
- node --version
- npm --version
# Don't actually build.
build: off
matrix:
fast_finish: true
cache:
- node_modules -> package.json
| os: Visual Studio 2015
platform: x64
environment:
NODE_ENV: development
matrix:
- nodejs_version: "0.12"
- nodejs_version: "4"
- nodejs_version: "5"
install:
- ps: Install-Product node $env:nodejs_version x64
- npm install
# Post-install test scripts.
test_script:
# Output useful info for debugging.
- node --version
- npm --version
# Don't actually build.
build: off
matrix:
fast_finish: true
cache:
- node_modules -> package.json
| Set to install x64 node version | chore: Set to install x64 node version
| YAML | mit | cartridge/cartridge-images |
7725403a7589ba7d34d143ca8ac3fc30e2a95d14 | appveyor.yml | appveyor.yml | version: 1.0.{build}
branches:
only:
# TODO: Put master here too.
- staging_master
image: Visual Studio 2015
clone_depth: 15
install:
- .\Configure_MSVC.bat
# - cd build-msvc
build:
parallel: true
project: build-msvc\BitFunnel_CMake.sln
test_script:
- cd build-msvc
- ctest -C Debug
# TODO: Add Release tests here too. | version: 1.0.{build}
branches:
only:
- master
- staging_master
image: Visual Studio 2015
clone_depth: 15
install:
- .\Configure_MSVC.bat
# - cd build-msvc
build:
parallel: true
project: build-msvc\BitFunnel_CMake.sln
test_script:
- cd build-msvc
- ctest -C Debug
# TODO: Add Release tests here too. | Add `master` to the Appveyor build. | Add `master` to the Appveyor build.
| YAML | mit | danluu/BitFunnel,BitFunnel/BitFunnel,danluu/BitFunnel,danluu/BitFunnel,danluu/BitFunnel,BitFunnel/BitFunnel,BitFunnel/BitFunnel,danluu/BitFunnel,danluu/BitFunnel,BitFunnel/BitFunnel,BitFunnel/BitFunnel,BitFunnel/BitFunnel |
ce02763b8cefa25d9fe99068ffb3c04b901d590c | appveyor.yml | appveyor.yml | install:
- choco install gitversion.portable -pre -y
assembly_info:
patch: false
before_build:
- nuget restore
- ps: gitversion /l console /output buildserver /updateAssemblyInfo
- ps: ./build/UpdateAssemblyInfo.ps1
build:
project: SimpleParameterValidation.sln
after_build:
- cmd: dotnet pack ./src/SimpleParameterValidator -c "target=%CONFIGURATION%" -o ./publish
- cmd: appveyor PushArtifact "./publish/SimpleParameterValidator.%GitVersion_NuGetVersion%.nupkg" | install:
- choco install gitversion.portable -pre -y
assembly_info:
patch: false
before_build:
- cmd: dotnet restore
- ps: gitversion /l console /output buildserver /updateAssemblyInfo
- ps: ./build/UpdateAssemblyInfo.ps1
build:
project: SimpleParameterValidation.sln
after_build:
- cmd: dotnet pack ./src/SimpleParameterValidator -c "target=%CONFIGURATION%" -o ./publish
- cmd: appveyor PushArtifact "./publish/SimpleParameterValidator.%GitVersion_NuGetVersion%.nupkg" | Use dotnet restore instead of nuget restore | Use dotnet restore instead of nuget restore
| YAML | mit | dibble-james/Simple-Parameter-Validation |
2c350b2fea29ee5fe18243ff84040a755a9de508 | appveyor.yml | appveyor.yml | version: "{build}"
clone_depth: 5
branches:
only:
- master
build: off
environment:
matrix:
- RUBY_FOLDER_VER: "25-x64"
- RUBY_FOLDER_VER: "25"
- RUBY_FOLDER_VER: "24"
- RUBY_FOLDER_VER: "23"
install:
- SET PATH=C:\Ruby%RUBY_FOLDER_VER%\bin;%PATH%
- bundle install --retry 5 --jobs=%NUMBER_OF_PROCESSORS% --clean --path vendor\bundle
test_script:
- ruby --version
- gem --version
- bundler --version
- bash ./script/cibuild
cache:
# If one of the files after the right arrow changes, cache will be invalidated
- 'vendor\bundle -> appveyor.yml,Gemfile,jekyll-github-metadata.gemspec'
| version: "{build}"
clone_depth: 5
branches:
only:
- master
build: off
environment:
matrix:
- RUBY_FOLDER_VER: "25-x64"
- RUBY_FOLDER_VER: "25"
- RUBY_FOLDER_VER: "24"
- RUBY_FOLDER_VER: "23"
install:
- SET PATH=C:\Ruby%RUBY_FOLDER_VER%\bin;%PATH%
- bundle install --retry 5 --jobs=%NUMBER_OF_PROCESSORS% --clean --path vendor\bundle
test_script:
- ruby --version
- gem --version
- bundler --version
- bash ./script/test
cache:
# If one of the files after the right arrow changes, cache will be invalidated
- 'vendor\bundle -> appveyor.yml,Gemfile,jekyll-github-metadata.gemspec'
| Disable RuboCop check on AppVeyor | Disable RuboCop check on AppVeyor
| YAML | mit | jekyll/github-metadata,jekyll/github-metadata,jekyll/github-metadata,jekyll/github-metadata |
7fdd123090bda7a7556a6ce13079b4dd53796e8e | appveyor.yml | appveyor.yml | version: 1.0.{build}
os: Visual Studio 2015 CTP 6
init:
- git config --global core.autocrlf true
install:
- set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;%PATH%
before_build:
- nuget restore
build:
verbosity: minimal
| version: 1.0.{build}
os: Visual Studio 2015 RC
init:
- git config --global core.autocrlf true
install:
- set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;%PATH%
before_build:
- nuget restore
build:
verbosity: minimal
| Update the automated build to use Visual Studio 2015 RC | Update the automated build to use Visual Studio 2015 RC
| YAML | mit | DotNetAnalyzers/StyleCopAnalyzers |
2e4228f381c0fe5231169e96282a3f1011877f1f | appveyor.yml | appveyor.yml | version: 1.0.{build}
image: Visual Studio 2017
init:
- cmd: git config --global core.autocrlf true
clone_folder: c:\sireum-v3
before_build:
- cmd: git config core.symlinks true
- cmd: git reset --hard
- cmd: git submodule update -q --init --recursive
environment:
matrix:
- COMPILER: msys2
PLATFORM: x64
MSYS2_ARCH: x86_64
MSYS2_DIR: msys64
MSYSTEM: MINGW64
BIT: 64
PATH: 'C:\%MSYS2_DIR%\%MSYSTEM%\bin;C:\%MSYS2_DIR%\usr\bin;%PATH%'
cache:
- platform -> bin\prelude.sh
- apps -> bin\prelude.sh
- '%USERPROFILE%\.coursier'
- '%USERPROFILE%\.sbt'
- '%USERPROFILE%\.ivy2\cache'
- '%USERPROFILE%\.m2'
- '%LOCALAPPDATA%\Coursier\cache'
install:
- bash -lc "pacman --noconfirm -S unzip bc"
- bash -lc "$APPVEYOR_BUILD_FOLDER/bin/prelude.sh"
build_script:
- bash -lc "$APPVEYOR_BUILD_FOLDER/bin/sbt-launch.sh clean test:compile test:fastOptJS"
test_script:
- bash -lc "SIREUM_PARALLEL_BUILD=false $APPVEYOR_BUILD_FOLDER/bin/sbt-launch.sh 'project sireum-jvm' test"
| version: 1.0.{build}
image: Visual Studio 2017
init:
- cmd: git config --global core.autocrlf true
clone_folder: c:\sireum-v3
before_build:
- cmd: git config core.symlinks true
- cmd: git reset --hard
- cmd: git submodule update -q --init --recursive
environment:
matrix:
- COMPILER: msys2
PLATFORM: x64
MSYS2_ARCH: x86_64
MSYS2_DIR: msys64
MSYSTEM: MINGW64
BIT: 64
PATH: 'C:\%MSYS2_DIR%\%MSYSTEM%\bin;C:\%MSYS2_DIR%\usr\bin;%PATH%'
cache:
- '%USERPROFILE%\.coursier'
- '%LOCALAPPDATA%\Coursier\cache'
install:
- bash -lc "pacman --noconfirm -S unzip bc"
- bash -lc "$APPVEYOR_BUILD_FOLDER/bin/prelude.sh"
build_script:
- bash -lc "$APPVEYOR_BUILD_FOLDER/bin/sbt-launch.sh clean test:compile test:fastOptJS"
test_script:
- bash -lc "SIREUM_PARALLEL_BUILD=false $APPVEYOR_BUILD_FOLDER/bin/sbt-launch.sh 'project sireum-jvm' test"
| Reduce cached directories. [skip travis] [skip shippable] | Reduce cached directories. [skip travis] [skip shippable]
| YAML | bsd-2-clause | sireum/v3,sireum/v3,sireum/v3,sireum/v3 |
19ee8b243729c109f3c2262d196b03c53d63975f | appveyor.yml | appveyor.yml | version: "{build}"
os:
- Visual Studio 2015
environment:
matrix:
- GENERATOR: Visual Studio 14 2015 # use mscv compiler in 32-bit mode
- GENERATOR: Visual Studio 14 2015 Win64 # use mscv compiler in 64-bit mode
clone_depth: 10
clone_folder: c:\Chemharp
build:
verbosity: minimal
notifications:
- provider: Email
to: [luthaf@luthaf.fr]
on_build_success: false
on_build_failure: true
on_build_status_changed: true
install:
- git submodule update --init
build_script:
- cd C:\Chemharp
- mkdir build
- cd build
- cmake -DBUILD_TESTS=ON -G "%GENERATOR%" ..
- cmake --build . --config debug --target ALL_BUILD
test_script:
- ctest --build-config debug --output-on-failure -E dcd-molfile
| version: "{build}"
os:
- Visual Studio 2015
environment:
matrix:
- GENERATOR: Visual Studio 14 2015 # use mscv compiler in 32-bit mode
- GENERATOR: Visual Studio 14 2015 Win64 # use mscv compiler in 64-bit mode
clone_depth: 10
clone_folder: c:\Chemharp
build:
verbosity: quiet
notifications:
- provider: Email
to: [luthaf@luthaf.fr]
on_build_success: false
on_build_failure: true
on_build_status_changed: true
install:
- git submodule update --init
build_script:
- cd C:\Chemharp
- mkdir build
- cd build
- cmake -DBUILD_TESTS=ON -G "%GENERATOR%" ..
- cmake --build . --config debug --target ALL_BUILD
test_script:
- ctest --build-config debug --output-on-failure -E dcd-molfile
| Use quiet verbosity on Appveyor | Use quiet verbosity on Appveyor
| YAML | bsd-3-clause | Luthaf/Chemharp,lscalfi/chemfiles,Luthaf/Chemharp,chemfiles/chemfiles,lscalfi/chemfiles,chemfiles/chemfiles,chemfiles/chemfiles,lscalfi/chemfiles,lscalfi/chemfiles,chemfiles/chemfiles,Luthaf/Chemharp |
a5efa0fbea85105de21a409b888384d29610e872 | metallus.yml | metallus.yml | software_groups: &software
- "base"
jobs:
solr:
builder: "make"
base: "ubuntu:12.04"
software_groups: *software
image: "solr/solr"
packages:
- type: debian
name: solr-common
version: 4.0.1
depends:
- openjdk-7-jre-headless
- runit
- runit-logging
target: install
repos:
- mxm
| software_groups: &software
- "base"
jobs:
solr:
builder: "make"
base: "ubuntu:12.04"
software_groups: *software
packages:
- type: debian
name: solr-common
version: 4.0.1
depends:
- openjdk-7-jre-headless
- runit
- runit-logging
target: install
repos:
- mxm
| Revert "Explicit image name as dashes aren't allowed" | Revert "Explicit image name as dashes aren't allowed"
This reverts commit dc0aa21ad53f7812cfe04b57e9a9b027e7c8c857.
| YAML | bsd-3-clause | madebymany/solr-package |
5f2d85d046edcb0d339f32c0989f29fdb76c2c5b | appveyor.yml | appveyor.yml | os: Visual Studio 2015
init:
- git config --global core.autocrlf input
build_script:
- cmd: >-
msbuild build.proj /t:configure /p:target=configure /v:quiet &&
msbuild build.proj /t:build /v:diag &&
msbuild build.proj /t:unittest,package /v:minimal
# we run the tests ourselves
test: off
deploy:
- provider: NuGet
api_key:
secure: 7MS5+XWaFchMXFqzgneQCqo9U0DlxiPXe/KWWUnbCBDEizVn06EjdQZkWu1gbNOJ
artifact: Package
on:
branch: /master|v2/
nuget:
project_feed: true
artifacts:
- path: out\*.nupkg
name: Package
| os: Visual Studio 2015
init:
- git config --global core.autocrlf input
build_script:
- cmd: >-
msbuild build.proj /t:configure /p:target=configure /v:quiet &&
msbuild build.proj /t:build /v:normal &&
msbuild build.proj /t:unittest,package /v:minimal
# we run the tests ourselves
test: off
deploy:
- provider: NuGet
api_key:
secure: 7MS5+XWaFchMXFqzgneQCqo9U0DlxiPXe/KWWUnbCBDEizVn06EjdQZkWu1gbNOJ
artifact: Package
on:
branch: /master|v2/
nuget:
project_feed: true
artifacts:
- path: out\*.nupkg
name: Package
| Reduce logging verbosity for build step | Reduce logging verbosity for build step
| YAML | mit | kzu/clide,tondat/clide,kzu/clide,kzu/clide,tondat/clide,tondat/clide,clariuslabs/clide,clariuslabs/clide,clariuslabs/clide |
c88ab7bf19aa9b3e165b0d1faf6c0b20a6d7f62c | appveyor.yml | appveyor.yml | branches:
except:
- gh-pages
platform:
- x64
environment:
RUST_INSTALL_DIR: C:\Rust
matrix:
- RUST_INSTALL_TRIPLE: i686-pc-windows-gnu
RUST_VERSION: stable
- RUST_INSTALL_TRIPLE: i686-pc-windows-gnu
RUST_VERSION: beta
- RUST_INSTALL_TRIPLE: i686-pc-windows-gnu
RUST_VERSION: nightly
- RUST_INSTALL_TRIPLE: x86_64-pc-windows-gnu
RUST_VERSION: stable
- RUST_INSTALL_TRIPLE: x86_64-pc-windows-gnu
RUST_VERSION: beta
- RUST_INSTALL_TRIPLE: x86_64-pc-windows-gnu
RUST_VERSION: nightly
install:
- ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-$Env:RUST_VERSION-$Env:RUST_INSTALL_TRIPLE.exe"
- cmd: rust-%RUST_VERSION%-%RUST_INSTALL_TRIPLE%.exe /VERYSILENT /NORESTART /COMPONENTS="rust,gcc,cargo" /DIR="%RUST_INSTALL_DIR%"
- cmd: SET PATH=%PATH%;%RUST_INSTALL_DIR%\bin
- rustc --version
- cargo --version
build: false
test_script:
- cargo build --verbose
- cargo test --verbose
| branches:
except:
- gh-pages
platform:
- x64
environment:
RUST_INSTALL_DIR: C:\Rust
matrix:
- RUST_INSTALL_TRIPLE: i686-pc-windows-gnu
RUST_VERSION: 1.1.0
- RUST_INSTALL_TRIPLE: i686-pc-windows-gnu
RUST_VERSION: beta
- RUST_INSTALL_TRIPLE: i686-pc-windows-gnu
RUST_VERSION: nightly
- RUST_INSTALL_TRIPLE: x86_64-pc-windows-gnu
RUST_VERSION: 1.1.0
- RUST_INSTALL_TRIPLE: x86_64-pc-windows-gnu
RUST_VERSION: beta
- RUST_INSTALL_TRIPLE: x86_64-pc-windows-gnu
RUST_VERSION: nightly
install:
- ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-$Env:RUST_VERSION-$Env:RUST_INSTALL_TRIPLE.exe"
- cmd: rust-%RUST_VERSION%-%RUST_INSTALL_TRIPLE%.exe /VERYSILENT /NORESTART /COMPONENTS="rust,gcc,cargo" /DIR="%RUST_INSTALL_DIR%"
- cmd: SET PATH=%PATH%;%RUST_INSTALL_DIR%\bin
- rustc --version
- cargo --version
build: false
test_script:
- cargo build --verbose
- cargo test --verbose
| Fix current `stable` channel config for AppVeyor | Fix current `stable` channel config for AppVeyor
| YAML | mit | chip8-rust/chip8-vm,chip8-rust/chip8-vm |
4fb621aec2a381da6952338028386487a0bdfd18 | appveyor.yml | appveyor.yml | # http://www.appveyor.com/docs/appveyor-yml
clone_depth: 10
# Fix line endings in Windows. (runs before repo cloning)
init:
- git config --global core.autocrlf input
# Test against these versions of Node.js.
environment:
matrix:
- nodejs_version: "0.12"
- nodejs_version: "5"
# Install scripts. (runs after repo cloning)
install:
# Get the Node version with matching major & minor numbers
- ps: Install-Product node $env:nodejs_version
# Log HTTP requests.
- npm config set loglevel http
# Typical npm stuff.
- npm install
# Post-install test scripts.
test_script:
# Output useful info for debugging.
- node --version
- npm --version
- npm test
# Don't actually build.
build: off
# Finish immediately if one of the jobs fails.
matrix:
fast_finish: true
# Set up cache, clear it on package.json changes.
cache:
# npm cache.
- C:\Users\appveyor\AppData\Roaming\npm-cache -> package.json
# Local npm packages.
- node_modules -> package.json
# Set build version format here instead of in the admin panel.
version: "{build}"
| # http://www.appveyor.com/docs/appveyor-yml
clone_depth: 10
# Fix line endings in Windows. (runs before repo cloning)
init:
- git config --global core.autocrlf input
# Test against these versions of Node.js.
environment:
matrix:
- nodejs_version: "0.12"
- nodejs_version: "6"
# Install scripts. (runs after repo cloning)
install:
# Get the Node version with matching major & minor numbers
- ps: Install-Product node $env:nodejs_version
# Log HTTP requests.
- npm config set loglevel http
# Typical npm stuff.
- npm install
# Post-install test scripts.
test_script:
# Output useful info for debugging.
- node --version
- npm --version
- npm test
# Don't actually build.
build: off
# Finish immediately if one of the jobs fails.
matrix:
fast_finish: true
# Set up cache, clear it on package.json changes.
cache:
# npm cache.
- C:\Users\appveyor\AppData\Roaming\npm-cache -> package.json
# Local npm packages.
- node_modules -> package.json
# Set build version format here instead of in the admin panel.
version: "{build}"
| Switch Node 5 testing to Node 6 | AppVeyor: Switch Node 5 testing to Node 6
| YAML | mit | EE/grunth-cli |
5f6556b0a388cf2c22626554d5b3552d6a6db30b | appveyor.yml | appveyor.yml | version: '{build}'
skip_tags: true
environment:
matrix:
- ruby_version: "21"
- ruby_version: "21-x64"
install:
- SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
- gem install bundler --no-document --conservative --version 1.10.5
- bundle install --retry=3
test_script:
- bundle exec rake
build: off
| version: '{build}'
skip_tags: true
environment:
matrix:
- ruby_version: "23"
- ruby_version: "23-x64"
install:
- SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
- gem install bundler --no-document --conservative --version 1.10.5
- bundle install --retry=3
test_script:
- bundle exec rake
build: off
| Upgrade Windows build to Ruby 2.3 | Upgrade Windows build to Ruby 2.3
This fixes a problem where net-ssh 4.0.0 was breaking the build due to
an incompatibility with Ruby 2.1 on Windows.
| YAML | mit | mattbrictson/airbrussh,mattbrictson/airbrussh |
75e63628e5c1a84ea4d331aa9598bf2361e3a5a1 | appveyor.yml | appveyor.yml | version: "{build}"
init:
- git config --global core.autocrlf input
environment:
matrix:
- nodejs_version: 0.10
- nodejs_version: 0.12
- nodejs_version: 4
- nodejs_version: 6
install:
- ps: Install-Product node $env:nodejs_version
- npm install
build: off
test_script:
- node --version
- npm --version
- cmd: npm test --no-color
cache:
- node_modules -> package.json
- "%APPDATA%\\npm-cache -> package.json"
skip_tags: true
matrix:
fast_finish: true
notifications:
- provider: GitHubPullRequest
on_build_success: true
on_build_failure: true
on_build_status_changed: true
| version: "{build}"
init:
- git config --global core.autocrlf input
environment:
matrix:
- nodejs_version: 0.10
- nodejs_version: 0.12
- nodejs_version: 4
- nodejs_version: 6
install:
- ps: Install-Product node $env:nodejs_version
- npm install -g npm@latest
- npm install
build: off
test_script:
- node --version
- npm --version
- cmd: npm test --no-color
cache:
- node_modules -> package.json
- "%APPDATA%\\npm-cache -> package.json"
skip_tags: true
matrix:
fast_finish: true
notifications:
- provider: GitHubPullRequest
on_build_success: true
on_build_failure: true
on_build_status_changed: true
| Use npm@latest to avoid EPERM | Use npm@latest to avoid EPERM
| YAML | mit | timdp/winston-aws-cloudwatch |
6effe203a15fe11c42445ff3d26a0cd1166a8bc9 | appveyor.yml | appveyor.yml | image: Visual Studio 2017
install:
- choco install gitversion.portable -y
before_build:
- gitversion /l console /output buildserver /updateassemblyinfo
configuration: Release
build_script:
- dotnet build
- dotnet pack -c Release -o %APPVEYOR_BUILD_FOLDER%\nugets NetworkedPlanet.Quince /p:Version=%GitVersion_NugetVersion%
test_script:
- cd NetworkedPlanet.Quince.Tests
- dotnet test --filter "Category!=GitWrapper"
deploy:
- provider: GitHub
description: 'quince $(GitVersion_SemVer)'
auth_token:
secure: waxwfb392oVPzFIbYEaIfOdJKngTc6g5cN5JAm0+Bp5rGj9Rr5oOrWVQAQsUxO+r
on:
appveyor_repo_tag: true
- provider: NuGet
api_key:
secure: 9LbrXgsbg5rAAqBzhM7JSGiJHHG30QBu/MT/ISjOOM6P9R0LqBc2WZibXCUpBh6Q
on:
appveyor_repo_tag: true
artifact: /.*\.nupkg/
artifacts:
- path: 'nugets\*.nupkg'
| image: Visual Studio 2017
install:
- choco install gitversion.portable -y
before_build:
- gitversion /l console /output buildserver /updateassemblyinfo
configuration: Release
build_script:
- dotnet build
- dotnet pack -c Release -o %APPVEYOR_BUILD_FOLDER%\nugets NetworkedPlanet.Quince /p:Version=%GitVersion_NugetVersion%
test_script:
- cd NetworkedPlanet.Quince.Tests
- dotnet test --filter "Category!=GitWrapper"
deploy:
- provider: GitHub
description: 'quince $(GitVersion_SemVer)'
auth_token:
secure: lLPsBvR2OxnrgRpVTNWOneUrcR+yK6S1ANE3WbXVJJOIPu3SWt1NCyZ1cexyzy2i
on:
appveyor_repo_tag: true
- provider: NuGet
api_key:
secure: we+ycybU7IGDGZ4CHOg+Dw3DuWDz+mrbpC0sn/AtRRgd4UtTpXp07QvB/KXrTsqd
on:
appveyor_repo_tag: true
artifact: /.*\.nupkg/
artifacts:
- path: 'nugets\*.nupkg'
| Update GitHub and NuGet keys | Update GitHub and NuGet keys
| YAML | mit | NetworkedPlanet/quince |
756b6a732b0e70d327a7ffaeb0145ba0ca2a3970 | appveyor.yml | appveyor.yml | environment:
nodejs_version: "6"
AWS_ACCESS_KEY_ID:
secure: GTugF8P8oc1I2PfKlS4IbsawsWycsenxVFm2uiKgX0
AWS_SECRET_ACCESS_KEY:
secure: gr9U/yPc+a5kW3LRTtQnygY0EhPODJwF1H5M4EQ2x2qms/kpb5qHKp37uNv6FrMX
before_build:
- ps: Install-Product node $env:nodejs_version
- ps: Install-Module -Name powershell-yaml
- ps: Install-Module -Name psake
- ps: Install-Package -Name AWSPowerShell.NetCore -Source https://www.powershellgallery.com/api/v2/ -ProviderName NuGet -ExcludeVersion
- cmd: npm install serverless
build_script:
- ps: Invoke-PSake | environment:
nodejs_version: "6"
AWS_ACCESS_KEY_ID:
secure: GTugF8P8oc1I2PfKlS4IbsawsWycsenxVFm2uiKgX0
AWS_SECRET_ACCESS_KEY:
secure: gr9U/yPc+a5kW3LRTtQnygY0EhPODJwF1H5M4EQ2x2qms/kpb5qHKp37uNv6FrMX
before_build:
- ps: Install-Product node $env:nodejs_version
- ps: Install-Module -Name powershell-yaml
- ps: Install-Module -Name psake
- ps: Install-Package -Name AWSPowerShell.NetCore -Source https://www.powershellgallery.com/api/v2/ -ProviderName NuGet -ExcludeVersion
- cmd: npm install serverless -g
build_script:
- ps: $result=Invoke-PSake;exit !$result | Install serverless globally and exit on psake failure | Install serverless globally and exit on psake failure
| YAML | apache-2.0 | Sam-Martin/Ephemera,Sam-Martin/Ephemera |
e1a09c71a5531019af6dfedd56bd4182e0e788bb | appveyor.yml | appveyor.yml | os: Visual Studio 2015
before_build:
- nuget restore
build:
project: src\Renci.SshNet.VS2015.sln
verbosity: minimal
| os: Visual Studio 2015
before_build:
- nuget restore
build:
project: src\Renci.SshNet.VS2015.sln
verbosity: minimal
test:
assemblies: src\Renci.SshNet.Tests\bin\Debug\Renci.SshNet.Tests.dll
categories:
except:
- integration | Exclude integration tests, and only run tests for Renci.SshNet.Tests assembly. | Exclude integration tests, and only run tests for Renci.SshNet.Tests assembly.
| YAML | mit | miniter/SSH.NET,Bloomcredit/SSH.NET,sshnet/SSH.NET |
b408fc95ab202db86153390d16e9ae31cbbeb2a7 | appveyor.yml | appveyor.yml | platform:
- x64
cache:
# - node_modules
# - '%APPDATA%\npm-cache'
- '%USERPROFILE%\.electron'
init:
- git config --global core.autocrlf input
install:
- ps: Install-Product node 8 x64
- git reset --hard HEAD
- npm install npm -g
- npm install --silent
- npm run lint
test_script:
- node --version
- npm --version
- npm test
build_script:
- npm run build
- .\node_modules\.bin\gulp build_plugins
- cd .\dist\win-ia32-unpacked\resources\app\node_modules\
- npm pack .\electron-vibrancy
- cd ..\..\..\..\win-unpacked\resources\app\node_modules\
- npm pack .\electron-vibrancy
artifacts:
- path: dist\*.exe
name: installer
- path: dist\*.7z
name: Archive
- path: dist\*.7z
name: Archive
- path: dist\win-ia32-unpacked\resources\app\node_modules\electron-vibrancy*.tgz
name: electron-vibrancy-prebuilt-ia32
- path: dist\win-unpacked\resources\app\node_modules\electron-vibrancy*.tgz
name: electron-vibrancy-prebuilt-x64
branches:
except:
- /^v\d+\.\d+\.\d+.*/
| platform:
- x64
cache:
# - node_modules
- '%APPDATA%\npm-cache'
- '%USERPROFILE%\.electron'
init:
- git config --global core.autocrlf input
install:
- ps: Install-Product node 8 x64
- git reset --hard HEAD
- npm install npm -g
- npm install --silent
- npm run lint
test_script:
- node --version
- npm --version
- npm test
build_script:
- npm run build
- .\node_modules\.bin\gulp build_plugins
artifacts:
- path: dist\*.exe
name: installer
- path: dist\*.7z
name: Archive
- path: dist\*.7z
name: Archive
branches:
except:
- /^v\d+\.\d+\.\d+.*/
| Fix windows build and add npm_cache to cache | Fix windows build and add npm_cache to cache
| YAML | mit | poooi/poi,poooi/poi,PHELiOX/poi,yudachi/poi,yudachi/poi,syncsyncsynchalt/poi,syncsyncsynchalt/poi,gnattu/poi,syncsyncsynchalt/poi,poooi/poi,poooi/poi,syncsyncsynchalt/poi,gnattu/poi,yudachi/poi,PHELiOX/poi |
b9fc9de82ef3e3b6bc2c9a243f266d4670be37cd | appveyor.yml | appveyor.yml | version: '{build}'
skip_tags: true
clone_depth: 10
environment:
matrix:
- JAVA_HOME: C:\Program Files\Java\jdk1.8.0
install:
- ps: |
Add-Type -AssemblyName System.IO.Compression.FileSystem
if (!(Test-Path -Path "C:\maven" )) {
(new-object System.Net.WebClient).DownloadFile('https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.3.9/apache-maven-3.3.9-bin.zip', 'C:\maven-bin.zip')
[System.IO.Compression.ZipFile]::ExtractToDirectory("C:\maven-bin.zip", "C:\maven")
}
- cmd: SET PATH=C:\maven\apache-maven-3.3.9\bin;%JAVA_HOME%\bin;%PATH:C:\Ruby193\bin;=%
- cmd: SET MAVEN_OPTS=-XX:MaxPermSize=1g -Xmx2g
- cmd: SET JAVA_OPTS=-XX:MaxPermSize=1g -Xmx2g
- cmd: mvn --version
- cmd: java -version
build_script:
- mvn clean package -B -Dmaven.test.skip=true
test_script:
- mvn verify -B
cache:
- C:\maven | version: '{build}'
skip_tags: true
clone_depth: 10
environment:
matrix:
- JAVA_HOME: C:\Program Files\Java\jdk1.8.0
install:
- ps: |
Add-Type -AssemblyName System.IO.Compression.FileSystem
if (!(Test-Path -Path "C:\maven" )) {
(new-object System.Net.WebClient).DownloadFile('https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.3.9/apache-maven-3.3.9-bin.zip', 'C:\maven-bin.zip')
[System.IO.Compression.ZipFile]::ExtractToDirectory("C:\maven-bin.zip", "C:\maven")
}
- cmd: SET PATH=C:\maven\apache-maven-3.3.9\bin;%JAVA_HOME%\bin;%PATH:C:\Ruby193\bin;=%
- cmd: SET MAVEN_OPTS=-XX:MaxPermSize=1g -Xmx2g
- cmd: SET JAVA_OPTS=-XX:MaxPermSize=1g -Xmx2g
- cmd: mvn --version
- cmd: java -version
build_script:
- mvn clean package -B -Dmaven.test.skip=true -Denv=win32
test_script:
- mvn verify -B -Denv=win32
cache:
- C:\maven | Add env to fix build. | [NO-JIRA] Add env to fix build.
| YAML | mit | yildiz-online/module-graphic-ogre,yildiz-online/module-graphic-ogre,yildiz-online/module-graphic-ogre |
42ab46d7c16d8ba1a34259a24971a8dec5a575d9 | appveyor.yml | appveyor.yml | version: 1.0.{build}
branches:
only:
- master
- staging_master
image: Visual Studio 2015
clone_depth: 1
install:
- .\Configure_MSVC.bat
# - cd build-msvc
build:
parallel: true
project: build-msvc\NativeJIT.sln
test_script:
- cd build-msvc
- ctest -C Debug --verbose
# TODO: Add Release tests here too. | version: 1.0.{build}
branches:
only:
- master
- staging_master
image: Visual Studio 2017
clone_depth: 1
install:
- .\Configure_MSVC.bat
# - cd build-msvc
build:
parallel: true
project: build-msvc\NativeJIT.sln
test_script:
- cd build-msvc
- ctest -C Debug --verbose
# TODO: Add Release tests here too. | Make Appveyor use more MSVC 2017 | Make Appveyor use more MSVC 2017
| YAML | mit | BitFunnel/NativeJIT,BitFunnel/NativeJIT,BitFunnel/NativeJIT,BitFunnel/NativeJIT,BitFunnel/NativeJIT |
5695ce1b07a4294a599bd913afa607e5259d8058 | locale/flarum-statistics.yml | locale/flarum-statistics.yml | flarum-statistics:
##
# UNIQUE KEYS - The following keys are used in only one location each.
##
# Translations in this namespace are used by the admin interface.
admin:
# These translations are used in the Statistics dashboard widget.
statistics:
discussions_heading: => core.ref.discussions
last_12_months_label: Last 12 months
last_28_days_label: Last 28 days
last_7_days_label: Last 7 days
posts_heading: => core.ref.posts
today_label: Today
total_label: Total
users_heading: Users
| flarum-statistics:
##
# UNIQUE KEYS - The following keys are used in only one location each.
##
# Translations in this namespace are used by the admin interface.
admin:
# These translations are used in the Statistics dashboard widget.
statistics:
active_users_text: "{count} active"
discussions_heading: => core.ref.discussions
last_12_months_label: Last 12 months
last_28_days_label: Last 28 days
last_7_days_label: Last 7 days
posts_heading: => core.ref.posts
today_label: Today
total_label: Total
users_heading: Users
| Add translation for statistics active users count | Add translation for statistics active users count
| YAML | mit | FlarumChina/flarum-ext-simplified-chinese-pro,FlarumChina/flarum-ext-simplified-chinese-pro,flarum/flarum-ext-english,ogioncz/flarum-ext-czech,ogioncz/flarum-ext-czech,flarum/english |
87d4865bcf547427ce62394b83210d1773c19388 | appveyor.yml | appveyor.yml | install:
- choco install gitversion.portable -version 3.0.0-beta0004 -pre -y
nuget:
account_feed: true
before_build:
- nuget restore
- ps: gitversion /l console /output buildserver /updateAssemblyInfo
configuration: Release
build:
project: LazyStorage.sln
verbosity: minimal
after_build:
- cmd: nuget pack LazyStorage\LazyStorage.csproj -version "%GitVersion_NuGetVersion%" -prop "target=Release"
- cmd: appveyor PushArtifact "LazyStorage.%GitVersion_NuGetVersion%.nupkg" | nuget:
account_feed: true
before_build:
- nuget restore
configuration: Release
build:
project: LazyStorage.sln
verbosity: minimal
after_build:
- cmd: nuget pack LazyStorage\LazyStorage.csproj -version "%GitVersion_NuGetVersion%" -prop "target=Release"
- cmd: appveyor PushArtifact "LazyStorage.%GitVersion_NuGetVersion%.nupkg" | Remove old chocolatey build steps | Remove old chocolatey build steps
| YAML | mit | TheEadie/LazyStorage,TheEadie/LazyLibrary,TheEadie/LazyStorage |
de063fecc44e67a7d0da2781f968c5aa15194ae5 | appveyor.yml | appveyor.yml | deploy:
provider: NuGet
api_key:
secure: XGXP+Bw7tamVD5tIUqjlvfuNFRsk5U/hwcnR9dEwgNkFqI/Zwp8QydqJxqDpy5Tr
skip_symbols: true
artifact: /.*\.nupkg/
| version: 1.0.{build}
configuration: Release
build:
publish_nuget: true
verbosity: minimal
deploy:
- provider: NuGet
api_key:
secure: XGXP+Bw7tamVD5tIUqjlvfuNFRsk5U/hwcnR9dEwgNkFqI/Zwp8QydqJxqDpy5Tr
skip_symbols: true
| Put all build settings in config file | Put all build settings in config file
| YAML | mit | SteveVaneeckhout/AuthorizedTester |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.