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
31e84bd5433072455aa39b4bdac4ecfc24a76656
.github/workflows/build.yml
.github/workflows/build.yml
name: build on: [push, pull_request] jobs: build: runs-on: ubuntu-latest timeout-minutes: 30 strategy: matrix: java: [8, 11] steps: - uses: actions/checkout@v2 - name: Cache uses: actions/[email protected] env: cache-name: cache-sbt-libs with: path: | ~/.ivy2/cache ~/.sbt ~/.cache/coursier/v1 key: build-${{ env.cache-name }}-${{ hashFiles('build.sbt') }} - name: Set up JDK uses: actions/setup-java@v2 with: java-version: ${{ matrix.java }} distribution: adopt - name: Run tests run: sbt scalafmtSbtCheck scalafmtCheck test:scalafmtCheck test - name: Build executable run: sbt executable - name: Upload artifacts uses: actions/upload-artifact@v2 with: name: gitbucket-java${{ matrix.java }}-${{ github.sha }} path: ./target/executable/gitbucket.*
name: build on: [push, pull_request] jobs: build: runs-on: ubuntu-latest timeout-minutes: 30 strategy: matrix: java: [8, 11] steps: - uses: actions/checkout@v2 - name: Cache uses: actions/[email protected] env: cache-name: cache-sbt-libs with: path: | ~/.ivy2/cache ~/.sbt ~/.cache/coursier/v1 key: build-${{ env.cache-name }}-${{ hashFiles('build.sbt') }} - name: Set up JDK uses: actions/setup-java@v2 with: java-version: ${{ matrix.java }} distribution: adopt - name: Run tests run: sbt scalafmtSbtCheck scalafmtCheck test:scalafmtCheck test - name: Build executable run: sbt executable - name: Upload artifacts uses: actions/upload-artifact@v2 with: name: gitbucket-java${{ matrix.java }}-${{ github.sha }} path: ./target/executable/gitbucket.*
Bump actions/cache from 2.1.5 to 2.1.6
Bump actions/cache from 2.1.5 to 2.1.6 Bumps [actions/cache](https://github.com/actions/cache) from 2.1.5 to 2.1.6. - [Release notes](https://github.com/actions/cache/releases) - [Commits](https://github.com/actions/cache/compare/v2.1.5...v2.1.6) Signed-off-by: dependabot[bot] <[email protected]>
YAML
apache-2.0
takezoe/gitbucket,gitbucket/gitbucket,imeszaros/gitbucket,takezoe/gitbucket,xuwei-k/gitbucket,imeszaros/gitbucket,imeszaros/gitbucket,gitbucket/gitbucket,takezoe/gitbucket,xuwei-k/gitbucket,xuwei-k/gitbucket,xuwei-k/gitbucket,takezoe/gitbucket,gitbucket/gitbucket,gitbucket/gitbucket,imeszaros/gitbucket
77bfd8af04408cabb45689d6d0ae113a1aa3e0aa
.github/workflows/build.yml
.github/workflows/build.yml
name: Sonar ESQL build on: push: branches: - '**' tags: - '[0-9]+.[0-9]+.[0-9]+' - '[0-9]+.[0-9]+.[0-9]+-RC[0-9]+' jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up JDK 11 uses: actions/setup-java@v2 with: java-version: '11' distribution: 'adopt' - name: Cache Maven packages uses: actions/cache@v1 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} restore-keys: ${{ runner.os }}-m2 - name: Build with Maven run: mvn clean org.jacoco:jacoco-maven-plugin:prepare-agent verify -P coverage-per-test - name: SonarCloud Scan uses: sonarsource/sonarcloud-github-action@master env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} with: args: > -Dsonar.projectKey=EXXETA_sonar-esql-plugin
name: Sonar ESQL build on: push: branches: - '**' tags: - '[0-9]+.[0-9]+.[0-9]+' - '[0-9]+.[0-9]+.[0-9]+-RC[0-9]+' jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up JDK 11 uses: actions/setup-java@v2 with: java-version: '11' distribution: 'adopt' - name: Cache Maven packages uses: actions/cache@v1 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} restore-keys: ${{ runner.os }}-m2 - name: Build with Maven run: mvn -B clean org.jacoco:jacoco-maven-plugin:prepare-agent verify -P coverage-per-test - name: SonarCloud Scan run: mvn -B org.sonarsource.scanner.maven:sonar -Dsonar.projectKey=EXXETA_sonar-esql-plugin env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
Use maven for sonar scan
Use maven for sonar scan
YAML
apache-2.0
EXXETA/sonar-esql-plugin,EXXETA/sonar-esql-plugin
6717330e9169f201191be7425c36cef25258a1d9
.github/workflows/build.yml
.github/workflows/build.yml
name: build on: push: paths-ignore: - ".editorconfig" - ".gitignore" - ".screenrc" - "LICENSE.txt" - "README.md" - "scripts/release" - "TODO.md" tags-ignore: - "**" schedule: # Minute (0-59), Hour (0-23), Day of the month (1-31), Month of the Year (1-12), Day of the week (0-6, 0 = Sunday) - cron: "0 6 * * 1" workflow_dispatch: jobs: automated-tests: runs-on: ubuntu-20.04 name: Run automated tests steps: - name: Checkout the repository uses: actions/checkout@v2 with: submodules: recursive - name: Install asdf uses: asdf-vm/actions/setup@v1 with: asdf_branch: v0.8.1 - name: Install Bats with asdf run: | asdf plugin add bats asdf install bats - name: Run automated tests run: | make
name: build on: push: tags-ignore: - "**" schedule: # Minute (0-59), Hour (0-23), Day of the month (1-31), Month of the Year (1-12), Day of the week (0-6, 0 = Sunday) - cron: "0 6 * * 1" workflow_dispatch: jobs: automated-tests: runs-on: ubuntu-20.04 name: Run automated tests steps: - name: Checkout the repository uses: actions/checkout@v2 with: submodules: recursive - name: Install asdf uses: asdf-vm/actions/setup@v1 with: asdf_branch: v0.8.1 - name: Install Bats with asdf run: | asdf plugin add bats asdf install bats - name: Run automated tests run: | make
Remove paths-ignore in github workflow
Remove paths-ignore in github workflow
YAML
mit
AlphaHydrae/scide
2539711ea327a4d4a337c49dee5394e173e6bf1f
.github/workflows/tests.yml
.github/workflows/tests.yml
name: Tests on: [ push, pull_request ] jobs: test: runs-on: ubuntu-latest strategy: fail-fast: false matrix: ruby: - 2.3 - 2.4 - 2.5 - 2.6 - 2.7 - 3.0 - head continue-on-error: ${{ endsWith(matrix.ruby, 'head') }} steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: bundler-cache: true # Installs and caches dependencies ruby-version: ${{ matrix.ruby }} - run: bundle exec rake
name: Tests on: [ push, pull_request ] jobs: test: runs-on: ubuntu-latest strategy: fail-fast: false matrix: ruby: - 2.3 - 2.4 - 2.5 # - 2.6 - 2.7 - 3.0 - head continue-on-error: ${{ endsWith(matrix.ruby, 'head') }} steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: bundler-cache: true # Installs and caches dependencies ruby-version: ${{ matrix.ruby }} - run: bundle exec rake
Remove Ruby 2.6 from the test matrix
Remove Ruby 2.6 from the test matrix It spews lots of useless verbose mode splat warnings and sometimes crashes, even though tests pass when it manages not to crash.
YAML
mit
rgrove/sanitize,rgrove/sanitize
13d7408e0d4bdc57876339c655276e41ea7fd9ee
.github/workflows/tests.yml
.github/workflows/tests.yml
name: Tests on: pull_request: push: branches: - main schedule: - cron: '0 0 * * 0' # weekly jobs: tests: timeout-minutes: 30 runs-on: ubuntu-20.04 services: postgres: image: postgres:13 ports: - 5432:5432 options: >- --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 env: POSTGRES_USER: postgres POSTGRES_DB: ci_test POSTGRES_PASSWORD: postgres strategy: matrix: include: - RUBY_VERSION: 2.7 RAILS_VERSION: 5.2.6 - RUBY_VERSION: 2.7 RAILS_VERSION: 6.1.4.4 steps: - uses: actions/checkout@v2 - uses: actions/setup-ruby@v1 with: ruby-version: ${{ matrix.RUBY_VERSION }} - uses: actions/cache@v2 with: path: vendor/bundle key: >- ${{ runner.os }}-${{ matrix.RUBY_VERSION }}-${{ matrix.RAILS_VERSION }}-gems-${{ hashFiles('commontator.gemspec', 'Gemfile') }} restore-keys: | ${{ runner.os }}-${{ matrix.RAILS_VERSION }}-gems- - name: Install gems env: RAILS_VERSION: ${{ matrix.RAILS_VERSION }} run: | bundle install bundle exec rake --trace db:create db:schema:load db:seed - name: Run tests env: RAILS_VERSION: ${{ matrix.RAILS_VERSION }} run: bundle exec rake spec
name: Tests on: pull_request: push: branches: - main schedule: - cron: '0 0 * * 0' # weekly jobs: tests: timeout-minutes: 30 runs-on: ubuntu-20.04 services: postgres: image: postgres:13 ports: - 5432:5432 options: >- --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 env: POSTGRES_USER: postgres POSTGRES_DB: ci_test POSTGRES_PASSWORD: postgres strategy: matrix: include: - RUBY_VERSION: 2.7 RAILS_VERSION: 6.1.4.4 env: RAILS_VERSION: ${{ matrix.RAILS_VERSION }} steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.RUBY_VERSION }} bundler-cache: true - name: Setup database run: bundle exec rake --trace db:create db:schema:load db:seed - name: Run tests run: bundle exec rake spec
Use ruby/setup-ruby instead of actions/setup-ruby
Use ruby/setup-ruby instead of actions/setup-ruby
YAML
mit
lml/commontator,lml/commontator,lml/commontator
f711f91346dc44ab563b2f94c7d8c690e85e4c86
.github/workflows/tests.yml
.github/workflows/tests.yml
name: build on: push: branches: [ master, dev ] pull_request: branches: [ master, dev ] jobs: build: runs-on: ${{ matrix.platform }} strategy: max-parallel: 4 matrix: platform: - ubuntu-latest python-version: ['3.7', '3.8', '3.9', '3.10', '3.11-dev'] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v1 with: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | python -m pip install --upgrade pip pip install -r requirements.txt pip install -r requirements_test.txt pip install tox - name: Test run: | tox -r
name: build on: push: branches: [ master, dev ] pull_request: branches: [ master, dev ] jobs: build: runs-on: ${{ matrix.platform }} strategy: max-parallel: 4 matrix: platform: - ubuntu-latest python-version: ['3.7', '3.8', '3.9', '3.10', '3.11-dev'] steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | python -m pip install --upgrade pip pip install -r requirements.txt pip install -r requirements_test.txt pip install tox - name: Test run: | tox -r
Update checkout and setup-python actions
Update checkout and setup-python actions
YAML
mit
fronzbot/blinkpy,fronzbot/blinkpy
10f5806c9260a48f3a763afcd68666281b47abd8
Neos.Flow/Configuration/Settings.Mvc.yaml
Neos.Flow/Configuration/Settings.Mvc.yaml
# # MVC configuration for the Flow Framework # Neos: Flow: mvc: # Defines routes that should be included after existing routes defined in the main Routes.yaml (if any) # Note: This only allows to include existing Routes.yaml files from other packages, you can't adjust the routes via Settings. # # Syntax: # 'Some.Package': true # 'SomeOther.Package': # position: 'after Some.Package' # routes: [] view: defaultImplementation: Neos\Flow\Mvc\View\SimpleTemplateView flashMessages: # Defines FlashMessage "namespaces" with custom storage implementations # # The only required option is the "storage" class name, which has to implement the FlashMessageStorageInterface # "storageOptions" can be passed, i.e. to change the "sessionKey" that is used to persist FlashMessages # # By default, the FlashMessages are stored in a session cookie, but this can be changed here: containers: 'default': position: 'end' storage: 'Neos\Flow\Mvc\FlashMessage\Storage\FlashMessageCookieStorage' # Custom FlashMessage containers can be added here: # Example: # 'customFlashMessages': # storage: 'Neos\Flow\Mvc\FlashMessage\Storage\FlashMessageCookieStorage' # storageOptions: # cookieName: 'Neos_Flow_FlashMessages_My_Custom' # requestPatterns: # 'SomeControllers': # pattern: 'ControllerObjectName' # patternOptions: # 'controllerObjectNamePattern': 'Some\Package\Controller\.*'
# # MVC configuration for the Flow Framework # Neos: Flow: mvc: # Defines routes that should be included after existing routes defined in the main Routes.yaml (if any) # Note: This only allows to include existing Routes.yaml files from other packages, you can't adjust the routes via Settings. # # Syntax: # 'Some.Package': true # 'SomeOther.Package': # position: 'after Some.Package' # routes: [] view: defaultImplementation: Neos\Flow\Mvc\View\SimpleTemplateView flashMessages: # Defines FlashMessage "namespaces" with custom storage implementations # # The only required option is the "storage" class name, which has to implement the FlashMessageStorageInterface # "storageOptions" can be passed, i.e. to change the "sessionKey" that is used to persist FlashMessages # # By default, the FlashMessages are stored in a session cookie, but this can be changed here: containers: 'default': position: 'end' storage: 'Neos\Flow\Mvc\FlashMessage\Storage\FlashMessageSessionStorage' # Custom FlashMessage containers can be added here: # Example: # 'customFlashMessages': # storage: 'Neos\Flow\Mvc\FlashMessage\Storage\FlashMessageCookieStorage' # storageOptions: # cookieName: 'Neos_Flow_FlashMessages_My_Custom' # requestPatterns: # 'SomeControllers': # pattern: 'ControllerObjectName' # patternOptions: # 'controllerObjectNamePattern': 'Some\Package\Controller\.*'
Change default flash message storage to session
BUGFIX: Change default flash message storage to session
YAML
mit
robertlemke/flow-development-collection,fcool/flow-development-collection,daniellienert/flow-development-collection,kdambekalns/flow-development-collection,kdambekalns/flow-development-collection,neos/flow-development-collection,albe/flow-development-collection,albe/flow-development-collection,neos/flow-development-collection,kdambekalns/flow-development-collection,fcool/flow-development-collection,daniellienert/flow-development-collection,fcool/flow-development-collection,bwaidelich/flow-development-collection,robertlemke/flow-development-collection,bwaidelich/flow-development-collection,robertlemke/flow-development-collection,robertlemke/flow-development-collection,dlubitz/flow-development-collection,bwaidelich/flow-development-collection,neos/flow-development-collection,neos/flow-development-collection,dlubitz/flow-development-collection,fcool/flow-development-collection,dlubitz/flow-development-collection,daniellienert/flow-development-collection,kdambekalns/flow-development-collection,albe/flow-development-collection
c2ae172de210964302c78c63bba91bb5f30cb4d1
.github/workflows/ci.yml
.github/workflows/ci.yml
--- name: build on: push: branches: - master pull_request: branches: - master jobs: ci: name: Run checks and tests over ${{matrix.otp_vsn}} and ${{matrix.os}} runs-on: ${{matrix.os}} container: image: erlang:${{matrix.otp_vsn}} strategy: matrix: otp_vsn: [19.3, 20.3, 21.3, 22.3, 23.1] os: [ubuntu-latest] steps: - uses: actions/checkout@v2 - run: rebar3 --version - run: erl -version - run: rebar3 xref - run: rebar3 lint - run: rebar3 dialyzer - run: rebar3 ct
--- name: build on: push: branches: - master pull_request: branches: - master jobs: ci: name: Run checks and tests over ${{matrix.otp_vsn}} and ${{matrix.os}} runs-on: ${{matrix.os}} container: image: erlang:${{matrix.otp_vsn}} strategy: matrix: otp_vsn: [20.3, 21.3, 22.3, 23.1] os: [ubuntu-latest] steps: - uses: actions/checkout@v2 - run: rebar3 --version - run: erl -version - run: rebar3 xref - run: rebar3 lint - run: rebar3 dialyzer - run: rebar3 ct
Drop version not supported by ranch
Drop version not supported by ranch
YAML
apache-2.0
inaka/cowboy_swagger,inaka/cowboy-swagger,inaka/cowboy-swagger,inaka/cowboy_swagger
90350e5d935244a227261a173daff427f2760466
.github/workflows/ci.yml
.github/workflows/ci.yml
name: Build on: [push, pull_request] jobs: build: runs-on: ubuntu-latest env: PGPASSWORD: postgres PGUSER: postgres services: postgres: image: postgis/postgis:9.5-2.5 env: POSTGRES_PASSWORD: postgres options: >- --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 ports: - 5432:5432 strategy: matrix: go: - '1.10' - '1.13' - '1.14' - '1.15' - '1.18' - '1.19' name: Build with go v${{ matrix.go }} steps: - uses: actions/checkout@v3 - uses: actions/setup-go@v3 with: go-version: ${{ matrix.go }} check-latest: true - name: Prepare postgres run: >- psql --host localhost --dbname postgres -c "create extension if not exists postgis; create extension if not exists hstore;" - name: Install deps run: >- sudo apt-get update && sudo apt-get install -y --no-install-recommends \ libgeos-dev \ libleveldb-dev \ osmosis \ - run: make
name: Build on: [push, pull_request] jobs: build: runs-on: ubuntu-latest env: PGPASSWORD: postgres PGUSER: postgres strategy: matrix: go: - '1.12' - '1.19' postgis: - '9.5-2.5' - '9.5-3.0' - '10-2.5' - '10-3.0' - '10-3.1' - '10-3.2' - '14-3.1' - '14-3.2' services: postgres: image: postgis/postgis:${{ matrix.postgis }} env: POSTGRES_PASSWORD: postgres options: >- --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 ports: - 5432:5432 name: Build with go v${{ matrix.go }} with postgis image ${{ matrix.postgis }} steps: - uses: actions/checkout@v3 - uses: actions/setup-go@v3 with: go-version: ${{ matrix.go }} check-latest: true - name: Prepare postgres run: >- psql --host localhost --dbname postgres -c "create extension if not exists postgis; create extension if not exists hstore;" - name: Install deps run: >- sudo apt-get update && sudo apt-get install -y --no-install-recommends \ libgeos-dev \ libleveldb-dev \ osmosis \ - run: make
Update strategy to test against multiple version of postgres and postgis
Update strategy to test against multiple version of postgres and postgis
YAML
apache-2.0
omniscale/imposm3,omniscale/imposm3
9aa98718fb26eb4045886052824e41bcdc991f49
.github/workflows/ci.yml
.github/workflows/ci.yml
name: CI on: push: branches: [ '*' ] pull_request: branches: [ '*' ] jobs: build: name: Build and test strategy: matrix: scala: [ 2.11.12, 2.12.15, 2.13.7 ] runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up Scala uses: olafurpg/setup-scala@v13 with: java-version: '[email protected]' - name: Cache sbt uses: actions/cache@v2 with: path: | ~/.sbt ~/.ivy2/cache ~/.coursier/cache/v1 ~/.cache/coursier/v1 ~/AppData/Local/Coursier/Cache/v1 ~/Library/Caches/Coursier/v1 key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} - name: Run tests and coverage run: sbt --client '++${{ matrix.scala }} clean; coverage; test' - name: Coverage if: ${{ startsWith(matrix.scala, '2.13') }} run: sbt --client '++${{ matrix.scala }} coverageReport' - name: Codecov if: ${{ startsWith(matrix.scala, '2.13') }} uses: codecov/[email protected]
name: CI on: push: branches: [ '*' ] pull_request: branches: [ '*' ] jobs: build: name: Build and test strategy: matrix: scala: [ 2.11.12, 2.12.15, 2.13.7 ] runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up Scala uses: olafurpg/setup-scala@v13 with: java-version: '[email protected]' - name: Cache sbt uses: actions/cache@v2 with: path: | ~/.sbt ~/.ivy2/cache ~/.coursier/cache/v1 ~/.cache/coursier/v1 ~/AppData/Local/Coursier/Cache/v1 ~/Library/Caches/Coursier/v1 key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} - name: Verify formatting run: sbt scalafmtCheckAll - name: Run tests and coverage run: sbt --client '++${{ matrix.scala }} clean; coverage; test' - name: Coverage if: ${{ startsWith(matrix.scala, '2.13') }} run: sbt --client '++${{ matrix.scala }} coverageReport' - name: Codecov if: ${{ startsWith(matrix.scala, '2.13') }} uses: codecov/[email protected]
Verify code formatting in CI
Verify code formatting in CI
YAML
apache-2.0
limansky/beanpuree
7e86cca9f13db3b7dec88854e1a53c0ee15f249b
.github/workflows/ci.yml
.github/workflows/ci.yml
name: ci on: pull_request: push: branches: - master tags: - v* jobs: publish: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Prepare id: prepare run: | TAG=${GITHUB_REF##*/} echo ::set-output name=tag_name::${TAG} - name: Set up QEMU uses: docker/setup-qemu-action@v1 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v1 - name: Login do docker.io run: docker login -u cathive -p ${{ secrets.DOCKER_TOKEN }} - name: build and publish image id: docker_build uses: docker/build-push-action@v2 with: context: . file: ./Dockerfile platforms: linux/amd64,linux/arm64 push: true tags: | cathive/concourse-sonarqube-resource:${{ steps.prepare.outputs.tag_name }} cathive/concourse-sonarqube-resource:latest
name: ci on: pull_request: push: branches: - main tags: - v* jobs: publish: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Prepare id: prepare run: | TAG=${GITHUB_REF##*/} echo ::set-output name=tag_name::${TAG} - name: Set up QEMU uses: docker/setup-qemu-action@v1 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v1 - name: Login do docker.io run: docker login -u cathive -p ${{ secrets.DOCKER_TOKEN }} - name: build and publish image id: docker_build uses: docker/build-push-action@v2 with: context: . file: ./Dockerfile platforms: linux/amd64,linux/arm64 push: true tags: | cathive/concourse-sonarqube-resource:${{ steps.prepare.outputs.tag_name }} cathive/concourse-sonarqube-resource:latest
Rename branch master -> main in Github workflow
Rename branch master -> main in Github workflow
YAML
apache-2.0
cathive/concourse-sonarqube-resource,cathive/concourse-sonarqube-resource,cathive/concourse-sonarqube-resource
1f83323701b66b9e3541951a540f4acadb9019e4
.github/workflows/ci.yml
.github/workflows/ci.yml
name: ci on: - push - pull_request jobs: test: strategy: matrix: java: [ 8, 16 ] runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v3 - name: Setup uses: actions/setup-java@v3 with: distribution: 'zulu' java-version: ${{ matrix.java }} - name: Cache uses: actions/cache@v3 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} restore-keys: ${{ runner.os }}-m2 - name: Package run: mvn -B clean package jacoco:report - name: Coverage uses: codecov/[email protected] with: file: target/site/jacoco/jacoco.xml
name: ci on: - push - pull_request jobs: test: strategy: matrix: java: [ 8, 16 ] runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v3 - name: Setup uses: actions/setup-java@v3 with: distribution: 'zulu' java-version: ${{ matrix.java }} - name: Cache uses: actions/cache@v3 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} restore-keys: ${{ runner.os }}-m2 - name: Package run: mvn -B clean package jacoco:report - name: Coverage uses: codecov/[email protected] with: file: target/site/jacoco/jacoco.xml
Update codecov/codecov-action action to v3
Update codecov/codecov-action action to v3
YAML
apache-2.0
tcurdt/jdependency,tcurdt/jdependency
2578ebb536c4617fd3b343fb2468d1a3c5b705b8
.github/workflows/ci.yml
.github/workflows/ci.yml
name: CI on: push: branches: - master pull_request: - "*" jobs: test: strategy: fail-fast: false matrix: os: [ubuntu] # We still kind of support Ruby 1.8.7 ruby: [2.5, 2.6, 2.7, 3.0, head, jruby] name: >- ${{matrix.os}}-ruby${{matrix.ruby}} runs-on: ${{matrix.os}}-latest continue-on-error: ${{matrix.ruby == 'head' || matrix.ruby == 'jruby'}} steps: - name: Check out uses: actions/checkout@v2 - name: Set up ruby and bundle uses: ruby/setup-ruby@v1 with: ruby-version: ${{matrix.ruby}} bundler-cache: true - name: Run rake run: | bundle exec rake
name: CI on: push: branches: - master pull_request: branches: - "*" jobs: test: strategy: fail-fast: false matrix: os: [ubuntu] # We still kind of support Ruby 1.8.7 ruby: [2.5, 2.6, 2.7, 3.0, head, jruby] name: >- ${{matrix.os}}-ruby${{matrix.ruby}} runs-on: ${{matrix.os}}-latest continue-on-error: ${{matrix.ruby == 'head' || matrix.ruby == 'jruby'}} steps: - name: Check out uses: actions/checkout@v2 - name: Set up ruby and bundle uses: ruby/setup-ruby@v1 with: ruby-version: ${{matrix.ruby}} bundler-cache: true - name: Run rake run: | bundle exec rake
Add a missing branches key
Add a missing branches key
YAML
mit
sparklemotion/http-cookie
25e52813b663e5ed23ffc7ccd62fee782ab2927b
.github/workflows/ci.yml
.github/workflows/ci.yml
name: test with macos on: [push, pull_request] jobs: build: runs-on: macos-latest steps: - uses: actions/checkout@v2 - run: git clone --depth 1 https://github.com/sstephenson/bats.git - run: PATH="./bats/bin:$PATH" script/test
name: Test on: [push, pull_request] jobs: test: strategy: fail-fast: false matrix: os: [ubuntu-latest, macos-latest] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 - run: git clone --depth 1 https://github.com/sstephenson/bats.git - run: PATH="./bats/bin:$PATH" script/test
Test Linux in GitHub Actions too
Test Linux in GitHub Actions too
YAML
mit
dark-panda/ruby-build,rbenv/ruby-build,rbenv/ruby-build,dark-panda/ruby-build
c70aa2b965938b8c98b4378fe8fda9142d16dd3f
.github/workflows/go.yml
.github/workflows/go.yml
name: Go on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: name: Build runs-on: ubuntu-latest strategy: matrix: go: ['1.12', '1.13', '1.14'] steps: - name: Set up Go ${{ matrix.go }} uses: actions/setup-go@v2 with: go-version: ${{ matrix.go }} id: go - name: Check out code into the Go module directory uses: actions/checkout@v2 - name: Get dependencies run: | go get -v -t -d ./... if [ -f Gopkg.toml ]; then curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh dep ensure fi - name: Build run: go build -v ./... - name: Test run: go test -v ./... - name: Race Test run: go test -race ./... - name: Check gofmt run: diff -u <(echo -n) <(gofmt -d -s .)
name: Go on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: name: Build runs-on: ubuntu-latest strategy: matrix: go: ['1.12', '1.13', '1.14'] steps: - name: Set up Go ${{ matrix.go }} uses: actions/setup-go@v2 with: go-version: ${{ matrix.go }} id: go - name: Check out code into the Go module directory uses: actions/checkout@v2 - name: Get dependencies run: | go get -v -t -d ./... if [ -f Gopkg.toml ]; then curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh dep ensure fi - name: Build run: go build -v ./... - name: Test run: go test -v -coverprofile=profile.cov ./... - name: Race Test run: go test -race ./... - name: Send Coverage uses: shogo82148/actions-goveralls@v1 with: path-to-profile: profile.cov parallel: true - name: Check gofmt run: diff -u <(echo -n) <(gofmt -d -s .) finish: needs: test runs-on: ubuntu-latest steps: - uses: shogo82148/actions-goveralls@v1 with: parallel-finished: true
Add coverage measurement to GH Actions
Add coverage measurement to GH Actions
YAML
apache-2.0
openconfig/lsdbparse,openconfig/lsdbparse
cd780105195efd0ad502c936b90793d1d097af57
railgun.yml
railgun.yml
# https://dev-accel.shopify.io/dev/railgun/Railgun-Config name: gozk-recipes vm: image: /opt/dev/misc/railgun-images/default ip_address: 192.168.64.87 memory: 2G cores: 2 volumes: root: '2G' services: - toxiproxy - zookeeper hostnames: - gozk-recipes.myshopify.io
# https://dev-accel.shopify.io/dev/railgun/Railgun-Config name: gozk-recipes vm: image: /opt/dev/misc/railgun-images/default ip_address: 192.168.64.87 memory: 200M cores: 2 volumes: root: '100M' services: - toxiproxy - zookeeper hostnames: - gozk-recipes.myshopify.io
Change the memory allocation for the virtual machine.
Change the memory allocation for the virtual machine.
YAML
mit
Shopify/gozk-recipes,Shopify/gozk-recipes
7ae10183c8115693f3da846c8573bacaad4a8ded
.github/stale.yml
.github/stale.yml
# Configuration for probot-stale - https://github.com/probot/stale # Number of days of inactivity before an Issue or Pull Request becomes stale daysUntilStale: 60 # Number of days of inactivity before a stale Issue or Pull Request is closed daysUntilClose: 7 # Issues or Pull Requests with these labels will never be considered stale exemptLabels: - pinned - security # Label to use when marking as stale staleLabel: wontfix # Comment to post when marking as stale. Set to `false` to disable markComment: > This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. # Comment to post when closing a stale Issue or Pull Request. Set to `false` to disable closeComment: false # Limit to only `issues` or `pulls` only: issues
# Configuration for probot-stale - https://github.com/probot/stale # Number of days of inactivity before an Issue or Pull Request becomes stale daysUntilStale: 60 # Number of days of inactivity before a stale Issue or Pull Request is closed daysUntilClose: 7 # Issues or Pull Requests with these labels will never be considered stale exemptLabels: - pinned - security # Label to use when marking as stale staleLabel: wontfix # Comment to post when marking as stale. Set to `false` to disable markComment: > This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. # Comment to post when closing a stale Issue or Pull Request. Set to `false` to disable closeComment: false # Limit to only `issues` or `pulls` # only: issues
Revert "Limit to only `issues`"
Revert "Limit to only `issues`" This reverts commit f7a5c33d3c1e1216bb6f2e6b8a8e15e6ba11a026.
YAML
mit
rsim/oracle-enhanced,cdinger/oracle-enhanced,yahonda/oracle-enhanced,cdinger/oracle-enhanced,rshell/oracle-enhanced,yahonda/oracle-enhanced,rsim/oracle-enhanced,luke2237/oracle-enhanced,luke2237/oracle-enhanced,rshell/oracle-enhanced
2dc70aba3051934f5b3a385823fe601bcff1dd5e
docs/mkdocs.yml
docs/mkdocs.yml
site_name: Keras-vis Documentation theme: readthedocs docs_dir: sources site_description: 'Documentation for keras-vis, Neural Network Visualization Toolkit.' extra_javascript: - https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML extra_css: - css/extras.css markdown_extensions: - mdx_math pages: - Home: index.md - Visualizations: - Convolutional Filters: visualizations/conv_filters.md - Dense Layers: visualizations/dense.md - Core API: - losses: vis.losses.md - regularizers: vis.regularizers.md - optimizer: vis.optimizer.md - visualization: vis.visualization.md - Utils: - utils: vis.utils.utils.md - vggnet: vis.utils.vggnet.md
site_name: Keras-vis Documentation theme: readthedocs docs_dir: sources repo_url: http://github.com/raghakot/keras-vis edit_uri: blob/master/docs/templates site_description: 'Documentation for keras-vis, Neural Network Visualization Toolkit.' extra_javascript: - https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML extra_css: - css/extras.css markdown_extensions: - mdx_math pages: - Home: index.md - Visualizations: - Convolutional Filters: visualizations/conv_filters.md - Dense Layers: visualizations/dense.md - API Docs: - Core API: - losses: vis.losses.md - regularizers: vis.regularizers.md - optimizer: vis.optimizer.md - visualization: vis.visualization.md - Utils: - utils: vis.utils.utils.md - vggnet: vis.utils.vggnet.md
Add repo url to docs
Add repo url to docs
YAML
mit
raghakot/keras-vis
8352a212c19d4e2b7eae0aa0db81758562d9b8d9
templates/cf-infrastructure-vsphere.yml
templates/cf-infrastructure-vsphere.yml
meta: ~ compilation: cloud_properties: ram: 1024 disk: 6144 cpu: 2 networks: (( merge )) resource_pools: - name: services-small stemcell: name: bosh-vsphere-esxi-ubuntu-trusty-go_agent version: (( merge || 2671 )) cloud_properties: ram: 1024 # enough for extracting mysql disk: 10480 cpu: 1
meta: ~ compilation: cloud_properties: ram: 1024 disk: 10240 cpu: 2 networks: (( merge )) resource_pools: - name: services-small stemcell: name: bosh-vsphere-esxi-ubuntu-trusty-go_agent version: (( merge || 2671 )) cloud_properties: ram: 1024 # enough for extracting mysql disk: 10480 cpu: 1
Increase compilation VM size for vsphere
Increase compilation VM size for vsphere - Saw failures on CI where compilation vms would run out of space
YAML
apache-2.0
kbastani/cf-mysql-release,kbastani/cf-mysql-release,cloudfoundry/cf-mysql-release,CloudCredo/cf-mysql-release,CloudCredo/cf-mysql-release,cloudfoundry/cf-mysql-release,ruanbinfeng/cf-mysql-release,ruanbinfeng/cf-mysql-release,krishna-mk/cf-mysql-release,krishna-mk/cf-mysql-release,CloudCredo/cf-mysql-release,cloudfoundry/cf-mysql-release,krishna-mk/cf-mysql-release,ruanbinfeng/cf-mysql-release,ruanbinfeng/cf-mysql-release,kbastani/cf-mysql-release,cloudfoundry/cf-mysql-release
3e844f6a819ada9981e912ae46b9302843758401
environment.yml
environment.yml
name: cocoscore channels: - defaults - conda-forge dependencies: - xgboost=0.6a2 - nltk=3.2.4 - numpy=1.13.3 - pandas=0.20.3 - python=3.6.1 - scikit-learn=0.19.1 - scipy=0.19.1 - pip: - gensim==3.0.1
name: cocoscore channels: - defaults - conda-forge dependencies: - xgboost=0.6a2 - nltk=3.2.4 - numpy=1.13.3 - pandas=0.20.3 - python=3.6.1 - scikit-learn=0.19.1 - scipy=0.19.1 - pip: - boto==2.48.0 - gensim==3.0.1
Fix boto version in dependencies as this seems to be needed by gensim
Fix boto version in dependencies as this seems to be needed by gensim
YAML
mit
JungeAlexander/cocoscore
4c11264f236d141d9672d0631de140fade8aad47
.github/workflows/ci.yaml
.github/workflows/ci.yaml
on: [push, pull_request] name: CI jobs: clippy_rustfmt: name: Lint & Format runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Install stable toolchain uses: actions-rs/toolchain@v1 with: toolchain: stable components: rustfmt, clippy - name: Clippy uses: actions-rs/cargo@v1 with: command: clippy args: --all-features - name: Format uses: actions-rs/cargo@v1 with: command: fmt args: -- --check test: name: Build & Test runs-on: ubuntu-latest strategy: matrix: rust: - stable - nightly - 1.41.1 features: - default - ssl steps: - uses: actions/checkout@v2 - name: Install toolchain uses: actions-rs/toolchain@v1 with: toolchain: ${{ matrix.rust }} override: true - name: Build uses: actions-rs/cargo@v1 with: command: build args: --features ${{ matrix.features }} - name: Test uses: actions-rs/cargo@v1 with: command: test args: --features ${{ matrix.features }}
on: [push, pull_request] name: CI jobs: clippy_rustfmt: name: Lint & Format runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Install stable toolchain uses: actions-rs/toolchain@v1 with: toolchain: stable components: rustfmt, clippy - name: Clippy uses: actions-rs/cargo@v1 with: command: clippy args: --all-features - name: Format uses: actions-rs/cargo@v1 with: command: fmt args: -- --check test: name: Build & Test runs-on: ubuntu-latest strategy: matrix: rust: - stable - nightly - 1.48 features: - default - ssl steps: - uses: actions/checkout@v2 - name: Install toolchain uses: actions-rs/toolchain@v1 with: toolchain: ${{ matrix.rust }} override: true - name: Build uses: actions-rs/cargo@v1 with: command: build args: --features ${{ matrix.features }} - name: Test uses: actions-rs/cargo@v1 with: command: test args: --features ${{ matrix.features }}
Test against MSRV 1.48 rather than 1.41.1
Test against MSRV 1.48 rather than 1.41.1 The OpenSSL crate has introduced a breaking change with 0.10.36 which menas they now rely on const fn support not available in 1.41.1. As only one OpenSSL version can be supported in a single Rust project, and the change was released as a patch increment so Cargo will always select this as the desired version, there's not much point in us testing tiny-http on such an old compiler version anymore.
YAML
apache-2.0
frewsxcv/tiny-http,tiny-http/tiny-http,frewsxcv/tiny-http
1f3468a73e6aec048e4c2a7a5cc9d2eb118739b2
.github/workflows/ci.yaml
.github/workflows/ci.yaml
name: CI # This workflow run tests and build for each push on: push: branches: - master jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Update local toolchain run: | rustup update rustup component add clippy rustup install stable - name: Toolchain info run: | cargo --version --verbose rustc --version cargo clippy --version - name: Install missing dependencies run: | sudo apt-get install -y libx11-dev xserver-xorg-dev xorg-dev - name: Lint run: | cargo fmt -- --check cargo clippy -- -D warnings - name: Test run: | cargo check cargo test --all - name: Build run: | cargo build --release
name: CI # This workflow run tests and build for each push on: push: branches: - master jobs: build: runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v2 - name: Update local toolchain run: | rustup update rustup component add clippy rustup install stable - name: Toolchain info run: | cargo --version --verbose rustc --version cargo clippy --version - name: Install missing dependencies run: | sudo apt-get install -y libx11-dev xserver-xorg-dev xorg-dev libpango1.0 libgraphene-1.0-dev libgtk-4-bin libgtk-4-common libgtk-4-dev - name: Lint run: | cargo fmt -- --check cargo clippy -- -D warnings - name: Test run: | cargo check cargo test --all - name: Build run: | cargo build --release
Update gha runner to ubuntu-22.04 in attempt to access more recent version of libglib2.0
Update gha runner to ubuntu-22.04 in attempt to access more recent version of libglib2.0
YAML
apache-2.0
msierks/rustcube
93ba80ad2641473cdd9e487c3cba8b165b2aa37c
.example-job-board-register-sugilite.yml
.example-job-board-register-sugilite.yml
--- languages: - __sugilite__ - android - c - c++ - clojure - cplusplus - cpp - crystal - csharp - d - dart - default - elixir - erlang - go - groovy - haskell - haxe - java - julia - legacy - mega - node_js - perl - perl6 # FIXME: wat # - php - pure_java - python - r - ruby - rust - scala - universe features: - basic - bazaar - chromium - docker - elasticsearch - emacs - firefox - go-toolchain - google-chrome - jdk - memcached - mongodb - perlbrew - phantomjs - php_interpreter - postgresql - rabbitmq - redis - sphinxsearch - sqlite - xserver
--- languages: - __sugilite__ - android - c - c++ - clojure - cplusplus - cpp - crystal - csharp - d - dart - default - elixir - erlang - go - groovy - haskell - haxe - java - julia - legacy - mega - node_js - perl - perl6 # FIXME: wat # - php - pure_java - python - r - ruby - rust - scala - universe features: - basic - bazaar - chromium - docker - elasticsearch - emacs - firefox - go-toolchain - google-chrome - jdk - memcached - mongodb - perlbrew - phantomjs # FIXME: wat # - php_interpreter - postgresql - rabbitmq - redis - sphinxsearch - sqlite - xserver
Disable the php interpreter specs for smoke check, too
Disable the php interpreter specs for smoke check, too
YAML
mit
travis-ci/packer-templates,travis-ci/packer-templates,travis-ci/packer-templates
fe960aeb769cff1326c3157b241f49fa32ae6893
packages/la/language-sygus.yaml
packages/la/language-sygus.yaml
homepage: '' changelog-type: markdown hash: 68af058da872f8fbdb2596a1dfabd7e8da5a0e6603b065e0a497cc759b40dfff test-bench-deps: language-sygus: -any base: ! '>=4.10 && <4.13' text: -any tasty-hunit: ! '>=0.10' tasty: ! '>=1.0' deepseq: ! '>=1.4 && <1.5' maintainer: [email protected] synopsis: A parser and printer for the SyGuS 2.0 language. changelog: | # Revision history for language-sygus ## 0.1.0.0 -- YYYY-mm-dd * First version. Released on an unsuspecting world. basic-deps: base: ! '>=4.10 && <4.13' text: ! '>=1.1 && <=1.3' array: ! '>=0.5 && <0.6' all-versions: - 0.1.0.0 author: Bill Hallahan latest: 0.1.0.0 description-type: haddock description: A parser and printer for the SyGuS 2.0 language. <https://sygus.org/assets/pdf/SyGuS-IF_2.0.pdf> license-name: BSD-3-Clause
homepage: '' changelog-type: markdown hash: 834f737d0c29ac29cda68399d4e99ddcd81317ec28838f4bf588c0387b8324dc test-bench-deps: language-sygus: -any base: ! '>=4.10 && <4.13' text: -any tasty-hunit: ! '>=0.10' tasty: ! '>=1.0' deepseq: ! '>=1.1 && <1.5' maintainer: [email protected] synopsis: A parser and printer for the SyGuS 2.0 language. changelog: | # Revision history for language-sygus ## 0.1.0.0 -- YYYY-mm-dd * First version. Released on an unsuspecting world. basic-deps: base: ! '>=4.10 && <4.13' text: ! '>=1.1 && <=1.3' array: ! '>=0.3 && <0.6' all-versions: - 0.1.0.0 author: Bill Hallahan latest: 0.1.0.0 description-type: haddock description: A parser and printer for the SyGuS 2.0 language. <https://sygus.org/assets/pdf/SyGuS-IF_2.0.pdf> license-name: BSD-3-Clause
Update from Hackage at 2019-10-11T00:39:42Z
Update from Hackage at 2019-10-11T00:39:42Z
YAML
mit
commercialhaskell/all-cabal-metadata
f9398e8d214f0b063dc4643fb49409911a468eb4
.readthedocs.yaml
.readthedocs.yaml
# .readthedocs.yaml # Read the Docs configuration file # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details version: 2 build: os: ubuntu-22.04 tools: python: "3.10" commands: - git fetch --unshallow - pip install tox - tox -e rtd python: install: - method: pip path: . sphinx: configuration: doc/conf.py fail_on_warning: true
# .readthedocs.yaml # Read the Docs configuration file # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details version: 2 build: os: ubuntu-22.04 tools: python: "3.10" commands: - git fetch --unshallow - pip install tox - tox -e rtd
Remove superfluous (?) sections of config
Remove superfluous (?) sections of config
YAML
mit
jrsmith3/ibei
aa4d2dd4bd5e9a1a810882bedabf750a7b89691f
.rubocop_todo.yml
.rubocop_todo.yml
# This configuration was generated by # `rubocop --auto-gen-config` # on 2016-10-25 22:09:12 +0200 using RuboCop version 0.44.1. # The point is for the user to remove these configuration records # one by one as the offenses are removed from the code base. # Note that changes in the inspected code, or installation of new # versions of RuboCop, may require this file to be generated again. # Offense count: 4 Metrics/AbcSize: Max: 26 # Offense count: 1 # Configuration parameters: CountComments. Metrics/ClassLength: Max: 106 # Offense count: 1 Metrics/CyclomaticComplexity: Max: 7 # Offense count: 141 # Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives. # URISchemes: http, https Metrics/LineLength: Max: 283 # Offense count: 3 # Configuration parameters: CountComments. Metrics/MethodLength: Max: 17
# This configuration was generated by # `rubocop --auto-gen-config` # on 2016-10-25 22:09:12 +0200 using RuboCop version 0.44.1. # The point is for the user to remove these configuration records # one by one as the offenses are removed from the code base. # Note that changes in the inspected code, or installation of new # versions of RuboCop, may require this file to be generated again. # Offense count: 4 Metrics/AbcSize: Max: 26 # Offense count: 1 Metrics/CyclomaticComplexity: Max: 7 # Offense count: 141 # Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives. # URISchemes: http, https Metrics/LineLength: Max: 283 # Offense count: 3 # Configuration parameters: CountComments. Metrics/MethodLength: Max: 17
Remove already addressed ClassLength exclusion
Remove already addressed ClassLength exclusion
YAML
mit
itsmrwave/pesapal-gem
d0b5eaa2aeb02471a5ba57ec5250a25538a85999
learning/katas/python/course-remote-info.yaml
learning/katas/python/course-remote-info.yaml
id: 54532 update_date: Wed, 19 Jun 2019 10:36:17 UTC
id: 54532 update_date: Mon, 20 Jan 2020 15:20:43 UTC
Update the course on Stepik
Update the course on Stepik
YAML
apache-2.0
apache/beam,chamikaramj/beam,robertwb/incubator-beam,chamikaramj/beam,apache/beam,lukecwik/incubator-beam,lukecwik/incubator-beam,apache/beam,lukecwik/incubator-beam,apache/beam,lukecwik/incubator-beam,robertwb/incubator-beam,lukecwik/incubator-beam,chamikaramj/beam,robertwb/incubator-beam,chamikaramj/beam,chamikaramj/beam,robertwb/incubator-beam,chamikaramj/beam,chamikaramj/beam,robertwb/incubator-beam,lukecwik/incubator-beam,apache/beam,lukecwik/incubator-beam,apache/beam,robertwb/incubator-beam,lukecwik/incubator-beam,robertwb/incubator-beam,apache/beam,iemejia/incubator-beam,chamikaramj/beam,lukecwik/incubator-beam,robertwb/incubator-beam,robertwb/incubator-beam,apache/beam,chamikaramj/beam,apache/beam,apache/beam,chamikaramj/beam,robertwb/incubator-beam,iemejia/incubator-beam,lukecwik/incubator-beam,apache/beam
defc2b34f5e9d0e13e71f760aa735d2970737f78
packages/po/polysemy-vinyl.yaml
packages/po/polysemy-vinyl.yaml
homepage: '' changelog-type: markdown hash: 4a66b145c51015367a0eb7302bdb6062d5d0d114e53d5e84128fb9c25f7eae07 test-bench-deps: {} maintainer: [email protected] synopsis: Functions for mapping vinyl records in polysemy. changelog: | # Changelog for polysemy-vinyl ## v0.1.2.0 * Add `separateRecInput`, `separateRecInput'`, `stripRecInput`, `endRecInput`. * Inline everything. ## v0.1.1.0 * Enable `PolyKinds`. ## v0.1.0.0 * Add `rmapOutput`, `rmapOutput'` `rContramapInput`, `rContramapInput'`. basic-deps: polysemy-extra: -any base: '>=4.7 && <5' vinyl: -any polysemy: -any all-versions: - 0.1.0.0 - 0.1.1.0 - 0.1.2.0 author: Daniel Firth latest: 0.1.2.0 description-type: markdown description: | # polysemy-vinyl Extra functions for using vinyl records with polysemy. license-name: MIT
homepage: '' changelog-type: markdown hash: 8ee86ed8b3d1952a0fba4e151d17b5b0cc2e5bc7a3c65bc024578599f21e5a28 test-bench-deps: {} maintainer: [email protected] synopsis: Functions for mapping vinyl records in polysemy. changelog: | # Changelog for polysemy-vinyl ## v0.1.3.0 * Add `runInputConstFC`. ## v0.1.2.0 * Add `separateRecInput`, `separateRecInput'`, `stripRecInput`, `endRecInput`. * Inline everything. ## v0.1.1.0 * Enable `PolyKinds`. ## v0.1.0.0 * Add `rmapOutput`, `rmapOutput'` `rContramapInput`, `rContramapInput'`. basic-deps: polysemy-extra: '>=0.1.6.0' base: '>=4.7 && <5' vinyl: -any polysemy: -any all-versions: - 0.1.0.0 - 0.1.1.0 - 0.1.2.0 - 0.1.3.1 author: Daniel Firth latest: 0.1.3.1 description-type: markdown description: | # polysemy-vinyl Extra functions for using vinyl records with polysemy. license-name: MIT
Update from Hackage at 2020-11-13T23:15:27Z
Update from Hackage at 2020-11-13T23:15:27Z
YAML
mit
commercialhaskell/all-cabal-metadata
0cbd5f520b9f122e07eda16151e622cc8226eff1
packages/pr/primitive-sort.yaml
packages/pr/primitive-sort.yaml
homepage: https://github.com/andrewthad/primitive-sort changelog-type: '' hash: 41988da30b66173ef52a5eb702636cff26dafdbc646f44ea5b29951a83d9ba90 test-bench-deps: tasty-smallcheck: -any base: -any doctest: ! '>=0.10' primitive-sort: -any HUnit: -any smallcheck: -any gauge: -any containers: -any ghc-prim: -any tasty-quickcheck: -any tasty-hunit: -any random: -any tasty: -any QuickCheck: -any primitive: -any maintainer: [email protected] synopsis: Sort primitive arrays changelog: '' basic-deps: base: ! '>=0.4.9 && <5' contiguous: ! '>=0.1 && <0.2' ghc-prim: -any primitive: ! '>=0.6.4.0' all-versions: - '0.1.0.0' author: Andrew Martin latest: '0.1.0.0' description-type: markdown description: ! '# mergesort ' license-name: BSD3
homepage: https://github.com/andrewthad/primitive-sort changelog-type: '' hash: 1c7dd5f4ce22e0b4418acd90e037e2498469fc24edccd05bcd6e5930d842242c test-bench-deps: tasty-smallcheck: -any base: -any doctest: ! '>=0.10' primitive-sort: -any HUnit: -any smallcheck: -any gauge: -any containers: -any ghc-prim: -any tasty-quickcheck: -any tasty-hunit: -any random: -any tasty: -any QuickCheck: -any primitive: -any maintainer: [email protected] synopsis: Sort primitive arrays changelog: '' basic-deps: base: ! '>=0.4.9 && <5' contiguous: ! '>=0.1 && <0.3' ghc-prim: -any primitive: ! '>=0.6.4.0' all-versions: - '0.1.0.0' author: Andrew Martin latest: '0.1.0.0' description-type: markdown description: ! '# mergesort ' license-name: BSD3
Update from Hackage at 2018-06-07T14:52:37Z
Update from Hackage at 2018-06-07T14:52:37Z
YAML
mit
commercialhaskell/all-cabal-metadata
4c0a960cfefbd0c4da802a17dc03e9e6b58cec6f
.zuul.yml
.zuul.yml
ui: tape browsers: - name: chrome version: 28..latest - name: firefox version: 13..latest - name: ie version: 10..latest - name: safari version: 6..latest
ui: tape browsers: - name: chrome version: 28..latest - name: firefox version: 24..latest - name: ie version: 10..latest - name: safari version: 6..latest
Reduce the number of Firefox versions checked
Reduce the number of Firefox versions checked
YAML
mit
cesarandreu/browser-image-size
4e229edb4ad1d451748fdce3de02ac387914a0f2
.zuul.yml
.zuul.yml
ui: tape browsers: - name: chrome version: 30..latest # - name: safari # version: latest # - name: ie # version: 9..latest - name: firefox version: 25..latest # server: ./test/server.js
ui: tape browsers: - name: chrome version: 32..latest - name: firefox version: 26..latest # server: ./test/server.js
Update browsers (chrome >= 32, ff >= 26)
Update browsers (chrome >= 32, ff >= 26)
YAML
apache-2.0
rtc-io/rtc-tools
29e1f7934f226b6e82bf89f987e2e6e2f5322fbe
recipes/pytransform3d/meta.yaml
recipes/pytransform3d/meta.yaml
{% set name = "pytransform3d" %} {% set version = "1.8" %} package: name: "{{ name|lower }}" version: "{{ version }}" source: url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz" sha256: 4608079a30ef3f8e927f3b3aee7b58a1e47cdcd7c46be6d889d1cb0f82650baa build: noarch: python number: 0 script: "{{ PYTHON }} -m pip install . -vv" requirements: host: - beautifulsoup4 - lxml - matplotlib-base - numpy - pip - python - scipy run: - beautifulsoup4 - lxml - matplotlib-base - numpy - python - scipy test: imports: - pytransform3d about: home: "https://github.com/rock-learning/pytransform3d" license: "BSD-3-Clause" license_file: "LICENSE" summary: "3D transformations for Python" doc_url: "https://rock-learning.github.io/pytransform3d/" dev_url: "https://github.com/rock-learning/pytransform3d" extra: recipe-maintainers: - erikmannerfelt - AlexanderFabisch
{% set name = "pytransform3d" %} {% set version = "1.8" %} package: name: "{{ name|lower }}" version: "{{ version }}" source: url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz" sha256: 4608079a30ef3f8e927f3b3aee7b58a1e47cdcd7c46be6d889d1cb0f82650baa build: noarch: python number: 0 script: "{{ PYTHON }} -m pip install . -vv" requirements: host: - beautifulsoup4 - lxml - matplotlib-base - numpy - pip - python >=3.6 - scipy run: - beautifulsoup4 - lxml - matplotlib-base - numpy - python >=3.6 - scipy test: imports: - pytransform3d about: home: "https://github.com/rock-learning/pytransform3d" license: "BSD-3-Clause" license_file: "LICENSE" summary: "3D transformations for Python" doc_url: "https://rock-learning.github.io/pytransform3d/" dev_url: "https://github.com/rock-learning/pytransform3d" extra: recipe-maintainers: - erikmannerfelt - AlexanderFabisch
Set minimum python version to 3.6
Set minimum python version to 3.6
YAML
bsd-3-clause
mariusvniekerk/staged-recipes,stuertz/staged-recipes,goanpeca/staged-recipes,kwilcox/staged-recipes,goanpeca/staged-recipes,igortg/staged-recipes,stuertz/staged-recipes,johanneskoester/staged-recipes,jakirkham/staged-recipes,jochym/staged-recipes,jochym/staged-recipes,ReimarBauer/staged-recipes,ReimarBauer/staged-recipes,hadim/staged-recipes,ocefpaf/staged-recipes,jakirkham/staged-recipes,ocefpaf/staged-recipes,johanneskoester/staged-recipes,igortg/staged-recipes,conda-forge/staged-recipes,mariusvniekerk/staged-recipes,conda-forge/staged-recipes,kwilcox/staged-recipes,hadim/staged-recipes
2dfa928c90a5b623a0cdda8d237663ba44a3b52a
roles/docker/tasks/pre-upgrade.yml
roles/docker/tasks/pre-upgrade.yml
--- - name: Ensure old versions of Docker are not installed. | Debian package: name: '{{ item }}' state: absent with_items: - docker - docker-engine when: - ansible_os_family == 'Debian' - (docker_versioned_pkg[docker_version | string] | search('docker-ce')) - name: Ensure old versions of Docker are not installed. | RedHat package: name: '{{ item }}' state: absent with_items: - docker - docker-common - docker-engine - docker-selinux when: - ansible_os_family == 'RedHat' - (docker_versioned_pkg[docker_version | string] | search('docker-ce')) - not is_atomic
--- - name: Ensure old versions of Docker are not installed. | Debian package: name: '{{ item }}' state: absent with_items: - docker - docker-engine - docker.io when: - ansible_os_family == 'Debian' - (docker_versioned_pkg[docker_version | string] | search('docker-ce')) - name: Ensure old versions of Docker are not installed. | RedHat package: name: '{{ item }}' state: absent with_items: - docker - docker-common - docker-engine - docker-selinux - docker-client - docker-client-latest - docker-latest - docker-latest-logrotate - docker-logrotate - docker-engine-selinux when: - ansible_os_family == 'RedHat' - (docker_versioned_pkg[docker_version | string] | search('docker-ce')) - not is_atomic
Uninstall old versions of Docker
Uninstall old versions of Docker
YAML
apache-2.0
kubernetes-sigs/kubespray,kubernetes-sigs/kubespray,insequent/kargo,insequent/kargo,kubernetes-sigs/kubespray,kubernetes-incubator/kubespray,kubernetes-sigs/kubespray,Atoms/kubespray,kubernetes-incubator/kargo,Atoms/kubespray,Atoms/kubespray,kubespray/kargo,kubespray/kargo,kubernetes-incubator/kubespray,kubernetes-incubator/kargo,Atoms/kubespray
e79fb91e9d6feb694f52febbaaf6892396e46322
roles/elasticsearch/tasks/main.yml
roles/elasticsearch/tasks/main.yml
--- - name: start elasticsearch container docker_container: name: elasticsearch image: "docker.elastic.co/elasticsearch/elasticsearch:{{ es_version }}" restart_policy: always network_mode: host
--- - name: set vm.max_map_count command: sysctl -w vm.max_map_count=262144 - name: start elasticsearch container docker_container: name: elasticsearch image: "docker.elastic.co/elasticsearch/elasticsearch:{{ es_version }}" restart_policy: always network_mode: host env: bootstrap.memory_lock: "true" ES_JAVA_OPTS: "-Xms512m -Xmx512m" ulimits: - memlock:-1:-1 volumes: - /usr/share/elasticsearch/data
Add options to elasticsearch task
Add options to elasticsearch task
YAML
apache-2.0
osu-mist/ansible-roles
671633a60d4407660906beb7663a9969d093d913
app/config/routing.yml
app/config/routing.yml
nelmio_security_report: path: /nelmio/csp/report defaults: { _controller: nelmio_security.csp_reporter_controller:indexAction } methods: [POST]
nelmio_security_report: path: /csp/report defaults: { _controller: nelmio_security.csp_reporter_controller:indexAction } methods: [POST]
Remove /nelmio from CSP report path.
Remove /nelmio from CSP report path.
YAML
apache-2.0
SURFnet/Stepup-RA,SURFnet/Stepup-RA,SURFnet/Stepup-RA,SURFnet/Stepup-RA
6644b7d56b9f0137f6636e8303655f04a62620f9
install.conf.yaml
install.conf.yaml
- clean: ['~'] - defaults: link: create: true - shell: # Pre-install - command: git submodule update --init --remote stdout: true stderr: true - command: rustup completion > ~/.zfunc/_rustup stdout: true stderr: true - link: # vim/Vundle ~/.config/nvim/bundle/Vundle.vim: Vundle.vim ~/.config/nvim/init.vim: nvim/init.vim # tmux ~/.tmux.conf: tmux.conf # git ~/.gitconfig: git/gitconfig ~/.gitignore: git/gitignore # zsh ~/.zshrc: zshrc # GPG ~/.gnupg/gpg-agent.conf: gnupg/gpg-agent.conf # specemacs ~/.spacemacs: spacemacs # ansible ~/.ansible.cfg: ansible.cfg # pylint ~/.pylintrc: pylintrc # gopass ~/.config/gopass/config.yml: gopass/config.yml # virtualenvwrapper ~/.virtualenvs/postmkvirtualenv: virtualenvs/postmkvirtualenv # utils ~/.local/bin/: glob: true path: utils/*
- clean: ['~'] - defaults: link: create: true - shell: # Pre-install - command: git submodule update --init --remote stdout: true stderr: true - command: rustup completions zsh > ~/.zfunc/_rustup stdout: true stderr: true - link: # vim/Vundle ~/.config/nvim/bundle/Vundle.vim: Vundle.vim ~/.config/nvim/init.vim: nvim/init.vim # tmux ~/.tmux.conf: tmux.conf # git ~/.gitconfig: git/gitconfig ~/.gitignore: git/gitignore # zsh ~/.zshrc: zshrc # GPG ~/.gnupg/gpg-agent.conf: gnupg/gpg-agent.conf # specemacs ~/.spacemacs: spacemacs # ansible ~/.ansible.cfg: ansible.cfg # pylint ~/.pylintrc: pylintrc # gopass ~/.config/gopass/config.yml: gopass/config.yml # virtualenvwrapper ~/.virtualenvs/postmkvirtualenv: virtualenvs/postmkvirtualenv # utils ~/.local/bin/: glob: true path: utils/*
Fix rust completion setup command
Fix rust completion setup command
YAML
mit
ouroboros8/dotfiles,ouroboros8/dotfiles
f96fa3079d4ff9d0daf16b647b340e1307697418
roles/initialize/tasks/main.yml
roles/initialize/tasks/main.yml
--- - name: Initialize | Download seed data get_url: dest: '/tmp/cbioportal-seed.sql.gz' url: '{{ seed_database }}' - name: Initialize | Load seed data mysql_db: name: "{{mysql_database_name}}" state: import target: '/tmp/cbioportal-seed.sql.gz' login_user: "{{mysql_database_user}}" login_password: "{{mysql_database_password}}"
--- - name: Initialize | Download seed data get_url: dest: '/tmp/cbioportal-seed.sql.gz' url: '{{ seed_database }}' ## Just how many mutations exactly? - name: Retrieve stuff from mysql command: > mysql --user={{mysql_database_user}} --password={{mysql_database_password}} {{mysql_database_name}} --host=localhost --batch --skip-column-names --execute="SELECT COUNT(*) AS COUNT FROM cosmic_mutation" register: cosmic_mutation_count always_run: True changed_when: False - name: echo debug: var: 'cosmic_mutation_count' ## Don't reload if we have data - name: Initialize | Load seed data mysql_db: name: "{{mysql_database_name}}" state: import target: '/tmp/cbioportal-seed.sql.gz' login_user: "{{mysql_database_user}}" login_password: "{{mysql_database_password}}" when: cosmic_mutation_count.stdout == "0"
Make the seed loading behave with a bit more idempotence
Make the seed loading behave with a bit more idempotence
YAML
mit
pughlab/cbioportal-deployment,pughlab/cbioportal-deployment
17f50b827c28902553d1cdc8ee488aaa5042c5ed
.github/workflows/trigger-benchmarks.yml
.github/workflows/trigger-benchmarks.yml
name: Trigger Benchmarks on: push jobs: trigger_measurement: if: github.repository_owner == 'graphhopper' runs-on: ubuntu-22.04 environment: benchmarks steps: - name: trigger run: | curl -X POST -H "Authorization: token ${{ secrets.BENCHMARKS_TOKEN }}" \ -H "Accept: application/vnd.github+json" \ "https://api.github.com/repos/${{ secrets.BENCHMARKS_REPO }}/dispatches" \ -d '{"event_type":"measurement_core","client_payload":{"core_commit": "'$GITHUB_SHA'" }}'
name: Trigger Benchmarks on: push jobs: trigger_measurement: if: github.repository_owner == 'graphhopper' runs-on: ubuntu-22.04 environment: benchmarks steps: - name: trigger run: | curl -X POST -H "Authorization: token ${{ secrets.BENCHMARKS_TOKEN }}" \ -H "Accept: application/vnd.github+json" \ "https://api.github.com/repos/${{ secrets.BENCHMARKS_REPO }}/dispatches" \ -d '{"event_type":"measurement_core","client_payload":{"core_commit": "'$GITHUB_SHA'", "core_branch": "${{ github.ref_name }}" }}'
Add branch name to core benchmark trigger
Add branch name to core benchmark trigger
YAML
apache-2.0
graphhopper/graphhopper,graphhopper/graphhopper,graphhopper/graphhopper,graphhopper/graphhopper
c90a4177001310aa3e1cf72b08345b65828cd2fb
contrib/docker-compose/docker-compose.yml
contrib/docker-compose/docker-compose.yml
version: '2' services: libvirt: build: ../docker/libvirt/ pid: host privileged: true # ports: # - "16509:16509" # network_mode: host restart: always environment: - LIBVIRT_CLEANUP="" volumes: - /lib/modules:/lib/modules:ro - /run:/run - /dev:/dev - /var/lib/virtlet:/var/lib/virtlet - /sys/fs/cgroup:/sys/fs/cgroup - ./libvirt.conf:/etc/libvirt/libvirtd.conf - ./qemu.conf:/etc/libvirt/qemu.conf - libvirtd:/var/lib/libvirt - libvirt_qemu:/etc/libvirt/qemu virtlet: build: ../.. # network_mode: host restart: always volumes: - virtlet_data:/var/data/virtlet - /var/lib/virtlet:/var/lib/virtlet - /lib/modules:/lib/modules:ro - /boot:/boot:ro - /run:/run depends_on: - libvirt links: - "libvirt:libvirt" volumes: libvirtd: {} libvirt_qemu: {} virtlet_data: {}
version: '2' services: libvirt: build: ../docker/libvirt/ pid: host privileged: true # ports: # - "16509:16509" # network_mode: host restart: always environment: - LIBVIRT_CLEANUP volumes: - /lib/modules:/lib/modules:ro - /run:/run - /dev:/dev - /var/lib/virtlet:/var/lib/virtlet - /sys/fs/cgroup:/sys/fs/cgroup - ./libvirt.conf:/etc/libvirt/libvirtd.conf - ./qemu.conf:/etc/libvirt/qemu.conf - libvirtd:/var/lib/libvirt - libvirt_qemu:/etc/libvirt/qemu virtlet: build: ../.. # network_mode: host restart: always volumes: - virtlet_data:/var/data/virtlet - /var/lib/virtlet:/var/lib/virtlet - /lib/modules:/lib/modules:ro - /boot:/boot:ro - /run:/run depends_on: - libvirt links: - "libvirt:libvirt" volumes: libvirtd: {} libvirt_qemu: {} virtlet_data: {}
Fix cleanup of libvirt data
contrib: Fix cleanup of libvirt data Following instructions from: https://docs.docker.com/compose/environment-variables/#/passing-environment-variables-through-to-containers
YAML
apache-2.0
vefimova/virtlet,vefimova/virtlet,Mirantis/virtlet,Mirantis/virtlet,vefimova/virtlet,vefimova/virtlet,nhlfr/virtlet,nhlfr/virtlet,nhlfr/virtlet,nhlfr/virtlet
985e70aa9a0e9ee011885835981604b7ab5c415c
packages/st/string-convert.yaml
packages/st/string-convert.yaml
homepage: https://bitbucket.org/tdammers/string-convert changelog-type: '' hash: acef5d25cffde13a151ba02b1e6de1515c461dc9678664dd7f8eb13be906482c test-bench-deps: {} maintainer: [email protected] synopsis: Provide universal string conversions between any two string-like types changelog: '' basic-deps: bytestring: -any base: ! '>=4.5 && <5.0' text: -any utf8-string: -any all-versions: - '0.1.0.0' - '1.0.0' - '2.0.0' - '2.0.1' author: Tobias Dammers latest: '2.0.1' description-type: haddock description: '' license-name: BSD3
homepage: https://bitbucket.org/tdammers/string-convert changelog-type: '' hash: f84f86ec950de02ccb5729ec1a40c1576ba6a7875eb0749f94de59c35d45df43 test-bench-deps: bytestring: -any string-convert: -any base: ! '>=4.5 && <5.0' text: -any utf8-string: -any tasty-hunit: -any tasty: -any maintainer: [email protected] synopsis: Universal string conversions changelog: '' basic-deps: bytestring: -any base: ! '>=4.5 && <5.0' text: -any utf8-string: -any all-versions: - '0.1.0.0' - '1.0.0' - '2.0.0' - '2.0.1' - '3.0.1' author: Tobias Dammers latest: '3.0.1' description-type: haddock description: ! 'Provides functions and typeclasses for transparent conversions between various string types.' license-name: BSD3
Update from Hackage at 2016-07-20T13:18:01+0000
Update from Hackage at 2016-07-20T13:18:01+0000
YAML
mit
commercialhaskell/all-cabal-metadata
4e4f531c25e18af8fe0666cbfc2ece57fa0c1dec
core/cibox-behat-selenium2/tasks/main.yml
core/cibox-behat-selenium2/tasks/main.yml
--- - name: Install apt keys for Google Chrome apt_key: url=https://dl-ssl.google.com/linux/linux_signing_key.pub state=present tags: behat-selenium - name: Adding Chrome APT repo to local database shell: sh -c 'echo deb http://dl.google.com/linux/chrome/deb/ stable main > /etc/apt/sources.list.d/google.list' tags: behat-selenium - name: Install dependencies sudo: yes action: "{{ ansible_pkg_mgr }} pkg={{ item }} state=installed update-cache=yes" with_items: behat_selenium2_dependencies tags: behat-selenium - include: chrome.yml - include: selenium.yml - name: Create xvfb startup script template: src=xvfb.j2 dest=/etc/init.d/xvfb mode=0750 tags: behat-selenium - name: Enable xvfb on boot sudo: yes shell: update-rc.d xvfb defaults tags: behat-selenium
--- - name: Install apt keys for Google Chrome apt_key: url=https://dl-ssl.google.com/linux/linux_signing_key.pub state=present tags: behat-selenium - name: Adding Chrome APT repo to local database shell: sh -c 'echo deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main > /etc/apt/sources.list.d/google.list' tags: behat-selenium - name: Install dependencies sudo: yes action: "{{ ansible_pkg_mgr }} pkg={{ item }} state=installed update-cache=yes" with_items: behat_selenium2_dependencies tags: behat-selenium - include: chrome.yml - include: selenium.yml - name: Create xvfb startup script template: src=xvfb.j2 dest=/etc/init.d/xvfb mode=0750 tags: behat-selenium - name: Enable xvfb on boot sudo: yes shell: update-rc.d xvfb defaults tags: behat-selenium
Fix for Google Chrome apt repo
Fix for Google Chrome apt repo
YAML
bsd-3-clause
valthebald/cibox,PavelLoparev/cibox,PavelLoparev/cibox,ygerasimov/cibox-1,PavelLoparev/cibox,propeoplemd/cibox,propeoplemd/cibox,Sanchiz/cibox,ey-/cibox,valthebald/cibox,Sanchiz/cibox,ey-/cibox,Sanchiz/cibox,propeopleua/cibox,ey-/cibox,Sanchiz/cibox,propeoplemd/cibox,Sanchiz/cibox,valthebald/cibox,ygerasimov/cibox-1,Sanchiz/cibox,ygerasimov/cibox-1,ygerasimov/cibox-1,ey-/cibox,ey-/cibox,propeopleua/cibox,PavelLoparev/cibox,PavelLoparev/cibox,propeopleua/cibox,propeopleua/cibox,propeopleua/cibox,propeoplemd/cibox,PavelLoparev/cibox,ygerasimov/cibox-1,propeoplemd/cibox,valthebald/cibox,valthebald/cibox
4d8e48c3392d3fa6ae94241dc03d60e9e21f8fda
.github/no-response.yml
.github/no-response.yml
# Configuration for probot-no-response - https://github.com/probot/no-response # Number of days of inactivity before an issue is closed for lack of response. daysUntilClose: 21 # Label requiring a response. responseRequiredLabel: "need-info" # Comment to post when closing an Issue for lack of response. closeComment: >- Without additional information, we are unfortunately not sure how to resolve this issue. We are therefore reluctantly going to close this bug for now. Please don't hesitate to comment on the bug if you have any more information for us; we will reopen it right away! Thanks for your contribution.
# Configuration for probot-no-response - https://github.com/probot/no-response # Number of days of inactivity before an issue is closed for lack of response. daysUntilClose: 21 # Label requiring a response. responseRequiredLabel: "needs-info" # Comment to post when closing an Issue for lack of response. closeComment: >- Without additional information, we are unfortunately not sure how to resolve this issue. We are therefore reluctantly going to close this bug for now. Please don't hesitate to comment on the bug if you have any more information for us; we will reopen it right away! Thanks for your contribution.
Fix probot configuration to point to the "needs-info" label.
Fix probot configuration to point to the "needs-info" label. This should cause issues tagged with "needs-info" to be automatically closed if the original issue author doesn't respond within 21 days. I believe this was Devon's intent in 16e721573c2ca95ebe1b5aef4d243276a4f894a2, but due to a typo it had no effect (the "need-info" label is not used). After landing this CL I will remove the "need-info" label and update https://github.com/dart-lang/sdk/wiki/How-the-issue-tracker-works#other-labels accordingly. Change-Id: I613d29aca47be6e4c03a90e526b710d3c5dca847 Reviewed-on: https://dart-review.googlesource.com/c/87483 Reviewed-by: Devon Carew <[email protected]> Commit-Queue: Paul Berry <[email protected]>
YAML
bsd-3-clause
dartino/dart-sdk,dart-archive/dart-sdk,dart-lang/sdk,dartino/dart-sdk,dart-archive/dart-sdk,dart-archive/dart-sdk,dart-archive/dart-sdk,dart-lang/sdk,dart-archive/dart-sdk,dart-lang/sdk,dart-archive/dart-sdk,dart-archive/dart-sdk,dart-archive/dart-sdk,dartino/dart-sdk,dartino/dart-sdk,dartino/dart-sdk,dart-lang/sdk,dart-archive/dart-sdk,dartino/dart-sdk,dart-lang/sdk,dartino/dart-sdk,dart-lang/sdk,dartino/dart-sdk,dart-lang/sdk,dartino/dart-sdk,dart-lang/sdk
d76aeab9cdfb7bf5e9de1b9fb67ed1207132a0c3
.pre-commit-config.yaml
.pre-commit-config.yaml
repos: # Automatically sort imports - repo: https://github.com/PyCQA/isort rev: 5.9.2 hooks: - id: isort # Automatic source code formatting - repo: https://github.com/psf/black rev: 21.6b0 hooks: - id: black args: [--safe, --quiet] # Linting - repo: https://github.com/PyCQA/flake8 rev: 3.9.2 hooks: - id: flake8 additional_dependencies: ['flake8-comprehensions==3.5.0'] # Syntax validation and some basic sanity checks - repo: https://github.com/pre-commit/pre-commit-hooks rev: v4.0.1 hooks: - id: check-merge-conflict - id: check-ast - id: check-json - id: check-added-large-files args: ['--maxkb=200'] - id: check-yaml
repos: # Automatically sort imports - repo: https://github.com/PyCQA/isort rev: 5.9.3 hooks: - id: isort # Automatic source code formatting - repo: https://github.com/psf/black rev: 21.6b0 hooks: - id: black args: [--safe, --quiet] # Linting - repo: https://github.com/PyCQA/flake8 rev: 3.9.2 hooks: - id: flake8 additional_dependencies: ['flake8-comprehensions==3.5.0'] # Syntax validation and some basic sanity checks - repo: https://github.com/pre-commit/pre-commit-hooks rev: v4.0.1 hooks: - id: check-merge-conflict - id: check-ast - id: check-json - id: check-added-large-files args: ['--maxkb=200'] - id: check-yaml
Update precommit hook PyCQA/isort to v5.9.3
Update precommit hook PyCQA/isort to v5.9.3
YAML
bsd-3-clause
DiamondLightSource/python-workflows
dac3efa4602831ee95d9cbf3edcf3e13d7fcd0c0
s3_website.yml
s3_website.yml
s3_id: <%= ENV['S3_ACCESS_KEY_ID'] %> s3_secret: <%= ENV['S3_SECRET_KEY'] %> s3_bucket: docs.gigaspaces.com # Below are examples of all the available configurations. # See README for more detailed info on each of them. max_age: "*": 300 # gzip: # - .html # - .css # - .md s3_endpoint: us-east-1 s3_reduced_redundancy: true # cloudfront_distribution_id: your-dist-id # cloudfront_distribution_config: # default_cache_behavior: # min_TTL: <%= 60 * 60 * 24 %> # aliases: # quantity: 1 # items: # CNAME: your.website.com concurrency_level: 10 # routing_rules: # - condition: # key_prefix_equals: blog/some_path # redirect: # host_name: blog.example.com # replace_key_prefix_with: some_new_path/ # http_redirect_code: 301
s3_id: <%= ENV['S3_ACCESS_KEY_ID'] %> s3_secret: <%= ENV['S3_SECRET_KEY'] %> s3_bucket: docs.gigaspaces.com # Below are examples of all the available configurations. # See README for more detailed info on each of them. max_age: "*": 300 # gzip: # - .html # - .css # - .md s3_endpoint: us-east-1 s3_reduced_redundancy: true # cloudfront_distribution_id: your-dist-id # cloudfront_distribution_config: # default_cache_behavior: # min_TTL: <%= 60 * 60 * 24 %> # aliases: # quantity: 1 # items: # CNAME: your.website.com concurrency_level: 3 # routing_rules: # - condition: # key_prefix_equals: blog/some_path # redirect: # host_name: blog.example.com # replace_key_prefix_with: some_new_path/ # http_redirect_code: 301
Set concurrency level for s3 push to 3
Set concurrency level for s3 push to 3
YAML
apache-2.0
aharonmoll/gigaspaces-wiki-jekyll,aharonmoll/gigaspaces-wiki-jekyll,ShayHassidim/gigaspaces-wiki-jekyll,ShayHassidim/gigaspaces-wiki-jekyll,aharonmoll/gigaspaces-wiki-jekyll,esteratz/gigaspaces-wiki-jekyll,kemiz/gigaspaces-wiki-jekyll,esteratz/gigaspaces-wiki-jekyll,kemiz/gigaspaces-wiki-jekyll,eliranmal/gigaspaces-wiki-jekyll,hagaiGS/gigaspaces-wiki-jekyll,rasteroid/gigaspaces-wiki-jekyll,barakb/gigaspaces-wiki-jekyll,kemiz/gigaspaces-wiki-jekyll,hagaiGS/gigaspaces-wiki-jekyll,eliranmal/gigaspaces-wiki-jekyll,aharonmoll/gigaspaces-wiki-jekyll,kemiz/gigaspaces-wiki-jekyll,esteratz/gigaspaces-wiki-jekyll,barakb/gigaspaces-wiki-jekyll,esteratz/gigaspaces-wiki-jekyll,aharonmoll/gigaspaces-wiki-jekyll,yohanakh/gigaspaces-wiki-jekyll,eliranmal/gigaspaces-wiki-jekyll,barakb/gigaspaces-wiki-jekyll,ShayHassidim/gigaspaces-wiki-jekyll,rasteroid/gigaspaces-wiki-jekyll,yohanakh/gigaspaces-wiki-jekyll,hagaiGS/gigaspaces-wiki-jekyll,ShayHassidim/gigaspaces-wiki-jekyll,ShayHassidim/gigaspaces-wiki-jekyll,eliranmal/gigaspaces-wiki-jekyll,rasteroid/gigaspaces-wiki-jekyll,kemiz/gigaspaces-wiki-jekyll,hagaiGS/gigaspaces-wiki-jekyll,yohanakh/gigaspaces-wiki-jekyll,esteratz/gigaspaces-wiki-jekyll,rasteroid/gigaspaces-wiki-jekyll,barakb/gigaspaces-wiki-jekyll,eliranmal/gigaspaces-wiki-jekyll,rasteroid/gigaspaces-wiki-jekyll,yohanakh/gigaspaces-wiki-jekyll
e375738ed6bde7b34435afc2eacaa77a4cfdd032
rancher-config/docker-compose.yml
rancher-config/docker-compose.yml
version: '2' services: gp-finder-frontend: image: "nhsuk/gp-finder:$DOCKER_IMAGE_TAG" environment: NODE_ENV: production HOTJAR_ANALYTICS_TRACKING_ID: $HOTJAR_ANALYTICS_TRACKING_ID GOOGLE_ANALYTICS_TRACKING_ID: $GOOGLE_ANALYTICS_TRACKING_ID WEBTRENDS_ANALYTICS_TRACKING_ID: $WEBTRENDS_ANALYTICS_TRACKING_ID ES_HOST: ${ES_HOST} CACHE_TIMEOUT_SECONDS: 1800 labels: traefik.enable: true traefik.frontend.auth.basic: ${BASIC_AUTH} traefik.frontend.rule: $TRAEFIK_RULE traefik.backend: ${RANCHER_STACK_NAME}-gp-finder-frontend traefik.port: 3000 prometheus.port: 3000 prometheus.monitoring: true io.rancher.container.pull_image: always logging: driver: splunk options: splunk-url: ${SPLUNK_HEC_URL} splunk-token: ${SPLUNK_HEC_TOKEN} splunk-insecureskipverify: "true" splunk-sourcetype: docker splunk-source: gp-finder splunk-verify-connection: "false" tag: "{{`{{.ImageName}} {{.Name}} {{.FullID}}`}}" splunk-format: json
version: '2' services: gp-finder-frontend: image: "nhsuk/gp-finder:$DOCKER_IMAGE_TAG" environment: CACHE_TIMEOUT_SECONDS: 1800 ES_HOST: ${ES_HOST} GOOGLE_ANALYTICS_TRACKING_ID: $GOOGLE_ANALYTICS_TRACKING_ID HOTJAR_ANALYTICS_TRACKING_ID: $HOTJAR_ANALYTICS_TRACKING_ID NODE_ENV: production WEBTRENDS_ANALYTICS_TRACKING_ID: $WEBTRENDS_ANALYTICS_TRACKING_ID labels: io.rancher.container.pull_image: always prometheus.monitoring: true prometheus.port: 3000 traefik.enable: true traefik.backend: ${RANCHER_STACK_NAME}-gp-finder-frontend traefik.frontend.auth.basic: ${BASIC_AUTH} traefik.frontend.rule: $TRAEFIK_RULE traefik.port: 3000 logging: driver: splunk options: splunk-format: json splunk-insecureskipverify: "true" splunk-source: gp-finder splunk-sourcetype: docker splunk-token: ${SPLUNK_HEC_TOKEN} splunk-url: ${SPLUNK_HEC_URL} splunk-verify-connection: "false" tag: "{{`{{.ImageName}} {{.Name}} {{.FullID}}`}}"
Improve searchability of docker config
:abc: Improve searchability of docker config
YAML
mit
nhsuk/gp-finder,nhsuk/gp-finder
203ac528071ae71b95be1e5a32171c4001c5c168
actions/workroom_puppet_st2_ci_setup.meta.yaml
actions/workroom_puppet_st2_ci_setup.meta.yaml
--- name: "workroom_puppet_st2_ci_setup" runner_type: "action-chain" description: "Tests st2express deployment script that is used in st2workroom" enabled: true entry_point: "workflows/workroom_puppet_st2_ci_setup.yaml" parameters: build_host: type: "string" description: "Host where this workflow would run" workroom_repo: type: "string" description: "Url of the workroom repo to clone" default: "https://github.com/StackStorm/st2workroom.git" workroom_clone_branch: type: "string" description: "The branch of st2workroom to use." default: "master" workroom_target_branch: type: "string" description: "Branch to push st2workroom modified code to." default: "master" puppet_st2_branch: type: "string" description: "The branch of st2workroom to bootstrap" default: "master" puppet_st2_repo: type: "string" description: "Url of the puppet_st2 repo to clone" default: "https://github.com/StackStorm/puppet-st2.git"
--- name: "workroom_puppet_st2_ci_setup" runner_type: "action-chain" description: "Tests st2express deployment script that is used in st2workroom" enabled: true entry_point: "workflows/workroom_puppet_st2_ci_setup.yaml" parameters: build_host: type: "string" description: "Host where this workflow would run" workroom_repo: type: "string" description: "Url of the workroom repo to clone" default: "https://github.com/StackStorm/st2workroom.git" workroom_clone_branch: type: "string" description: "The branch of st2workroom to use." default: "master" workroom_target_branch: type: "string" description: "Branch to push st2workroom modified code to." default: "master_test" puppet_st2_branch: type: "string" description: "The branch of st2workroom to bootstrap" default: "master" puppet_st2_repo: type: "string" description: "Url of the puppet_st2 repo to clone" default: "https://github.com/StackStorm/puppet-st2.git"
Modify the default value for workroom_target_branch
Modify the default value for workroom_target_branch
YAML
apache-2.0
StackStorm/st2cd,StackStorm/st2cd
5208fd5aae9341e252d31047436dd05351f5669b
_data/socialmedia.yml
_data/socialmedia.yml
- name: GitHub url: https://github.com/librarycarpentry class: fa-github title: "Library Carpentry GitHub" - name: Twitter url: https://twitter.com/libcarpentry class: fa-twitter title: "Library Carpentry Twitter" - name: Gitter url: https://gitter.im/LibraryCarpentry/Lobby class: fa-gitter title: "Library Carpentry Gitter" - name: Topicbox url: https://carpentries.topicbox.com/groups/discuss-library-carpentry class: fa-arrow title: "Discuss Library Carpentry Topicbox" - name: Connect url: https://librarycarpentry.org/contact/ class: fa-question-circle title: "Connect with Library Carpentry"
- name: GitHub url: https://github.com/librarycarpentry class: fa-github title: "Library Carpentry GitHub" - name: Twitter url: https://twitter.com/libcarpentry class: fa-twitter title: "Library Carpentry Twitter" - name: Connect url: https://librarycarpentry.org/contact/ class: fa-gitter title: "Connect with Library Carpentry"
Use Gitter logo for Connect logo/link
Use Gitter logo for Connect logo/link
YAML
mit
LibraryCarpentry/librarycarpentry.github.io,LibraryCarpentry/librarycarpentry.github.io,LibraryCarpentry/librarycarpentry.github.io
0b3651e6ed43779b289762a9f5fc4950814ea88f
playbooks/roles/mlapi/vars/main.yml
playbooks/roles/mlapi/vars/main.yml
mlapi_source_repo: [email protected]:edx/ml-service-api.git ml_source_repo: [email protected]:edx/machine-learning.git ml_dir: $app_base_dir/machine-learning ml_api_dir: $app_base_dir/ml-service-api ml_api_settings: ml_service_api.settings nltk_data_dir: /usr/share/nltk_data remote_user: ubuntu ml_branch: master ml_api_branch: dev nginx_listen_port: 80
mlapi_source_repo: [email protected]:edx/ml-service-api.git ml_source_repo: [email protected]:edx/machine-learning.git ml_dir: $app_base_dir/machine-learning ml_api_dir: $app_base_dir/ml-service-api ml_api_settings: ml_service_api.aws nltk_data_dir: /usr/share/nltk_data remote_user: ubuntu ml_branch: master ml_api_branch: dev nginx_listen_port: 80
Set default deployment settings to aws
Set default deployment settings to aws
YAML
agpl-3.0
kursitet/configuration,Softmotions/configuration,hmcmooc/ec2-edx-configuration,Pieros/configuration,arbrandes/edx-configuration,louyihua/configuration,4eek/configuration,gsehub/configuration,rue89-tech/configuration,B-MOOC/configuration,kencung/configuration,arbrandes/edx-configuration,pobrejuanito/configuration,chenshuchuan/configuration,open-craft/configuration,UXE/edx-configuration,yrchen/configuration,hks-epod/configuration,hks-epod/configuration,negritobomb/edxplat,gsehub/configuration,pdehaye/theming-configuration,edx/configuration,alu042/configuration,beacloudgenius/configuration,joshhu/configuration,jorgeomarmh/configuration,michaelsteiner19/open-edx-configuration,antshin72/configuration,usernamenumber/configuration,IndonesiaX/configuration,jp-bpl/configuration,pedrorib/istx,michaelsteiner19/open-edx-configuration,AlfiyaZi/configuration,armaan/edx-configuration,jorgeomarmh/configuration,kencung/configuration,negritobomb/edxplat,cecep-edu/configuration,open-craft/configuration,arifsetiawan/configuration,kmoocdev/configuration,IONISx/edx-configuration,nikolas/configuration,louyihua/configuration,louyihua/configuration,arifsetiawan/configuration,omarkhan/configuration,antoviaque/configuration,proversity-org/configuration,mitodl/configuration,xiangjf/configuration,Stanford-Online/configuration,appsembler/configuration,gsehub/configuration,appsembler/configuration,fghaas/edx-configuration,chenshuchuan/configuration,Pieros/configuration,CredoReference/configuration,gsehub/configuration,open-craft/configuration,proversity-org/configuration,B-MOOC/configuration,marcore/configuration,AlfiyaZi/configuration,sudheerchintala/LearnEra-Configuration,CredoReference/configuration,cyanna/configuration,armaan/edx-configuration,UXE/edx-configuration,ovnicraft/evex-configuration,chudaol/configuration,antshin72/configuration,eduStack/configuration,nikolas/configuration,Livit/Livit.Learn.EdX.configuration,kmoocdev/configuration,openfun/configuration,bugcy013/edx_infra,michaelsteiner19/open-edx-configuration,fghaas/edx-configuration,alu042/configuration,sudheerchintala/LearnEra-Configuration,antshin72/configuration,edx/configuration,jorgeomarmh/configuration,marcore/configuration,kmoocdev/configuration,openfun/configuration,LearnEra/LearnEra-Configuration,glengal/configuration,vasyarv/configuration,usernamenumber/configuration,omarkhan/configuration,arbrandes/edx-configuration,gashac03/ubuntu,Carlos2005/configuration,omarkhan/configuration,cyanna/configuration,EDUlib/configuration,Carlos2005/configuration,eduStack/configuration,beacloudgenius/configuration,chudaol/configuration,yrchen/configuration,pedrorib/istx,pobrejuanito/configuration,xiangjf/configuration,lgfa29/configuration,4eek/configuration,chenshuchuan/configuration,leansoft/configuration,jp-bpl/configuration,LearnEra/LearnEra-Configuration,Livit/Livit.Learn.EdX.configuration,hks-epod/configuration,hastexo/edx-configuration-old,kencung/configuration,openfun/configuration,EDUlib/configuration,knehez/configuration,glengal/configuration,stvstnfrd/configuration,hastexo/edx-configuration-old,Softmotions/configuration,Livit/Livit.Learn.EdX.configuration,antoviaque/configuration,open-craft/configuration,hmcmooc/ec2-edx-configuration,Livit/Livit.Learn.EdX.configuration,usernamenumber/configuration,Stanford-Online/configuration,pobrejuanito/configuration,glengal/configuration,hks-epod/configuration,Unow/configuration,fghaas/edx-configuration,yrchen/configuration,armaan/edx-configuration,chudaol/configuration,ovnicraft/evex-configuration,bugcy013/edx_infra,hastexo/edx-configuration,Unow/configuration,antoviaque/configuration,knehez/configuration,jp-bpl/configuration,zhengjunwei/configuration,zhengjunwei/configuration,gashac03/ubuntu,jp-bpl/configuration,UXE/edx-configuration,knehez/configuration,apigee/edx-configuration,Unow/configuration,Pieros/configuration,proversity-org/configuration,arbrandes/edx-configuration,knehez/configuration,eduStack/configuration,cyanna/configuration,hastexo/edx-configuration,usernamenumber/configuration,Carlos2005/configuration,bugcy013/edx_infra,EDUlib/configuration,rue89-tech/configuration,Softmotions/configuration,edx/configuration,jp-bpl/configuration,vasyarv/configuration,xiangjf/configuration,hastexo/edx-configuration-old,rue89-tech/configuration,IndonesiaX/configuration,antshin72/configuration,IONISx/edx-configuration,omarkhan/configuration,hmcmooc/ec2-edx-configuration,pdehaye/theming-configuration,kursitet/configuration,marcore/configuration,antoviaque/configuration,mitodl/configuration,arbrandes/edx-configuration,nttks/configuration,rue89-tech/configuration,EDUlib/configuration,leansoft/configuration,stvstnfrd/configuration,arifsetiawan/configuration,beacloudgenius/configuration,cyanna/configuration,AlfiyaZi/configuration,lgfa29/configuration,Carlos2005/configuration,stvstnfrd/configuration,gashac03/ubuntu,EDUlib/configuration,pdehaye/theming-configuration,gashac03/ubuntu,negritobomb/edxplat,pedrorib/istx,chudaol/configuration,rue89-tech/configuration,lgfa29/configuration,alu042/configuration,xiangjf/configuration,apigee/edx-configuration,glengal/configuration,cecep-edu/configuration,appsembler/configuration,nunpa/configuration,bugcy013/edx_infra,4eek/configuration,joshhu/configuration,IONISx/edx-configuration,edx/configuration,armaan/edx-configuration,nttks/configuration,appsembler/configuration,louyihua/configuration,arifsetiawan/configuration,pedrorib/istx,Pieros/configuration,alu042/configuration,CredoReference/configuration,IONISx/edx-configuration,nunpa/configuration,zhengjunwei/configuration,Stanford-Online/configuration,marcore/configuration,nttks/configuration,Stanford-Online/configuration,nunpa/configuration,4eek/configuration,IndonesiaX/configuration,joshhu/configuration,apigee/edx-configuration,Stanford-Online/configuration,fghaas/edx-configuration,vasyarv/configuration,kencung/configuration,CredoReference/configuration,sudheerchintala/LearnEra-Configuration,nikolas/configuration,kursitet/configuration,kursitet/configuration,hks-epod/configuration,Softmotions/configuration,mitodl/configuration,jorgeomarmh/configuration,UXE/edx-configuration,vasyarv/configuration,leansoft/configuration,nttks/configuration,joshhu/configuration,michaelsteiner19/open-edx-configuration,nunpa/configuration,cecep-edu/configuration,zhengjunwei/configuration,stvstnfrd/configuration,openfun/configuration,B-MOOC/configuration,hastexo/edx-configuration,IndonesiaX/configuration,negritobomb/edxplat,ovnicraft/evex-configuration,hastexo/edx-configuration,beacloudgenius/configuration,kmoocdev/configuration,yrchen/configuration,leansoft/configuration,pobrejuanito/configuration,hastexo/edx-configuration,hastexo/edx-configuration-old,mitodl/configuration,proversity-org/configuration,stvstnfrd/configuration,gsehub/configuration,proversity-org/configuration,lgfa29/configuration,nikolas/configuration,LearnEra/LearnEra-Configuration,AlfiyaZi/configuration
9a59c9b066c8ab3092b3806a2c622cec4dee1742
metadata/com.brackeys.ui.yml
metadata/com.brackeys.ui.yml
AntiFeatures: - UpstreamNonFree Categories: - Development License: Apache-2.0 AuthorName: massivemadness SourceCode: https://github.com/massivemadness/Brackeys-IDE IssueTracker: https://github.com/massivemadness/Brackeys-IDE/issues Changelog: https://github.com/massivemadness/Brackeys-IDE/releases AutoName: Brackeys IDE RepoType: git Repo: https://github.com/massivemadness/Brackeys-IDE Builds: - versionName: 2020.3.1 versionCode: 10002 commit: b058f65e73797e7bdf454c0baff87a3eeafc495a subdir: app patch: - remove_playcore.patch gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags ^([0-9]+\.*)+$ CurrentVersion: 2020.3.1 CurrentVersionCode: 10002
AntiFeatures: - UpstreamNonFree Categories: - Development License: Apache-2.0 AuthorName: massivemadness SourceCode: https://github.com/massivemadness/Brackeys-IDE IssueTracker: https://github.com/massivemadness/Brackeys-IDE/issues Changelog: https://github.com/massivemadness/Brackeys-IDE/releases AutoName: Brackeys IDE RepoType: git Repo: https://github.com/massivemadness/Brackeys-IDE Builds: - versionName: 2020.3.1 versionCode: 10002 commit: b058f65e73797e7bdf454c0baff87a3eeafc495a subdir: app patch: - remove_playcore.patch gradle: - yes - versionName: 2021.1.0 versionCode: 10003 commit: 2021.1.0 subdir: app patch: - remove_playcore.patch gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags ^([0-9]+\.*)+$ CurrentVersion: 2021.1.0 CurrentVersionCode: 10003
Update Brackeys IDE to 2021.1.0 (10003)
Update Brackeys IDE to 2021.1.0 (10003)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
2b503876bd6fbe97fea7a8a93cf88347d4e5da88
deploy/static_site/source/_data/links.yml
deploy/static_site/source/_data/links.yml
- url: "https://stemcamp.aurorak12.org/" title: "STEM Summer Camp Homepage" - url: "https://projecteuler.net/" title: "Project Euler"
- url: "https://stemcamp.aurorak12.org/" title: "STEM Summer Camp Homepage" - url: "https://github.com/jamesfolberth/jupyterhub_AWS_deployment/tree/master/notebooks" title: "Jupyter Notebooks GitHub Repo" - url: "https://projecteuler.net/" title: "Project Euler"
Add link to repo on static site
Add link to repo on static site
YAML
bsd-3-clause
jamesfolberth/jupyterhub_AWS_deployment,jamesfolberth/jupyterhub_AWS_deployment,jamesfolberth/jupyterhub_AWS_deployment,jamesfolberth/NGC_STEM_camp_AWS,jamesfolberth/jupyterhub_AWS_deployment,jamesfolberth/NGC_STEM_camp_AWS
07f81f520458c444174debe2949cdba558369b17
records/projects/host_lpc11u35.yaml
records/projects/host_lpc11u35.yaml
common: target: - lpc11u35-501 macros: - INTERFACE_LPC11U35 - DAPLINK_HDK_ID=0x646c0002 # DAPLINK_HDK_ID_LPC11U35 includes: - source/common/cmsis-core/nxp/lpc11u35 - source/common/hal/nxp/lpc11u35 sources: host: - source/common/cmsis-core/nxp/lpc11u35 - source/common/cmsis-core/nxp/lpc11u35/armcc - source/common/hal/nxp/lpc11u35
common: target: - lpc11u35_501 macros: - INTERFACE_LPC11U35 - DAPLINK_HDK_ID=0x646c0002 # DAPLINK_HDK_ID_LPC11U35 includes: - source/common/cmsis-core/nxp/lpc11u35 - source/common/hal/nxp/lpc11u35 sources: host: - source/common/cmsis-core/nxp/lpc11u35 - source/common/cmsis-core/nxp/lpc11u35/armcc - source/common/hal/nxp/lpc11u35
Fix yaml to work with the latest pgen defs
Fix yaml to work with the latest pgen defs Rename lpc11u35-501 to lpc11u35_501 to match changes made in project-generator-definitions version 2.1.
YAML
apache-2.0
google/DAPLink-port,google/DAPLink-port,sg-/DAPLink,google/DAPLink-port,google/DAPLink-port,sg-/DAPLink,sg-/DAPLink
c7de054c69b1d08cddf0225f848bfeb4269e91e7
roles/interactive/tasks/jupyter.yml
roles/interactive/tasks/jupyter.yml
--- - name: pip3 install python packages pip: name: "{{ item }}" state: latest executable: pip3 with_items: # upgrade pip - pip - notebook - jupyter - jupyterhub - bash_kernel tags: jupyter - name: install configurable-http-proxy for jupyterhub npm: name: configurable-http-proxy executable: "{{ apps_dir }}/node-{{ nodejs_version }}/npm" path: "{{ source_dir }}/node-{{ nodejs_version }}-linux-x64/lib/node_modules" # path: "{{ source_dir }}" state: latest #global: yes tags: jupyter # TODO: Create a config for Jupyterhub, with SSL keys: https://github.com/jupyterhub/jupyterhub # Setup Jupyterhub to run as a non-privileged user: https://github.com/jupyterhub/jupyterhub/wiki/Using-sudo-to-run-JupyterHub-without-root-privileges # Run jupyterhub under supervisord - name: temporal debug message re npm install -g configurable-http-proxy debug: msg: "To start jupyterhub: \n sudo -s \n source /etc/profile \n export PATH=/mnt/software/source/node-v6.9.1-linux-x64/lib/node_modules/configurable-http-proxy/bin:$PATH \n module use /mnt/software/modules/extra \n module load node \n jupyterhub -f config.py" tags: jupyter
--- - name: pip3 install python packages pip: name: "{{ item }}" state: latest executable: pip3 with_items: # upgrade pip - pip - notebook - jupyter - jupyterhub - bash_kernel tags: jupyter - name: install configurable-http-proxy for jupyterhub npm: name: configurable-http-proxy executable: "{{ apps_dir }}/node-{{ nodejs_version }}/npm" path: "{{ source_dir }}/node-{{ nodejs_version }}-linux-x64/lib/node_modules" # path: "{{ source_dir }}" state: latest #global: yes tags: jupyter # TODO: Create a config for Jupyterhub, with SSL keys: https://github.com/jupyterhub/jupyterhub # Setup Jupyterhub to run as a non-privileged user: https://github.com/jupyterhub/jupyterhub/wiki/Using-sudo-to-run-JupyterHub-without-root-privileges # Run jupyterhub under supervisord - name: temporal debug message re npm install -g configurable-http-proxy debug: msg: "To start jupyterhub: \n sudo -s \n source /etc/profile \n export PATH=/mnt/software/source/node-{{ nodejs_version }}-linux-x64/lib/node_modules/configurable-http-proxy/bin:$PATH \n module use /mnt/software/modules/extra \n module load node \n jupyterhub -f config.py" tags: jupyter
Fix Jupyter to use specified nodejs version.
Fix Jupyter to use specified nodejs version.
YAML
apache-2.0
MonashBioinformaticsPlatform/bio-ansible,MonashBioinformaticsPlatform/bio-ansible,MonashBioinformaticsPlatform/bio-ansible,MonashBioinformaticsPlatform/bio-ansible,MonashBioinformaticsPlatform/bio-ansible
ecd125ca8ffa9b11a3e85035e1d6e9988984920d
Configuration/NodeTypes.RootPage.yaml
Configuration/NodeTypes.RootPage.yaml
'Shel.NeosBase:RootPage': superTypes: 'Neos.NodeTypes:Page': true ui: label: i18n
'Shel.NeosBase:RootPage': superTypes: 'Neos.NodeTypes:Page': true ui: label: i18n icon: 'icon-globe'
Add icon for rootpage type
TASK: Add icon for rootpage type
YAML
mit
Sebobo/Shel.NeosBase,Sebobo/Shel.NeosBase
a7e2cd5283480db5421153c3404969100d336342
other_repos.yaml
other_repos.yaml
repos: repo_paths: # openstack git repos git://github.com/puppetlabs/puppetlabs-nova: nova git://github.com/puppetlabs/puppetlabs-glance: glance git://github.com/puppetlabs/puppetlabs-swift: swift git://github.com/puppetlabs/puppetlabs-keystone: keystone git://github.com/puppetlabs/puppetlabs-horizon: horizon # openstack middleware git://github.com/puppetlabs/puppetlabs-rabbitmq: rabbitmq git://github.com/puppetlabs/puppetlabs-mysql: mysql git://github.com/puppetlabs/puppetlabs-git: git git://github.com/puppetlabs/puppetlabs-vcsrepo: vcsrepo git://github.com/saz/puppet-memcached: memcached git://github.com/puppetlabs/puppetlabs-rsync: rsync # other deps git://github.com/ghoneycutt/puppet-xinetd: xinetd git://github.com/saz/puppet-ssh: ssh git://github.com/puppetlabs/puppetlabs-stdlib: stdlib git://github.com/puppetlabs/puppetlabs-apt: apt git://github.com/ripienaar/puppet-concat: concat checkout_branches: # keystone: dev # glance: dev # nova: dev
# modulepath: /etc/puppet/modules repos: repo_paths: # openstack git repos git://github.com/puppetlabs/puppetlabs-nova: nova git://github.com/puppetlabs/puppetlabs-glance: glance git://github.com/puppetlabs/puppetlabs-swift: swift git://github.com/puppetlabs/puppetlabs-keystone: keystone git://github.com/puppetlabs/puppetlabs-horizon: horizon # openstack middleware git://github.com/puppetlabs/puppetlabs-rabbitmq: rabbitmq git://github.com/puppetlabs/puppetlabs-mysql: mysql git://github.com/puppetlabs/puppetlabs-git: git git://github.com/puppetlabs/puppetlabs-vcsrepo: vcsrepo git://github.com/saz/puppet-memcached: memcached git://github.com/puppetlabs/puppetlabs-rsync: rsync # other deps git://github.com/ghoneycutt/puppet-xinetd: xinetd git://github.com/saz/puppet-ssh: ssh git://github.com/puppetlabs/puppetlabs-stdlib: stdlib git://github.com/puppetlabs/puppetlabs-apt: apt git://github.com/ripienaar/puppet-concat: concat checkout_branches: # keystone: dev # glance: dev # nova: dev
Add example usage of modulepath
Add example usage of modulepath
YAML
apache-2.0
CiscoSystems/puppet-openstack,stratustech/puppet-openstack-OLD,bodepd/puppetlabs-openstack
1f59477e15dd70051fe6ba1bc90b6767174b4630
tasks/debian/main.yml
tasks/debian/main.yml
--- # file: oracle-java/tasks/debian/main.yml # # Task file to install Oracle Java Development Kit in a system with a Debian based Linux distribution. # - name: accept Oracle license shell: "echo oracle-java{{ oracle_java_version }}-installer shared/accepted-oracle-license-v1-1 select true | sudo /usr/bin/debconf-set-selections" changed_when: no sudo: yes - name: ensure Java is installed apt: name="oracle-java{{ oracle_java_version }}-installer" state={{ oracle_java_state }} cache_valid_time={{ oracle_java_cache_valid_time }} register: oracle_java_task_apt_install sudo: yes - name: set Java version as default apt: name="oracle-java{{ oracle_java_version }}-set-default" state=latest register: oracle_java_task_set_default when: oracle_java_set_as_default sudo: yes when: oracle_java_set_as_default - name: in case there were changes, check host environment again include: ../check_environment.yml when: oracle_java_task_apt_install|changed or oracle_java_task_set_default|changed
--- # file: oracle-java/tasks/debian/main.yml # # Task file to install Oracle Java Development Kit in a system with a Debian based Linux distribution. # - name: accept Oracle license shell: "echo oracle-java{{ oracle_java_version }}-installer shared/accepted-oracle-license-v1-1 select true | sudo /usr/bin/debconf-set-selections" changed_when: no sudo: yes - name: ensure Java is installed apt: name="oracle-java{{ oracle_java_version }}-installer" state={{ oracle_java_state }} cache_valid_time={{ oracle_java_cache_valid_time }} register: oracle_java_task_apt_install sudo: yes - name: set Java version as default apt: name="oracle-java{{ oracle_java_version }}-set-default" state=latest register: oracle_java_task_set_default when: oracle_java_set_as_default sudo: yes - name: in case there were changes, check host environment again include: ../check_environment.yml when: oracle_java_task_apt_install|changed or oracle_java_task_set_default|changed
Remove duplicate when condition for debian task.
Remove duplicate when condition for debian task.
YAML
bsd-3-clause
intuitio/oracle-java,cyfdecyf/oracle-java,cyfdecyf/oracle-java,ansiblebit/oracle-java,ansiblebit/oracle-java,intuitio/oracle-java,cyfdecyf/oracle-java,ansiblebit/oracle-java,intuitio/oracle-java
03c7bf40cba105ac4305cbae94d3131b211563bf
bundles/base/setup.yml
bundles/base/setup.yml
# Data Science Toolbox base setup --- - hosts: 127.0.0.1 sudo: yes connection: local vars: - ipython_pem_file: "/home/{{ dst_username }}/.ssh/ipython_dst.pem" vars_prompt: - name: "ipython_password" prompt: "IPython notebook password" private: yes confirm: yes tasks: - name: Encrypt password shell: ./passwd.py {{ ipython_password }} - name: Load password include_vars: passwd_hash.yml - name: Make sure that the notebooks directory exists file: path=/home/{{ dst_username }}/notebooks state=directory owner={{ dst_username }} group={{ dst_username }} - name: Create IPython profile shell: "ipython profile create dst --ipython-dir=/home/{{ dst_username }}/.ipython" - name: Remove password file shell: rm passwd_hash.yml - name: Create self-signed SSL certificate shell: openssl req -x509 -nodes -days 365 -newkey rsa:1024 -keyout {{ ipython_pem_file }} -out {{ ipython_pem_file }} -batch - name: Update IPython configuration template: src=ipython_notebook_config.py.j2 dest=/home/{{ dst_username }}/.ipython/profile_dst/ipython_notebook_config.py owner={{ dst_username }} group={{ dst_username }} mode=0644 backup=true - name: IPython -- Change IPython owner. file: path=/home/{{ dst_username }} /.ipython owner={{ dst_username }} recurse=yes state=directory
# Data Science Toolbox base setup --- - hosts: 127.0.0.1 sudo: yes connection: local vars: - ipython_pem_file: "/home/{{ dst_username }}/.ssh/ipython_dst.pem" vars_prompt: - name: "ipython_password" prompt: "IPython notebook password" private: yes confirm: yes tasks: - name: Encrypt password shell: ./passwd.py {{ ipython_password }} - name: Load password include_vars: passwd_hash.yml - name: Make sure that the notebooks directory exists file: path=/home/{{ dst_username }}/notebooks state=directory owner={{ dst_username }} group={{ dst_username }} - name: Create IPython profile shell: "ipython profile create dst --ipython-dir=/home/{{ dst_username }}/.ipython" - name: Remove password file shell: rm passwd_hash.yml - name: Create self-signed SSL certificate shell: openssl req -x509 -nodes -days 365 -newkey rsa:1024 -keyout {{ ipython_pem_file }} -out {{ ipython_pem_file }} -batch - name: Update IPython configuration template: src=ipython_notebook_config.py.j2 dest=/home/{{ dst_username }}/.ipython/profile_dst/ipython_notebook_config.py owner={{ dst_username }} group={{ dst_username }} mode=0644 backup=true - name: Change owner file: path=/home/{{ dst_username }} state=directory owner={{ dst_username }} group={{ dst_username }} recurse=yes
Change owner of home directory
Change owner of home directory
YAML
bsd-2-clause
jljones/data-science-toolbox,DataScienceToolbox/data-science-toolbox,Rafeh01/data-science-toolbox,Rafeh01/data-science-toolbox,tkamag/data-science-toolbox,Rafeh01/data-science-toolbox,DanteChavez/DataScienceToolbox,DanteChavez/DataScienceToolbox,DataScienceToolbox/data-science-toolbox,tkamag/data-science-toolbox,jljones/data-science-toolbox,DanteChavez/DataScienceToolbox,tkamag/data-science-toolbox,jljones/data-science-toolbox,DataScienceToolbox/data-science-toolbox
5a997cf88b3cd8eeb8bf86bc260d6ebd9e11ba30
packages/la/Lazy-Pbkdf2.yaml
packages/la/Lazy-Pbkdf2.yaml
homepage: '' changelog-type: '' hash: ea648d2bbcded61508aa2a82aa36e47abe9210302c5329020b6b086f1e60d44f test-bench-deps: bytestring: -any base: ==4.* criterion: -any memory: -any binary: -any cryptonite: -any byteable: -any base16-bytestring: -any maintainer: Marcus Ofenhed <[email protected]> synopsis: Lazy PBKDF2 generator. changelog: '' basic-deps: bytestring: -any base: ! '>=4 && <5' binary: -any all-versions: - '1.0.0' - '1.0.1' - '1.0.2' - '2.1.0' - '2.1.1' - '2.1.2' - '3.0.0' - '3.1.0' author: Marcus Ofenhed <[email protected]> latest: '3.1.0' description-type: haddock description: ! 'A PBKDF2 generator that generates either a lazy ByteString of PRNG data or a lazy list of strict ByteStrings.' license-name: MIT
homepage: '' changelog-type: '' hash: 2d050ddf3f9ececf831216e1e82fdee32f002ac764e29d7e38c0abd5ea5c03c7 test-bench-deps: bytestring: -any base: ==4.* criterion: -any memory: -any binary: -any cryptonite: -any byteable: -any base16-bytestring: -any maintainer: Marcus Ofenhed <[email protected]> synopsis: Lazy PBKDF2 generator. changelog: '' basic-deps: bytestring: -any base: ! '>=4 && <5' binary: -any all-versions: - '1.0.0' - '1.0.1' - '1.0.2' - '2.1.0' - '2.1.1' - '2.1.2' - '3.0.0' - '3.1.0' - '3.1.1' author: Marcus Ofenhed <[email protected]> latest: '3.1.1' description-type: haddock description: ! 'A PBKDF2 generator that generates either a lazy ByteString or a list of strict ByteStrings of PRNG.' license-name: MIT
Update from Hackage at 2017-11-14T07:07:26Z
Update from Hackage at 2017-11-14T07:07:26Z
YAML
mit
commercialhaskell/all-cabal-metadata
0215e329825906c92602690bd6a72304c2f81b67
.forestry/settings.yml
.forestry/settings.yml
--- new_page_extension: md auto_deploy: true admin_path: '' webhook_url: sections: - type: heading label: Content - type: jekyll-posts label: News create: all templates: - post - type: directory path: _articles label: Articles create: all match: "*" templates: - project - type: directory path: _instructions label: Instructions create: all match: "**/*" templates: - instruction - type: directory path: _teams label: Teams create: all match: "*" templates: - unit - type: directory path: _people label: People create: all match: "**/*" templates: - person - type: jekyll-pages label: Pages create: all templates: - landing-page - default - type: document path: _data/information.yml label: Contact Information upload_dir: uploads public_path: "/uploads" front_matter_path: '' use_front_matter_path: false file_template: ":year:/:month:/:day:/:filename:"
--- new_page_extension: md auto_deploy: true admin_path: '' webhook_url: sections: - type: heading label: Content - type: jekyll-posts label: News create: all templates: - post - type: directory path: _articles label: Articles create: all match: "*" templates: - project - type: directory path: _instructions label: Instructions create: all match: "**/*" templates: - instruction - type: directory path: _teams label: Teams create: all match: "*" templates: - unit - type: directory path: _people label: People create: all match: "**/*" templates: - person - type: jekyll-pages label: Pages create: all templates: - landing-page - default - type: document path: _data/information.yml label: Contact Information - type: document path: _data/faq.yml label: FAQ Doc match: "**/*" read_only: false upload_dir: uploads public_path: "/uploads" front_matter_path: '' use_front_matter_path: false file_template: ":year:/:month:/:day:/:filename:"
Update from Forestry.io - Updated Forestry configuration
Update from Forestry.io - Updated Forestry configuration
YAML
mit
panoptes/panoptes.github.io,panoptes/panoptes.github.io,panoptes/panoptes.github.io
91ff69e3edf3e76736eff586f57051f67078f7b6
manifest.yml
manifest.yml
--- applications: - name: ecs-cloud-launch-demo memory: 512M instances: 3 path: target/ecs-cloud-launch-demo-1.0.0.war timeout: 60 services: - cc - jenkins - github
--- applications: - name: ecs-cloud-launch-demo memory: 512M instances: 2 path: target/ecs-cloud-launch-demo-1.0.0.war timeout: 60 services: - cc - jenkins - github
Reduce num instances from 3 to 2
Reduce num instances from 3 to 2
YAML
apache-2.0
mdcarlson/cloud-launch-demo-stackato,mdcarlson/cloud-launch-demo-stackato
f7f0f6ff1ef088e91032a9f36995998e8172bd8c
playbooks/group_vars/all.yml
playbooks/group_vars/all.yml
# Copyright (c) 2015-2018 Agalmic Ventures LLC (www.agalmicventures.com) # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. apt_cache_valid_time: 7200 is_digital_ocean: "{{ ansible_system_vendor == 'DigitalOcean' }}" #NOTE: This check is to work around issues where ansible_virtualization_role is #incorrectly identified is_virtual_machine: "{{ ansible_virtualization_role == 'guest' or is_digital_ocean }}" is_physical_machine: "{{ not is_virtual_machine }}"
# Copyright (c) 2015-2018 Agalmic Ventures LLC (www.agalmicventures.com) # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. apt_cache_valid_time: 7200 is_digital_ocean: "{{ ansible_system_vendor == 'DigitalOcean' }}" #NOTE: This check is to work around issues where ansible_virtualization_role is #incorrectly identified is_virtual_machine: "{{ (ansible_virtualization_role is defined and ansible_virtualization_role == 'guest') or is_digital_ocean }}" is_physical_machine: "{{ not is_virtual_machine }}"
Fix issue detecting virtualization in ansibble playbooks for some hosts
Fix issue detecting virtualization in ansibble playbooks for some hosts
YAML
mit
AgalmicVentures/Environment,AgalmicVentures/Environment,AgalmicVentures/Environment
a00bd2f51d1c3bf2441bfb5813ad541f249f4e77
jenkins/jobs/deb-openstack-pkg-tools.yaml
jenkins/jobs/deb-openstack-pkg-tools.yaml
- job: name: pkgdeb-build-openstack-pkg-tools node: debian-jessie wrappers: - build-timeout: timeout: 30 - timestamps builders: - gerrit-git-prep - shell: | #!/bin/bash set -x set -e sudo cp ${WORKSPACE}/build-tools/pkgos-infra-install-sbuild /usr/sbin sudo chmod +x /usr/sbin/pkgos-infra-install-sbuild sudo cp ${WORKSPACE}/build-tools/pkgos-infra-build-pkg /usr/bin sudo chmod +x /usr/bin/pkgos-infra-build-pkg sudo pkgos-infra-install-sbuild pkgos-infra-build-pkg publishers: - console-log - job: name: pkgdeb-publish-openstack-pkg-tools node: debian-jessie wrappers: - build-timeout: timeout: 30 - timestamps builders: - gerrit-git-prep - shell: | #!/bin/bash set -x set -e sudo cp ${WORKSPACE}/build-tools/pkgos-infra-install-sbuild /usr/sbin sudo chmod +x /usr/sbin/pkgos-infra-install-sbuild sudo cp ${WORKSPACE}/build-tools/pkgos-infra-build-pkg /usr/bin sudo chmod +x /usr/bin/pkgos-infra-build-pkg sudo pkgos-infra-install-sbuild pkgos-infra-build-pkg publishers: - deb-pkgs - console-log
- job: name: pkgdeb-build-openstack-pkg-tools node: debian-jessie wrappers: - build-timeout: timeout: 30 - timestamps builders: - gerrit-git-prep - shell: | #!/bin/bash set -x set -e sudo cp ${WORKSPACE}/build-tools/pkgos-infra-install-sbuild /usr/sbin sudo chmod +x /usr/sbin/pkgos-infra-install-sbuild sudo cp ${WORKSPACE}/build-tools/pkgos-infra-build-pkg /usr/bin sudo chmod +x /usr/bin/pkgos-infra-build-pkg sudo pkgos-infra-install-sbuild pkgos-infra-build-pkg publishers: - console-log - job: name: pkgdeb-publish-openstack-pkg-tools node: debian-jessie wrappers: - build-timeout: timeout: 30 - timestamps builders: - gerrit-git-prep - shell: | #!/bin/bash set -x set -e sudo cp ${WORKSPACE}/build-tools/pkgos-infra-install-sbuild /usr/sbin sudo chmod +x /usr/sbin/pkgos-infra-install-sbuild sudo cp ${WORKSPACE}/build-tools/pkgos-infra-build-pkg /usr/bin sudo chmod +x /usr/bin/pkgos-infra-build-pkg sudo pkgos-infra-install-sbuild pkgos-infra-build-pkg publishers: - deb-pkgs: project: openstack-pkg-tools - console-log
Fix upload path to tarballs.o.o for packaging
Fix upload path to tarballs.o.o for packaging Previously, we attempted to use tarballs/{project}/ for the upload of built packages after a merge, but {project} wasn't expanded. This patch fixes that by adding project: openstack-pkg-tools in the pkgdeb-publish-openstack-pkg-tools job definition indented immediately below the "publisher: deb-pkgs" line. Change-Id: I526977199a68212fe7fc7e5d1d0325af6558a8e9
YAML
apache-2.0
openstack-infra/project-config,Tesora/tesora-project-config,openstack-infra/project-config,dongwenjuan/project-config,Tesora/tesora-project-config,dongwenjuan/project-config
c54b1ee2874fd5eb465106a9434ac33717d35402
stack.yaml
stack.yaml
resolver: lts-6.12 packages: - location: . - location: git: https://github.com/aelve/cmark-sections commit: 559a992334adb7348072c7cf7d030787a41050ce extra-dep: true - location: git: https://github.com/neongreen/hs-webdriver commit: 5a6be4720bd7c64d24c2b9d8807cb1377115e6da extra-dep: true - location: git: https://github.com/aelve/stache-plus commit: a12f7edf9c034a01d5da466b212b3f9c0253b1f4 extra-dep: true extra-deps: - cmark-highlight-0.2.0.0 - friendly-time-0.4 - ilist-0.2.0.0 - text-all-0.3.0.1 - text-show-3.3 - megaparsec-5.0.1 - http-client-0.5.1 - generic-deriving-1.10.7 flags: generic-deriving: base-4-9: false text-show: base-4-9: false template-haskell-2-11: false new-functor-classes: false
resolver: lts-6.14 packages: - location: . - location: git: https://github.com/aelve/cmark-sections commit: 559a992334adb7348072c7cf7d030787a41050ce extra-dep: true - location: git: https://github.com/neongreen/hs-webdriver commit: 5a6be4720bd7c64d24c2b9d8807cb1377115e6da extra-dep: true - location: git: https://github.com/aelve/stache-plus commit: a12f7edf9c034a01d5da466b212b3f9c0253b1f4 extra-dep: true extra-deps: - cmark-highlight-0.2.0.0 - friendly-time-0.4 - ilist-0.2.0.0 - text-all-0.3.0.1 - text-show-3.3 - megaparsec-5.0.1 - http-client-0.5.1 - generic-deriving-1.10.7 flags: generic-deriving: base-4-9: false text-show: base-4-9: false template-haskell-2-11: false new-functor-classes: false
Switch to a newer Stackage snapshot
Switch to a newer Stackage snapshot
YAML
bsd-3-clause
aelve/guide,aelve/guide,aelve/guide,aelve/guide,aelve/hslibs
0df066117d97d36ea7eabb171e9ad5939aa2b7d4
metadata/com.ultramegasoft.flavordex2.yml
metadata/com.ultramegasoft.flavordex2.yml
Categories: - Writing License: MIT WebSite: http://ultramegasoft.com SourceCode: https://github.com/ultramega/flavordex IssueTracker: https://github.com/ultramega/flavordex/issues Changelog: https://github.com/ultramega/flavordex/blob/HEAD/CHANGELOG.md AutoName: Flavordex RepoType: git Repo: https://github.com/ultramega/flavordex Builds: - versionName: 2.5.0 versionCode: 21 commit: 2.5.0 subdir: app gradle: - yes - versionName: 2.5.1 versionCode: 22 commit: 2.5.1 subdir: app gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: 2.5.0 CurrentVersionCode: 21
Categories: - Writing License: MIT WebSite: http://ultramegasoft.com SourceCode: https://github.com/ultramega/flavordex IssueTracker: https://github.com/ultramega/flavordex/issues Changelog: https://github.com/ultramega/flavordex/blob/HEAD/CHANGELOG.md AutoName: Flavordex RepoType: git Repo: https://github.com/ultramega/flavordex Builds: - versionName: 2.5.0 versionCode: 21 commit: 2.5.0 subdir: app gradle: - yes - versionName: 2.5.1 versionCode: 22 commit: 2.5.1 subdir: app gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: 2.5.1 CurrentVersionCode: 22
Update CV of Flavordex to 2.5.1 (22)
Update CV of Flavordex to 2.5.1 (22)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
4a2a0af9b839069239e29e1b5ba8492b10a469de
node/package.yaml
node/package.yaml
--- name: _rwstauner_run_control version: 0.0.0 files: [] private: true preferGlobal: true peerDependencies: # cli app bible: x bower: x coffee-script: x # js utilities js-beautify: x jshint: x jslint: x jsonlint: x # lesscss #http://registry.npmjs.org/less/-/less-1.6.3.tgz: ~ less: '>=1.7.0' phantomjs: x requirejs: '>=2.1.2' # require.js "text!" plugin text: x uglify-js: '>=2' yo: x # Define repository to silence npm warning. repository: type: git url: http://github.com/rwstauner/run_control
--- name: _rwstauner_run_control version: 0.0.0 files: [] private: true preferGlobal: true peerDependencies: # cli app bible: x bower: x coffee-script: x # js utilities js-beautify: x jshint: x jslint: x jsonlint: x # lesscss #http://registry.npmjs.org/less/-/less-1.6.3.tgz: ~ less: '>=1.7.0' lodash: x # Customize lodash builds. lodash-cli: x phantomjs: x requirejs: '>=2.1.2' # require.js "text!" plugin text: x underscore: '>=1.6.0' uglify-js: '>=2' yo: x # Define repository to silence npm warning. repository: type: git url: http://github.com/rwstauner/run_control
Install lodash (and underscore) in global node env
Install lodash (and underscore) in global node env
YAML
mit
rwstauner/run_control,rwstauner/run_control,rwstauner/run_control,rwstauner/run_control,rwstauner/run_control
2e53f428e22dc21d3c8814ced4bc6e2ae906bd75
.gitlab-ci.yml
.gitlab-ci.yml
image: quay.io/python-devs/ci-image stages: - test - codecov - deploy qa: script: - tox -e qa tests: script: - tox -e py27,py34,py35,py36,py37,py38 coverage: script: - tox -e py27-cov,py34-cov,py35-cov,py36-cov,py37-cov,py38-cov artifacts: paths: - coverage.xml diffcov: script: - tox -e py27-diffcov,py34-diffcov,py35-diffcov,py36-diffcov,py37-diffcov,py38-diffcov docs: script: - tox -e docs codecov: stage: codecov dependencies: - coverage script: - codecov when: on_success release: stage: deploy only: - /^\d+\.\d+(\.\d+)?([abc]\d*)?$/ script: - tox -e release
image: quay.io/python-devs/ci-image stages: - test - qa - docs - codecov - deploy qa: script: - tox -e qa tests: script: - tox -e py27,py34,py35,py36,py37,py38 coverage: script: - tox -e py27-cov,py34-cov,py35-cov,py36-cov,py37-cov,py38-cov artifacts: paths: - coverage.xml diffcov: script: - tox -e py27-diffcov,py34-diffcov,py35-diffcov,py36-diffcov,py37-diffcov,py38-diffcov docs: script: - tox -e docs codecov: stage: codecov dependencies: - coverage script: - codecov when: on_success release: stage: deploy only: - /^\d+\.\d+(\.\d+)?([abc]\d*)?$/ script: - tox -e release
Build the docs and run qa in the first stage
Build the docs and run qa in the first stage
YAML
apache-2.0
python/importlib_metadata
2097fdb9144843c79ea836805287aa5a883cd676
.gitlab-ci.yml
.gitlab-ci.yml
stages: - test - deploy .composer_cache: &composer_cache cache: paths: - vendor/ .install_dependencies: &install_dependencies before_script: - composer install --prefer-dist --classmap-authoritative --no-interaction --no-progress .composer_test: &composer_test script: - composer test lint (phpstan): image: $CI_REGISTRY/mathew-davies/dockerimages/php:7.1 stage: test <<: *install_dependencies <<: *composer_cache script: - composer lint test php 7.0: image: $CI_REGISTRY/mathew-davies/dockerimages/php:7.0 stage: test <<: *install_dependencies <<: *composer_test <<: *composer_cache test php 7.1: image: $CI_REGISTRY/mathew-davies/dockerimages/php:7.1 stage: test <<: *install_dependencies <<: *composer_test <<: *composer_cache artifacts: paths: - coverage/ test php 7.2: image: $CI_REGISTRY/mathew-davies/dockerimages/php:7.2 stage: test <<: *install_dependencies <<: *composer_test <<: *composer_cache pages: stage: deploy dependencies: - test php 7.1 script: - mv coverage/ public/ artifacts: expire_in: 30 days paths: - public only: - master
stages: - test - deploy .composer_cache: &composer_cache cache: paths: - vendor/ .install_dependencies: &install_dependencies before_script: - composer install --prefer-dist --classmap-authoritative --no-interaction --no-progress .composer_test: &composer_test script: - composer test lint (phpstan): image: $CI_REGISTRY/mathew-davies/dockerimages/php:7.1 stage: test <<: *install_dependencies <<: *composer_cache script: - composer lint test php 7.1: image: $CI_REGISTRY/mathew-davies/dockerimages/php:7.1 stage: test <<: *install_dependencies <<: *composer_test <<: *composer_cache artifacts: paths: - coverage/ test php 7.2: image: $CI_REGISTRY/mathew-davies/dockerimages/php:7.2 stage: test <<: *install_dependencies <<: *composer_test <<: *composer_cache pages: stage: deploy dependencies: - test php 7.1 script: - mv coverage/ public/ artifacts: expire_in: 30 days paths: - public only: - master
Remove support for PHP 7.0
Remove support for PHP 7.0
YAML
mit
ThePixelDeveloper/Sitemap,ThePixelDeveloper/Sitemap-v2
80ab54c2b8bfebe0fb50f8c1790890b9d3e4f87c
.gitlab-ci.yml
.gitlab-ci.yml
stages: - build build: stage: build image: maven:3.3.3-jdk-8 script: - mvn package -q - ARTIFACT=$(find target -name "moneytracker-*.jar" | tr -d '[[:space:]]') - "export sha1=$(sha1sum artifact.tar.gz | awk '{print $1}')" - "export md5=$(md5sum artifact.tar.gz | awk '{print $1}')" - ARTIFACT_NAME=${ARTIFACT#"target/"} - curl -f --user $ARTIFACTORY_USER:$ARTIFACTORY_PASSWORD --data-binary "@$ARTIFACT" -X PUT "https://artifactory.stritzke.me/artifactory/money-tracker/$ARTIFACT_NAME" -H "X-Checksum-Sha1:$sha1" -H "X-Checksum-Md5:$md5"
stages: - build build: stage: build image: maven:3.3.3-jdk-8 script: - mvn package -q - ARTIFACT=$(find target -name "moneytracker-*.jar" | tr -d '[[:space:]]') - "export sha1=$(sha1sum $ARTIFACT | awk '{print $1}')" - "export md5=$(md5sum $ARTIFACT | awk '{print $1}')" - ARTIFACT_NAME=${ARTIFACT#"target/"} - curl -f --user $ARTIFACTORY_USER:$ARTIFACTORY_PASSWORD --data-binary "@$ARTIFACT" -X PUT "https://artifactory.stritzke.me/artifactory/money-tracker/$ARTIFACT_NAME" -H "X-Checksum-Sha1:$sha1" -H "X-Checksum-Md5:$md5"
Use ARTIFACT variable for checksum creation.
Use ARTIFACT variable for checksum creation.
YAML
mit
dennisstritzke/money-tracker,dennisstritzke/money-tracker,dennisstritzke/money-tracker
414f8c82e6c4bda7a36b019caf351458d6a5221f
.gitlab-ci.yml
.gitlab-ci.yml
image: node stages: - build - deploy build: stage: build script: - npm ci - npm run lint - npm run build only: - tags cache: key: ${CI_COMMIT_REF_SLUG} paths: - node_modules/ artifacts: paths: - public/ - lambda/ deploy: stage: deploy environment: name: production url: https://iiro.fi before_script: - npm i -g netlify-cli@next script: - netlify deploy -d public -f lambda --prod -m $CI_COMMIT_TAG only: - tags
image: node stages: - build - deploy build: stage: build script: - npm ci - npm run lint - npm run build only: - tags cache: key: node_modules paths: - node_modules/ artifacts: paths: - public/ - lambda/ deploy: stage: deploy environment: name: production url: https://iiro.fi before_script: - npm i -g netlify-cli@next script: - netlify deploy -d public -f lambda --prod -m $CI_COMMIT_TAG only: - tags
Use generic cache key for node_modules
ci: Use generic cache key for node_modules
YAML
mit
iiroj/iiro.fi,iiroj/iiro.fi,iiroj/iiro.fi
0b8b66fe50a7c8c4797b3f670d68de4439b77500
.gitlab-ci.yml
.gitlab-ci.yml
image: ubuntu variables: DEBIAN_FRONTEND: noninteractive stages: - virtual - llvm virtual: stage: virtual before_script: - apt-get update - apt-get install -y build-essential cmake git script: - ./scripts/test.sh llvm-baikal: stage: llvm before_script: - apt-get update - apt-get install -y build-essential cmake clang-11 gcc-mipsel-linux-gnu sshpass script: - patch ./scripts/test.sh < ./scripts/llvm-baikal.patch - ./scripts/test.sh llvm-uemu: stage: llvm before_script: - apt-get update - apt-get install -y build-essential cmake clang-11 gcc-mipsel-linux-gnu git - git clone https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.softcom.su/ruc/uemu ../uemu script: - patch ./scripts/test.sh < ./scripts/llvm-uemu.patch - ./scripts/test.sh
image: ubuntu variables: DEBIAN_FRONTEND: noninteractive stages: - virtual - llvm virtual: stage: virtual before_script: - apt-get update - apt-get install -y build-essential cmake git script: - ./scripts/test.sh llvm-intel: stage: llvm before_script: - apt-get update - apt-get install -y build-essential cmake clang-11 gcc-mipsel-linux-gnu script: - patch ./scripts/test.sh < ./scripts/llvm.patch - ./scripts/test.sh llvm-baikal: stage: llvm before_script: - apt-get update - apt-get install -y build-essential cmake clang-11 gcc-mipsel-linux-gnu sshpass script: - patch ./scripts/test.sh < ./scripts/llvm-baikal.patch - ./scripts/test.sh llvm-uemu: stage: llvm before_script: - apt-get update - apt-get install -y build-essential cmake clang-11 gcc-mipsel-linux-gnu git - git clone https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.softcom.su/ruc/uemu ../uemu script: - patch ./scripts/test.sh < ./scripts/llvm-uemu.patch - ./scripts/test.sh
Add LLVM->Intel testing for GitLab CI
Add LLVM->Intel testing for GitLab CI
YAML
apache-2.0
andrey-terekhov/RuC,andrey-terekhov/RuC,andrey-terekhov/RuC
7899aa68b9ebb8dbbc66f3a0ce0a51af89222892
.gitlab-ci.yml
.gitlab-ci.yml
cache: paths: - /root/.m2/repository/ services: - mongo:3.2 test:jdk-8: image: maven:3-jdk-8 script: export MARK_MONGO_HOST="mongo" && mvn clean package -Dgpg.skip=true test:jdk-7: image: maven:3-jdk-7 script: export MARK_MONGO_HOST="mongo" && mvn clean package -Dgpg.skip=true
cache: paths: - /root/.m2/repository/ test:jdk-8:mongo-3.2: image: maven:3-jdk-8 services: - mongo:3.2 script: export MARK_MONGO_HOST="mongo" && mvn clean package -Dgpg.skip=true test:jdk-7:mongo-3.2: image: maven:3-jdk-7 services: - mongo:3.2 script: export MARK_MONGO_HOST="mongo" && mvn clean package -Dgpg.skip=true test:jdk-8:mongo-3.6: image: maven:3-jdk-8 services: - mongo:3.6 script: export MARK_MONGO_HOST="mongo" && mvn clean package -Dgpg.skip=true
Add GitLab test with mongo 3.6
Add GitLab test with mongo 3.6
YAML
mit
RUCD/mark,RUCD/mark,RUCD/mark
3af7f49728cf704cc4ffb16007103a08cd00d079
.gitlab-ci.yml
.gitlab-ci.yml
image: node:8.11.3 stages: - test - publish test on nodejs lts 6: stage: test image: node:6.14.3 script: - npm install - npm test coverage: '/All files[^|]*\|[^|]*\s+([\d\.]+)/' test on nodejs lts 8: stage: test image: node:8.11.3 script: - npm install - npm test coverage: '/All files[^|]*\|[^|]*\s+([\d\.]+)/' test on latest nodejs: stage: test image: node:latest script: - npm install - npm test coverage: '/All files[^|]*\|[^|]*\s+([\d\.]+)/' publish to npm: stage: publish only: - tags - triggers script: - echo '//registry.npmjs.org/:_authToken=${NPM_TOKEN}' > .npmrc - npm publish environment: name: npm url: https://www.npmjs.com/package/@vuedoc/parser
image: node:latest cache: key: ${CI_COMMIT_REF_SLUG} paths: - node_modules/ stages: - setup - test - publish npm ci: stage: setup script: - npm ci code quality: stage: test script: - npm run lint npm outdated: stage: test script: - npm outdated allow_failure: true security scan: stage: test script: - npm audit allow_failure: true test on nodejs 6: stage: test image: node:6.14.3 script: - npm test coverage: '/All files[^|]*\|[^|]*\s+([\d\.]+)/' test on nodejs 8: stage: test image: node:8.11.3 script: - npm test coverage: '/All files[^|]*\|[^|]*\s+([\d\.]+)/' test on latest nodejs: stage: test script: - npm test coverage: '/All files[^|]*\|[^|]*\s+([\d\.]+)/' publish: stage: publish only: - tags - triggers script: - echo '//registry.npmjs.org/:_authToken=${NPM_TOKEN}' > .npmrc - npm publish environment: name: npm url: https://www.npmjs.com/package/@vuedoc/parser
Enable caching and add quality and security jobs
Enable caching and add quality and security jobs
YAML
mit
vuedoc/parser,vuedoc/parser,vuedoc/parser
06629b3020cfee0a236eb668832eec39224b8397
.sass-lint.yml
.sass-lint.yml
# Debe estar en el mismo directorio de gulpfile.js para no tener que parsear este .yml rules: empty-line-between-blocks: 0 hex-notation: 0 indentation: - 1 - size: 4 leading-zero: 0 class-name-format: - 1 - allow-leading-underscore: true convention: ^[a-z][a-zA-Z0-9]*(__)?([a-z][a-zA-Z0-9]*)?(--)?([a-z][a-zA-Z0-9]*)?$ mixin-name-format: - 1 - allow-leading-underscore: false convention: 'camelcase' no-color-literals: 0 no-important: 2 no-qualifying-elements: 0 shorthand-values: 0 variable-name-format: - 1 - allow-leading-underscore: false convention: 'camelcase'
# Debe estar en el mismo directorio de gulpfile.js para no tener que parsear este .yml rules: empty-line-between-blocks: 0 hex-notation: 0 indentation: - 1 - size: 4 leading-zero: 0 class-name-format: - 1 - allow-leading-underscore: true convention: ^[a-z][a-zA-Z0-9]*(__)?([a-z][a-zA-Z0-9]*)?(--)?([a-z][a-zA-Z0-9]*)?$ mixin-name-format: - 1 - allow-leading-underscore: false convention: 'camelcase' nesting-depth: - 1 - max-depth: 3 no-color-literals: 0 no-important: 2 no-qualifying-elements: 0 shorthand-values: 0 variable-name-format: - 1 - allow-leading-underscore: false convention: 'camelcase'
Define el anidado en 3 niveles
Define el anidado en 3 niveles
YAML
mit
eliasdorigoni/WPBase,eliasdorigoni/WPBase,eliasdorigoni/WPBase
f89295c3f0713b90f65eee73b7c5966801b98019
.swiftlint.yml
.swiftlint.yml
# rule identifiers to exclude from running disabled_rules: - line_length opt_in_rules: # paths to include during linting. `--path` is ignored if present. included: # paths to ignore during linting. Takes precedence over `included`. excluded: # configurable rules can be customized from this configuration file # binary rules can set their severity level force_cast: warning
# rule identifiers to exclude from running disabled_rules: - line_length # some rules are only opt-in opt_in_rules: # Find all the available rules by running: # swiftlint rules # paths to include during linting. `--path` is ignored if present. included: # paths to ignore during linting. Takes precedence over `included`. excluded: # configurable rules can be customized from this configuration file # binary rules can set their severity level force_cast: warning
Add comments to SwiftLint configuration file
Add comments to SwiftLint configuration file
YAML
mit
giulio92/GLTableCollectionView
8e92572b53291ed6a1ac2b111c458d984a90544b
roles/openstack-package/defaults/main.yml
roles/openstack-package/defaults/main.yml
openstack_package_version: 10.0-bbc66 openstack_package: package_name: 'openstack-{{ project_name }}-{{ openstack_package_version }}' repo: 'deb http://repo.openstack.blueboxgrid.com/bbc precise main' repo_key_url: 'http://repo.openstack.blueboxgrid.com/blue_box_cloud.gpg.key' rootwrap: "{{ rootwrap|default(False)|bool }}"
openstack_package_version: 10.0-bbc68 openstack_package: package_name: 'openstack-{{ project_name }}-{{ openstack_package_version }}' repo: 'deb http://repo.openstack.blueboxgrid.com/bbc precise main' repo_key_url: 'http://repo.openstack.blueboxgrid.com/blue_box_cloud.gpg.key' rootwrap: "{{ rootwrap|default(False)|bool }}"
Bump package for python-swiftclient in swift venv
Bump package for python-swiftclient in swift venv This build of the package just gets python-swiftclient into swift's venv so that dispersion works once more.
YAML
mit
greghaynes/ursula,davidcusatis/ursula,ryshah/ursula,channus/ursula,persistent-ursula/ursula,edtubillara/ursula,narengan/ursula,wupeiran/ursula,pgraziano/ursula,EricCrosson/ursula,lihkin213/ursula,MaheshIBM/ursula,blueboxgroup/ursula,lihkin213/ursula,zrs233/ursula,j2sol/ursula,nirajdp76/ursula,greghaynes/ursula,blueboxgroup/ursula,paulczar/ursula,aldevigi/ursula,MaheshIBM/ursula,lihkin213/ursula,rongzhus/ursula,j2sol/ursula,nirajdp76/ursula,zrs233/ursula,paulczar/ursula,panxia6679/ursula,knandya/ursula,persistent-ursula/ursula,narengan/ursula,aldevigi/ursula,zrs233/ursula,rongzhus/ursula,ryshah/ursula,mjbrewer/ursula,ryshah/ursula,pgraziano/ursula,dlundquist/ursula,wupeiran/ursula,nirajdp76/ursula,ddaskal/ursula,pgraziano/ursula,allomov/ursula,msambol/ursula,knandya/ursula,andrewrothstein/ursula,zrs233/ursula,masteinhauser/ursula,twaldrop/ursula,greghaynes/ursula,davidcusatis/ursula,masteinhauser/ursula,EricCrosson/ursula,dlundquist/ursula,edtubillara/ursula,allomov/ursula,persistent-ursula/ursula,andrewrothstein/ursula,twaldrop/ursula,rongzhus/ursula,narengan/ursula,j2sol/ursula,edtubillara/ursula,pbannister/ursula,panxia6679/ursula,paulczar/ursula,ddaskal/ursula,sivakom/ursula,fancyhe/ursula,fancyhe/ursula,blueboxgroup/ursula,pbannister/ursula,pgraziano/ursula,davidcusatis/ursula,twaldrop/ursula,aldevigi/ursula,pbannister/ursula,jwaibel/ursula,ddaskal/ursula,knandya/ursula,narengan/ursula,msambol/ursula,sivakom/ursula,masteinhauser/ursula,wupeiran/ursula,twaldrop/ursula,blueboxgroup/ursula,lihkin213/ursula,fancyhe/ursula,mjbrewer/ursula,nirajdp76/ursula,kennjason/ursula,kennjason/ursula,dlundquist/ursula,panxia6679/ursula,rongzhus/ursula,jwaibel/ursula,ryshah/ursula,sivakom/ursula,jwaibel/ursula,panxia6679/ursula,ddaskal/ursula,j2sol/ursula,andrewrothstein/ursula,channus/ursula,masteinhauser/ursula,persistent-ursula/ursula,mjbrewer/ursula,channus/ursula,msambol/ursula,allomov/ursula,kennjason/ursula,fancyhe/ursula,MaheshIBM/ursula,wupeiran/ursula,knandya/ursula,EricCrosson/ursula,edtubillara/ursula,channus/ursula
b4bb56aeac013077ec52e74e6bacbd238b7ffbec
config/assets.yml
config/assets.yml
javascript_compressor: closure css_compressor: sass template_function: dc._.template embed_assets: datauri gzip_assets: off javascripts: note_embed: - src/js/vendor/underscore/underscore.js - src/js/vendor/jquery/dist/jquery.js # jQuery.XDomainRequest is for IE8/9 - src/js/vendor/jQuery-ajaxTransport-XDomainRequest/jQuery.XDomainRequest.js - src/js/note_embed.js - src/templates/*.jst # old_loader: # - src/js/old_loader.js # old_note_embed: # - src/js/vendor/underscore/underscore.js # - src/js/vendor/jquery/dist/jquery.js # # jQuery.XDomainRequest is for IE8/9 # - src/js/vendor/jQuery-ajaxTransport-XDomainRequest/jQuery.XDomainRequest.js # - src/js/old_note_embed.js # - src/templates/*.jst stylesheets: note_embed: - src/css/*.scss
javascript_compressor: closure css_compressor: sass template_function: dc._.template embed_assets: datauri gzip_assets: off javascripts: note_embed: - src/js/vendor/underscore/underscore.js - src/js/vendor/jquery/dist/jquery.js # jQuery.XDomainRequest is for IE8/9 - src/js/vendor/jQuery-ajaxTransport-XDomainRequest/jQuery.XDomainRequest.js - src/js/note_embed.js - src/templates/*.jst stylesheets: note_embed: - src/css/*.scss
Remove unused old_loader jammit config
Remove unused old_loader jammit config
YAML
mit
documentcloud/documentcloud-notes,documentcloud/documentcloud-notes,documentcloud/documentcloud-notes
898a71a5b6a905b42198c14414689586e8285c66
config/config.yml
config/config.yml
defaults: &defaults seconds_to_delay_response: 0 ticket_trackers: pivotal_story_url: "https://www.pivotaltracker.com/story/show/" github: appkey: <%= ENV['GITHUB_APPKEY'] %> secret: <%= ENV['GITHUB_SECRET'] %> development: <<: *defaults hostname: 'review.dev' seconds_to_delay_response: 2 production: <<: *defaults ga_id: '<%= ENV['GOOGLE_A_ID'] %>' test: <<: *defaults
defaults: &defaults seconds_to_delay_response: 0 ticket_trackers: pivotal_story_url: "https://www.pivotaltracker.com/story/show/" github: appkey: <%= ENV['GITHUB_APPKEY'] %> secret: <%= ENV['GITHUB_SECRET'] %> development: <<: *defaults hostname: 'localhost:3000' seconds_to_delay_response: 2 production: <<: *defaults ga_id: '<%= ENV['GOOGLE_A_ID'] %>' test: <<: *defaults
Use localhost to prevent connection timeout
Use localhost to prevent connection timeout
YAML
mit
Naturaily/review,Naturaily/review,Naturaily/review
bfbe185ba06a193a544153b6b1f02db57504e022
wercker.yml
wercker.yml
box: wercker/nodejs build: steps: # A step that executes `npm install` command - npm-install # A step that executes `npm test` command # - npm-test deploy: steps: - script: name: Remove npm modules before deploy code: | rm -rf node_modules - openshift-deploy
box: wercker/nodejs build: steps: # A step that executes `npm install` command - npm-install # A step that executes `npm test` command # - npm-test deploy: steps: - script: name: Remove npm modules before deploy code: | rm -rf node_modules - script: name: Remove bower modules before deploy code: | rm -rf public/assets/libs - openshift-deploy
Remove bower files before upload
Remove bower files before upload
YAML
mit
HalleyInteractive/new-release-notifier,HalleyInteractive/new-release-notifier
7c3d848ed98dae5dd55d18d6a9d1a55035712f0c
wercker.yml
wercker.yml
box: wercker/rvm build: steps: - rvm-use: version: 2.1.0 - script: name: gem install bundler code: gem update bundler - bundle-install - script: name: echo ruby information code: | echo "ruby version $(ruby --version) running" echo "from location $(which ruby)" echo -p "gem list: $(gem list)" - script: name: rspec code: bundle exec rspec
box: wercker/rvm build: steps: - rvm-use: version: 2.1.3 - script: name: gem install bundler code: gem update bundler - bundle-install - script: name: echo ruby information code: | echo "ruby version $(ruby --version) running" echo "from location $(which ruby)" echo -p "gem list: $(gem list)" - script: name: rspec code: bundle exec rspec
Use ruby-2.1.3 in Wercker CI
Use ruby-2.1.3 in Wercker CI
YAML
mit
Kyuden/pingo
cf98f94e9fa288ff1089b07a784328c957a74334
update_network_ipv4/tasks/main.yml
update_network_ipv4/tasks/main.yml
- name: Snapshot Appliance as Backup isam: appliance: "{{ inventory_hostname }}" username: "{{ username }}" password: "{{ password }}" lmi_port: "{{ lmi_port }}" log: "{{ log_level }}" force: "{{ force }}" action: ibmsecurity.isam.base.snapshots.create isamapi: comment: "{{ update_network_interface_vlan_comment }}" when: update_network_ipv4_address is defined - name: Update IPv4 Address on Interface {{ update_network_ipv4_label }} isam: appliance: "{{ inventory_hostname }}" username: "{{ username }}" password: "{{ password }}" lmi_port: "{{ lmi_port }}" log: "{{ log_level }}" force: "{{ force }}" action: ibmsecurity.isam.base.network.interfaces_ipv4.update isamapi: label : "{{ update_network_ipv4_label }}" address : "{{ update_network_ipv4_address }}" new_address : "{{ update_network_ipv4_new_address }}" maskOrPrefix : "{{ update_network_ipv4_maskOrPrefix }}" allowManagement : "{{ update_network_ipv4_allowManagement }}" enabled : "{{ update_network_ipv4_enabled }}" overrideSubnetChecking: "{{ update_network_ipv4_overrideSubnetChecking }}" vlanId : "{{ update_network_ipv4_vlanId }}" when: update_network_ipv4_address is defined notify: Commit Changes
- name: Snapshot Appliance as Backup isam: appliance: "{{ inventory_hostname }}" username: "{{ username }}" password: "{{ password }}" lmi_port: "{{ lmi_port }}" log: "{{ log_level }}" force: "{{ force }}" action: ibmsecurity.isam.base.snapshots.create isamapi: comment: "{{ update_network_ipv4_comment }}" when: update_network_ipv4_address is defined - name: Update IPv4 Address on Interface {{ update_network_ipv4_label }} isam: appliance: "{{ inventory_hostname }}" username: "{{ username }}" password: "{{ password }}" lmi_port: "{{ lmi_port }}" log: "{{ log_level }}" force: "{{ force }}" action: ibmsecurity.isam.base.network.interfaces_ipv4.update isamapi: label : "{{ update_network_ipv4_label }}" address : "{{ update_network_ipv4_address }}" new_address : "{{ update_network_ipv4_new_address }}" maskOrPrefix : "{{ update_network_ipv4_maskOrPrefix }}" allowManagement : "{{ update_network_ipv4_allowManagement }}" enabled : "{{ update_network_ipv4_enabled }}" overrideSubnetChecking: "{{ update_network_ipv4_overrideSubnetChecking }}" vlanId : "{{ update_network_ipv4_vlanId }}" when: update_network_ipv4_address is defined notify: Commit Changes
Fix snapshot variable name to appropriate variable: update_network_ipv4_comment
Fix snapshot variable name to appropriate variable: update_network_ipv4_comment
YAML
apache-2.0
IBM-Security/isam-ansible-roles
01d85ef56abcf98859b64647ee97a3ff0e0e3024
packages/ma/mappy.yaml
packages/ma/mappy.yaml
homepage: https://github.com/PolyglotSymposium/mappy changelog-type: '' hash: 2fbad40a00c75bb83730506aef01e936bb024ab35358c35d2c05060399ad625c test-bench-deps: base: -any mappy: -any hspec: -any parsec: -any containers: -any QuickCheck: -any maintainer: [email protected] synopsis: A functional programming language focused around maps. changelog: '' basic-deps: base: ! '>=4.7 && <5' mappy: -any parsec: -any containers: -any all-versions: - '0.1.0.0' - '0.1.0.1' - '0.1.0.2' - '0.1.1.0' author: Michael Gilliland latest: '0.1.1.0' description-type: haddock description: Please see README.md license-name: BSD3
homepage: https://github.com/PolyglotSymposium/mappy changelog-type: '' hash: a4c2cf288c079983d6dae8fca9abfd45f0169f45f44baafd32521705dc6b787a test-bench-deps: base: -any mappy: -any hspec: -any parsec: -any containers: -any QuickCheck: -any maintainer: [email protected] synopsis: A functional programming language focused around maps. changelog: '' basic-deps: haskeline: -any base: ! '>=4.7 && <5' mappy: -any parsec: -any containers: -any ansi-terminal: -any directory: -any all-versions: - '0.1.0.0' - '0.1.0.1' - '0.1.0.2' - '0.1.1.0' - '0.1.2.0' author: Michael Gilliland latest: '0.1.2.0' description-type: haddock description: Please see README.md license-name: BSD3
Update from Hackage at 2016-02-03T02:41:36+0000
Update from Hackage at 2016-02-03T02:41:36+0000
YAML
mit
commercialhaskell/all-cabal-metadata
7e9104f08cb0c28361c785efe09e6f3d2a6b0457
defaults/main.yml
defaults/main.yml
--- upstart_runtime_root: "{{ runtime_root | default('/var/run') }}/{{ upstart_name }}" upstart_pidfile_path: "{{ upstart_runtime_root }}/{{ upstart_name }}.pid" upstart_user: nobody upstart_group: nobody upstart_name: template upstart_description: 'Nondescript Template' upstart_start_on: - "runlevel [2345]" upstart_stop_on: - "runlevel [!2345]" upstart_file_descriptor_limit: no upstart_environment: no upstart_environment_global: yes upstart_pre_start: no upstart_post_stop: no upstart_script: no upstart_respawn: no upstart_respawn_limit: no upstart_respawn_limit_count: 10 upstart_respawn_limit_interval: 5 upstart_exec_path: 'echo Nothing defined to execute' upstart_exec_flags: no upstart_log_root: "{{ log_root | default('/var/log') }}/{{ upstart_name }}" upstart_log_path: "{{ upstart_log_root }}/{{ upstart_name }}.log" upstart_capture_errors: yes
--- upstart_runtime_root: "{{ runtime_root | default('/var/run') }}/{{ upstart_name }}" upstart_pidfile_path: "{{ upstart_runtime_root }}/{{ upstart_name }}.pid" upstart_user: nobody upstart_group: nogroup upstart_name: template upstart_description: 'Nondescript Template' upstart_start_on: - "runlevel [2345]" upstart_stop_on: - "runlevel [!2345]" upstart_file_descriptor_limit: no upstart_environment: no upstart_environment_global: yes upstart_pre_start: no upstart_post_stop: no upstart_script: no upstart_respawn: no upstart_respawn_limit: no upstart_respawn_limit_count: 10 upstart_respawn_limit_interval: 5 upstart_exec_path: 'echo Nothing defined to execute' upstart_exec_flags: no upstart_log_root: "{{ log_root | default('/var/log') }}/{{ upstart_name }}" upstart_log_path: "{{ upstart_log_root }}/{{ upstart_name }}.log" upstart_capture_errors: yes
Use nogroup as the default group name
Use nogroup as the default group name
YAML
mit
telusdigital/ansible-upstart,stevenharradine/ansible-upstart
030ed2c59fb72ef80e5df714e5224e5a33f517fe
wercker.yml
wercker.yml
box: wercker-labs/docker build: steps: - script: name: Build and package the Docker image code: | cd $WERCKER_SOURCE_DIR sudo docker build -t evandbrown/eb-py-flask . CONTAINER_ID=$(sudo docker run -d evandbrown/eb-py-flask) sudo docker export $CONTAINER_ID > container.tar DATETIME=`date +%s` tar -cvzf $WERCKER_OUTPUT_DIR/application-$DATETIME.tgz container.tar Docker.mf deploy: steps: - s3sync: key-id: $KEY key-secret: $SECRET bucket-url: $BUCKET source-dir: $WERCKER_OUTPUT_DIR
box: wercker-labs/docker build: steps: - script: name: Build and package the Docker image code: | cd $WERCKER_SOURCE_DIR sudo docker build -t evandbrown/eb-py-flask . CONTAINER_ID=$(sudo docker run -d evandbrown/eb-py-flask) sudo docker export $CONTAINER_ID > container.tar DATETIME=`date +%s` tar -cvzf $WERCKER_OUTPUT_DIR/application-$DATETIME.tgz container.tar Docker.mf deploy: steps: - s3sync: key-id: $KEY key-secret: $SECRET bucket-url: $BUCKET
Use default source_dir to sync
Use default source_dir to sync
YAML
apache-2.0
evandbrown/eb-py-flask-signup,evandbrown/eb-py-flask-signup
daecb6e27db78e781f875d2e9c9d9d828acdfd1e
resources/config/locales/ru.yml
resources/config/locales/ru.yml
ru: plugins: refinery_files: title: Файлы article: masculine activerecord: models: resource: файл must_choose_file: Вы должны выбрать файл для загрузки file_should_be_smaller_than_max_file_size: "Файлы должны быть по размеру меньше чем %{max_file_size}" admin: resources: form: file_to_upload: Загружаемый файл download_current: Скачать текущий файл or: или replace: ", заменить его на вот этот..." maximum_file_size: "Максимальный размер файла — %{megabytes} МБ." resource: download: "Скачать файл (%{size})" edit: Редактировать файл delete: message: "Вы уверены, что хотите удалить «%{title}»?" title: Удалить этот файл навсегда index: upload_new: Загрузить новый файл no_files_yet: "Здесь пока нет файлов. Нажмите «Загрузить новые файлы», чтобы добавить первый файл." insert: existing: Существующий файл new: Новый файл previous: Предыдущий next: Следующий or: или cancel: Отмена existing_resource: link_to_resource: Поставить ссылку на этот ресурс submit_insert: Вставить
ru: plugins: refinery_files: title: Файлы article: masculine file_specify_for_upload: Вы должны выбрать файл для загрузки file_should_be_smaller_than_max_file_size: "Файлы должны быть по размеру меньше чем %{max_file_size}" admin: resources: delete: Удалить этот файл навсегда edit: Редактировать этот файл form: download_current: Скачать текущий файл or: или replace: " заменить его этим" maximum_file_size: "Максимальный размер файла — %{megabytes} МБ." resource: download: "Скачать файл (%{size})" index: upload_new: Загрузить новый файл no_files_yet: "Здесь пока нет файлов. Нажмите «Загрузить новые файлы», чтобы добавить первый файл." insert: existing: Существующий файл new: Новый файл no_files: Файлов нет. existing_resource: link_to_file: Поставить ссылку на этот файл button_text: Вставить activerecord: models: resource: файл
Update Russian resources locale according to English one, do minor corrections
Update Russian resources locale according to English one, do minor corrections
YAML
mit
hoopla-software/refinerycms,stakes/refinerycms,Retimont/refinerycms,Retimont/refinerycms,mabras/refinerycms,stefanspicer/refinerycms,refinery/refinerycms,bricesanchez/refinerycms,mkaplan9/refinerycms,mlinfoot/refinerycms,KingLemuel/refinerycms,kappiah/refinerycms,anitagraham/refinerycms,stakes/refinerycms,mlinfoot/refinerycms,koa/refinerycms,KingLemuel/refinerycms,donabrams/refinerycms,mabras/refinerycms,chrise86/refinerycms,simi/refinerycms,aguzubiaga/refinerycms,chrise86/refinerycms,gwagener/refinerycms,stefanspicer/refinerycms,Eric-Guo/refinerycms,anitagraham/refinerycms,johanb/refinerycms,mobilityhouse/refinerycms,bricesanchez/refinerycms,simi/refinerycms,KingLemuel/refinerycms,LytayTOUCH/refinerycms,Eric-Guo/refinerycms,trevornez/refinerycms,mkaplan9/refinerycms,bryanmtl/g-refinerycms,trevornez/refinerycms,mabras/refinerycms,stefanspicer/refinerycms,Retimont/refinerycms,gwagener/refinerycms,kappiah/refinerycms,koa/refinerycms,hoopla-software/refinerycms,SmartMedia/refinerycms-with-custom-icons,mkaplan9/refinerycms,kelkoo-services/refinerycms,anitagraham/refinerycms,louim/refinerycms,LytayTOUCH/refinerycms,LytayTOUCH/refinerycms,aguzubiaga/refinerycms,kelkoo-services/refinerycms,refinery/refinerycms,pcantrell/refinerycms,trevornez/refinerycms,sideci-sample/sideci-sample-refinerycms,hoopla-software/refinerycms,pcantrell/refinerycms,mlinfoot/refinerycms,gwagener/refinerycms,sideci-sample/sideci-sample-refinerycms,chrise86/refinerycms,donabrams/refinerycms,louim/refinerycms,simi/refinerycms,SmartMedia/refinerycms-with-custom-icons,Eric-Guo/refinerycms,johanb/refinerycms,johanb/refinerycms,mojarra/myrefinerycms,aguzubiaga/refinerycms,kappiah/refinerycms,mojarra/myrefinerycms,refinery/refinerycms,simi/refinerycms,mobilityhouse/refinerycms,bryanmtl/g-refinerycms
588876c64f3f9a673bfec37c54f7fd03f4ee1455
config/genomes/rn6-resources.yaml
config/genomes/rn6-resources.yaml
version: 2 aliases: ensembl: rattus_norvegicus_vep_83_Rnor_6.0 snpeff: Rnor_6.0.82
version: 3 aliases: ensembl: rattus_norvegicus_vep_83_Rnor_6.0 snpeff: Rnor_6.0.82 rnaseq: transcripts: ../rnaseq/ref-transcripts.gtf transcripts_mask: ../rnaseq/ref-transcripts-mask.gtf transcriptome_index: tophat: ../rnaseq/tophat/rn6_transcriptome.ver dexseq: ../rnaseq/ref-transcripts.dexseq.gff3 refflat: ../rnaseq/ref-transcripts.refFlat rRNA_fa: ../rnaseq/rRNA.fa
Update rn6 resources with transcriptome section.
Update rn6 resources with transcriptome section.
YAML
mit
brainstorm/bcbio-nextgen,lbeltrame/bcbio-nextgen,chapmanb/bcbio-nextgen,vladsaveliev/bcbio-nextgen,a113n/bcbio-nextgen,a113n/bcbio-nextgen,vladsaveliev/bcbio-nextgen,brainstorm/bcbio-nextgen,brainstorm/bcbio-nextgen,biocyberman/bcbio-nextgen,a113n/bcbio-nextgen,biocyberman/bcbio-nextgen,chapmanb/bcbio-nextgen,biocyberman/bcbio-nextgen,lbeltrame/bcbio-nextgen,chapmanb/bcbio-nextgen,lbeltrame/bcbio-nextgen,vladsaveliev/bcbio-nextgen
ae0d96634e14e9d34eaaed78d366bc9d077b11d6
_data/open_source.yml
_data/open_source.yml
--- - title: Discourse code: https://github.com/discourse/discourse site: http://try.discourse.org/ description: "Discourse is a free, open and simple platform for community discussion." - title: Travis CI code: https://github.com/travis-ci/travis-web site: https://travis-ci.org/ description: "The web client for Travis CI, a hosted continuous integration service for the open source community." - title: Balanced Dashboard code: https://github.com/balanced/balanced-dashboard site: https://dashboard.balancedpayments.com/#/start description: "The dashboard for Balanced Payments, a payments solution for marketplaces." - title: Huboard code: https://github.com/rauhryan/huboard site: https://huboard.com description: "Huboard is a Kanban board for GitHub Issues." - title: GiddyUp code: https://github.com/basho/giddyup site: http://giddyup.basho.com/ description: "A visual scorecard for riak_test, from Basho, creators of Riak."
--- - title: Discourse code: https://github.com/discourse/discourse site: http://try.discourse.org/ description: "Discourse is a free, open and simple platform for community discussion." - title: Travis CI code: https://github.com/travis-ci/travis-web site: https://travis-ci.org/ description: "The web client for Travis CI, a hosted continuous integration service for the open source community." - title: Balanced Dashboard code: https://github.com/balanced/balanced-dashboard site: https://dashboard.balancedpayments.com/#/start description: "The dashboard for Balanced Payments, a payments solution for marketplaces." - title: Huboard code: https://github.com/rauhryan/huboard site: https://huboard.com description: "Huboard is a Kanban board for GitHub Issues." - title: GiddyUp code: https://github.com/basho/giddyup site: http://giddyup.basho.com/ description: "A visual scorecard for riak_test, from Basho, creators of Riak." - title: EmberFlare code: https://github.com/ugisozols/emberflare.com site: https://emberflare.com description: "Community driven place for all things Ember.js."
Add EmberFlare to open source list.
Add EmberFlare to open source list.
YAML
mit
elwayman02/emberwatch,greyhwndz/emberwatch,jeffreybiles/emberwatch,jeffreybiles/emberwatch,elwayman02/emberwatch,GavinJoyce/emberwatch,Frozenfire92/emberwatch,elwayman02/emberwatch,Frozenfire92/emberwatch,Frozenfire92/emberwatch,emberwatch/emberwatch,GavinJoyce/emberwatch,greyhwndz/emberwatch,jeffreybiles/emberwatch,pixelhandler/emberwatch,emberwatch/emberwatch,pixelhandler/emberwatch,pixelhandler/emberwatch,emberwatch/emberwatch,GavinJoyce/emberwatch,greyhwndz/emberwatch
a7a7342bda1e152531ca13611d70583c7f7fb93e
config/permissions.tmpl.yml
config/permissions.tmpl.yml
--- - :vi - :svc - :clo - :inf - :con - :cnt - :sto - :mdl - :net - :aut - :opt - :set - ems-type:foreman_configuration - ems-type:scvmm - ems-type:openstack_infra - ems-type:openstack_network - ems-type:rhevm - ems-type:vmwarews - ems-type:azure - ems-type:ec2 - ems-type:openstack - ems-type:kubernetes - ems-type:openshift - ems-type:atomic - ems-type:openshift_enterprise - ems-type:atomic_enterprise - ems-type:foreman_provisioning - ems-type:gce
--- - :vi - :compute - :conf - :svc - :clo - :inf - :con - :cnt - :sto - :mdl - :net - :aut - :opt - :set - ems-type:foreman_configuration - ems-type:scvmm - ems-type:openstack_infra - ems-type:openstack_network - ems-type:rhevm - ems-type:vmwarews - ems-type:azure - ems-type:ec2 - ems-type:openstack - ems-type:kubernetes - ems-type:openshift - ems-type:atomic - ems-type:openshift_enterprise - ems-type:atomic_enterprise - ems-type:foreman_provisioning - ems-type:gce
Add new menu sections to permissions template.
Add new menu sections to permissions template.
YAML
apache-2.0
aufi/manageiq,kbrock/manageiq,andyvesel/manageiq,fbladilo/manageiq,ilackarms/manageiq,gmcculloug/manageiq,durandom/manageiq,chessbyte/manageiq,juliancheal/manageiq,kbrock/manageiq,andyvesel/manageiq,gerikis/manageiq,branic/manageiq,ilackarms/manageiq,djberg96/manageiq,mzazrivec/manageiq,billfitzgerald0120/manageiq,branic/manageiq,agrare/manageiq,romaintb/manageiq,chessbyte/manageiq,matobet/manageiq,romaintb/manageiq,mkanoor/manageiq,d-m-u/manageiq,lpichler/manageiq,gmcculloug/manageiq,mresti/manageiq,billfitzgerald0120/manageiq,romaintb/manageiq,jvlcek/manageiq,mfeifer/manageiq,gmcculloug/manageiq,ManageIQ/manageiq,agrare/manageiq,djberg96/manageiq,tinaafitz/manageiq,d-m-u/manageiq,jntullo/manageiq,skateman/manageiq,tzumainn/manageiq,jrafanie/manageiq,NickLaMuro/manageiq,jrafanie/manageiq,borod108/manageiq,juliancheal/manageiq,syncrou/manageiq,chessbyte/manageiq,mzazrivec/manageiq,fbladilo/manageiq,josejulio/manageiq,israel-hdez/manageiq,ailisp/manageiq,jameswnl/manageiq,yaacov/manageiq,skateman/manageiq,kbrock/manageiq,tzumainn/manageiq,hstastna/manageiq,mfeifer/manageiq,mkanoor/manageiq,yaacov/manageiq,KevinLoiseau/manageiq,jvlcek/manageiq,billfitzgerald0120/manageiq,ManageIQ/manageiq,NickLaMuro/manageiq,NaNi-Z/manageiq,gerikis/manageiq,pkomanek/manageiq,ilackarms/manageiq,jameswnl/manageiq,romanblanco/manageiq,maas-ufcg/manageiq,ilackarms/manageiq,pkomanek/manageiq,NaNi-Z/manageiq,tinaafitz/manageiq,ailisp/manageiq,NaNi-Z/manageiq,KevinLoiseau/manageiq,jntullo/manageiq,josejulio/manageiq,mzazrivec/manageiq,jntullo/manageiq,jrafanie/manageiq,pkomanek/manageiq,maas-ufcg/manageiq,borod108/manageiq,NickLaMuro/manageiq,agrare/manageiq,gerikis/manageiq,maas-ufcg/manageiq,jvlcek/manageiq,skateman/manageiq,borod108/manageiq,skateman/manageiq,jvlcek/manageiq,jameswnl/manageiq,romanblanco/manageiq,syncrou/manageiq,romaintb/manageiq,kbrock/manageiq,fbladilo/manageiq,hstastna/manageiq,branic/manageiq,gmcculloug/manageiq,agrare/manageiq,israel-hdez/manageiq,ailisp/manageiq,NickLaMuro/manageiq,yaacov/manageiq,syncrou/manageiq,matobet/manageiq,tinaafitz/manageiq,billfitzgerald0120/manageiq,maas-ufcg/manageiq,ailisp/manageiq,djberg96/manageiq,d-m-u/manageiq,maas-ufcg/manageiq,maas-ufcg/manageiq,juliancheal/manageiq,KevinLoiseau/manageiq,mresti/manageiq,juliancheal/manageiq,ManageIQ/manageiq,fbladilo/manageiq,mkanoor/manageiq,branic/manageiq,matobet/manageiq,andyvesel/manageiq,syncrou/manageiq,chessbyte/manageiq,KevinLoiseau/manageiq,mresti/manageiq,jameswnl/manageiq,djberg96/manageiq,josejulio/manageiq,aufi/manageiq,mkanoor/manageiq,romaintb/manageiq,andyvesel/manageiq,d-m-u/manageiq,NaNi-Z/manageiq,mfeifer/manageiq,romanblanco/manageiq,jntullo/manageiq,lpichler/manageiq,josejulio/manageiq,mresti/manageiq,borod108/manageiq,ManageIQ/manageiq,hstastna/manageiq,tzumainn/manageiq,KevinLoiseau/manageiq,tzumainn/manageiq,matobet/manageiq,aufi/manageiq,israel-hdez/manageiq,durandom/manageiq,jrafanie/manageiq,pkomanek/manageiq,lpichler/manageiq,KevinLoiseau/manageiq,durandom/manageiq,mfeifer/manageiq,lpichler/manageiq,gerikis/manageiq,romaintb/manageiq,yaacov/manageiq,tinaafitz/manageiq,aufi/manageiq,hstastna/manageiq,romanblanco/manageiq,israel-hdez/manageiq,mzazrivec/manageiq,durandom/manageiq
9360c63340392dfe527988d880002fb9cae6cd62
roles/serverspec/tasks/main.yml
roles/serverspec/tasks/main.yml
--- # tasks file for serverspec - name: install bundler command: gem install bundler --no-ri --no-rdoc args: creates: /usr/local/bin/bundler when: serverspec_run_tests and serverspec_install_bundler tags: - serverspec - name: install bundle files command: bundle install --path vendor args: chdir: "{{ serverspec_tests_path }}" creates: "{{ serverspec_tests_path }}/vendor" when: serverspec_run_tests tags: - serverspec - name: run serverspec tests command: "bundle exec rake serverspec:{{ test_role }}" args: chdir: "{{ serverspec_tests_path }}" when: test_role is defined and serverspec_run_tests tags: - serverspec
--- # tasks file for serverspec - name: install bundler command: gem install bundler --no-ri --no-rdoc args: creates: /usr/local/bin/bundler when: serverspec_run_tests and serverspec_install_bundler tags: - serverspec - name: install bundle files command: bundle install --path vendor args: chdir: "{{ serverspec_tests_path }}" creates: "{{ serverspec_tests_path }}/vendor" when: serverspec_run_tests tags: - serverspec - name: run serverspec tests sudo: yes command: "bundle exec rake serverspec:{{ test_role }}" args: chdir: "{{ serverspec_tests_path }}" when: test_role is defined and serverspec_run_tests tags: - serverspec
Add sudo:yes to be able to test containers
Add sudo:yes to be able to test containers
YAML
mit
mehulsbhatt/Apollo,Capgemini/Apollo,siliconmeadow/Apollo,phungmanhcuong/Appolo,atsaki/Apollo,ravbaba/Apollo,siliconmeadow/Apollo,atsaki/Apollo,enxebre/Apollo,ravbaba/Apollo,Capgemini/Apollo,phungmanhcuong/Appolo,Capgemini/Apollo,enxebre/Apollo,mehulsbhatt/Apollo
941d1b4ca58543a6c5dee95ae15d65d198177690
packages/cd/cdeps.yaml
packages/cd/cdeps.yaml
homepage: '' changelog-type: '' hash: dc591d449c03ea2f2b5a7f633a69476f295ad7b7daa0143a978f42c3941e2535 test-bench-deps: base: -any hspec: -any cdeps: -any maintainer: [email protected] synopsis: Extract dependencies from C code. changelog: '' basic-deps: bytestring: -any base: ! '>=4.8 && <5' text: -any filepath: -any array: -any cdeps: -any optparse-applicative: -any directory: -any all-versions: - '0.1.0.0' - '0.1.0.1' - '0.1.0.2' - '0.1.1.0' - '0.1.1.1' - '0.1.1.2' - '0.1.1.3' - '0.1.1.4' author: Vanessa McHale latest: '0.1.1.4' description-type: markdown description: ! '# cdeps This package provides the ability to extract C dependencies from source code. It can be used with [shake](https://shakebuild.com) or for other purposes. ' license-name: BSD3
homepage: '' changelog-type: '' hash: ceb98ceada23b4a0b0aefec518e1d7a74d9586eff6482ddf15b2bdadbb3e7cb2 test-bench-deps: base: -any hspec: -any cdeps: -any maintainer: [email protected] synopsis: Extract dependencies from C code. changelog: '' basic-deps: bytestring: -any base: ! '>=4.11 && <5' text: -any filepath: -any array: -any cdeps: -any optparse-applicative: -any directory: -any all-versions: - '0.1.0.0' - '0.1.0.1' - '0.1.0.2' - '0.1.1.0' - '0.1.1.1' - '0.1.1.2' - '0.1.1.3' - '0.1.1.4' - '0.1.1.5' author: Vanessa McHale latest: '0.1.1.5' description-type: markdown description: ! '# cdeps This package provides the ability to extract C dependencies from source code. It can be used with [shake](https://shakebuild.com) or for other purposes. ' license-name: BSD3
Update from Hackage at 2018-07-03T00:19:54Z
Update from Hackage at 2018-07-03T00:19:54Z
YAML
mit
commercialhaskell/all-cabal-metadata
df12301c7f2b0a3ac3bb8010c10c88ed4ae2a4f3
wercker.yml
wercker.yml
box: node:boron build: steps: - script: name: Install bower code: npm install -g bower - npm-install - npm-test deploy: steps: - kwakayama/[email protected]
box: node:boron build: steps: - script: name: Install global npm fluff code: npm install -g bower grunt-cli - npm-install - npm-test deploy: steps: - kwakayama/[email protected]
Add grunt-cli to build box
fix(CD): Add grunt-cli to build box
YAML
mit
SHMEDIALIMITED/shm-youtube
2377b70bce19a2f994f77d7ea6ac2a8032e12490
docs/docs-nav.yml
docs/docs-nav.yml
- title: Features children: - title: "@ClearSystemProperty and @SetSystemProperty" url: /docs/system-properties/ - title: "@DefaultLocale and @DefaultTimeZone" url: /docs/default-locale-timezone/ - title: "Range Sources" url: /docs/range-sources - title: "@RepeatFailedTest" url: /docs/repeat-failed-test - title: "TempDirectory" url: /docs/temp-directory/ - title: "Vintage @Test" url: /docs/vintage-test/
# NOTE: The URLs need a trailing slash or the selected nav element # won't be highlighted. - title: Features children: - title: "@ClearSystemProperty and @SetSystemProperty" url: /docs/system-properties/ - title: "@DefaultLocale and @DefaultTimeZone" url: /docs/default-locale-timezone/ - title: "Range Sources" url: /docs/range-sources/ - title: "@RepeatFailedTest" url: /docs/repeat-failed-test/ - title: "TempDirectory" url: /docs/temp-directory/ - title: "Vintage @Test" url: /docs/vintage-test/
Add trailing slashes to doc nav URLs
Add trailing slashes to doc nav URLs
YAML
epl-1.0
CodeFX-org/junit-io
d9cdd5ed5c855f78ab0d5b0f12ce72124c4f4c58
.travis/default.yml
.travis/default.yml
rabbit: host: rabbit port: 5672 vhost: / user: guest pass: guest admin_pass: janusoverlord queues: standard: from: from-janus to: to-janus admin: from: from-janus-admin to: to-janus-admin janus: cluster: enabled: false count: 1 session: keepalive: 55 plugins: - janus.plugin.echotest - janus.plugin.videoroom - janus.plugin.sip gem: log: level: info
rabbit: host: rabbit port: 5672 vhost: / user: guest pass: guest admin_pass: janusoverlord queues: standard: from: from-janus to: to-janus admin: from: from-janus-admin to: to-janus-admin janus: cluster: enabled: false count: 1 session: keepalive: 55 plugins: - janus.plugin.echotest - janus.plugin.videoroom - janus.plugin.sip gem: log: level: debug
Fix level log for travis test
Fix level log for travis test
YAML
mit
dazzl-tv/ruby-rabbitmq-janus
b3ce4cc325ea154d707c455d20ad15a449d47eb4
.github/workflows/configlet-sync.yml
.github/workflows/configlet-sync.yml
name: Configlet Sync on: schedule: - cron: '0 0 1 * *' jobs: configlet: runs-on: ubuntu-latest steps: - uses: actions/[email protected] - name: Fetch configlet uses: exercism/github-actions/configlet-ci@main - name: Configlet Sync run: configlet sync --tests --docs --metadata --filepaths
name: Configlet Sync on: workflow_dispatch: schedule: - cron: '0 0 1 * *' jobs: configlet: runs-on: ubuntu-latest steps: - uses: actions/[email protected] - name: Fetch configlet uses: exercism/github-actions/configlet-ci@main - name: Configlet Sync run: configlet sync --tests --docs --metadata --filepaths
Add workflow_dispatch trigger to configlet sync workflow
Add workflow_dispatch trigger to configlet sync workflow
YAML
mit
exercism/xlisp,exercism/xlisp
6d0ba6af6edbbdd7f9865d628fdbe415651f7932
doc/environment.yml
doc/environment.yml
name: xbpch-docs channels: - conda-forge - defaults dependencies: - python=3.5 - dask>=0.14 - xarray>=0.9 - ipython - future - matplotlib - numpydoc - sphinx
name: xbpch-docs channels: - conda-forge - defaults dependencies: - python=3.5 - dask>=0.14 - xarray>=0.9 - pandas - ipython - future - cartopy - matplotlib - numpydoc - sphinx
Add pandas and cartopy to RTD env
Add pandas and cartopy to RTD env
YAML
mit
darothen/xbpch
8d2ec5601fa65a8b9cf7417a90c93dff7599e16f
.github/workflows/github-actions.yml
.github/workflows/github-actions.yml
name: Build RCAMP and run unit tests on: [push, pull_request] jobs: run_rcamp_tests: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Build run: | export UWSGI_UID=$(id -u) export UWSGI_GID=$(id -g) docker-compose build - name: Start Service run: | docker-compose up -d docker-compose exec rcamp-uwsgi bash -c 'sleep 30s && python manage.py migrate' - name: Run Tests run: docker-compose exec rcamp-uwsgi python3 manage.py test - name: Stop Containers run: docker-compose down --remove-orphans
name: Build RCAMP and run unit tests on: [push, pull_request] jobs: run_rcamp_tests: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Setup Env run: | export UWSGI_UID=$(id -u); echo "UWSGI_UID=${UWSGI_UID}" >> $GITHUB_ENV export UWSGI_GID=$(id -g); echo "UWSGI_GID=${UWSGI_GID}" >> $GITHUB_ENV - name: Test env run: | echo "${{ env.UWSGI_UID }}" echo "${{ env.UWSGI_GID }}" - name: Build run: | docker-compose build - name: Start Service run: | docker-compose up -d docker-compose exec rcamp-uwsgi bash -c 'sleep 30s && python manage.py migrate' - name: Run Tests run: docker-compose exec rcamp-uwsgi python3 manage.py test - name: Stop Containers run: docker-compose down --remove-orphans
Make a step so set UWSGI env variables for entire job
Make a step so set UWSGI env variables for entire job
YAML
mit
ResearchComputing/RCAMP,ResearchComputing/RCAMP,ResearchComputing/RCAMP,ResearchComputing/RCAMP
2197ad594338ce891c0b908cfbeba8709b718647
changelogs/unreleased/rename-builds-controller.yml
changelogs/unreleased/rename-builds-controller.yml
--- title: Change builds in the URL to jobs. Backward URLs were also added merge_request: 11407 author:
--- title: Change /builds in the URL to /-/jobs. Backward URLs were also added merge_request: 11407 author:
Update changelog to reflect the new scheme
Update changelog to reflect the new scheme
YAML
mit
stoplightio/gitlabhq,mmkassem/gitlabhq,t-zuehlsdorff/gitlabhq,mmkassem/gitlabhq,t-zuehlsdorff/gitlabhq,jirutka/gitlabhq,stoplightio/gitlabhq,dreampet/gitlab,iiet/iiet-git,t-zuehlsdorff/gitlabhq,mmkassem/gitlabhq,dreampet/gitlab,iiet/iiet-git,axilleas/gitlabhq,jirutka/gitlabhq,dplarson/gitlabhq,jirutka/gitlabhq,jirutka/gitlabhq,axilleas/gitlabhq,mmkassem/gitlabhq,dplarson/gitlabhq,stoplightio/gitlabhq,dreampet/gitlab,t-zuehlsdorff/gitlabhq,iiet/iiet-git,iiet/iiet-git,axilleas/gitlabhq,dreampet/gitlab,axilleas/gitlabhq,stoplightio/gitlabhq,dplarson/gitlabhq,dplarson/gitlabhq
c40d0fafd45c3ebab37d3cf30310037866692baa
docker-compose.yaml
docker-compose.yaml
version: '2' services: # Etcd for our service registry etcd: image: quay.io/coreos/etcd:v2.3.6 command: [ -advertise-client-urls, "http://${KILLRVIDEO_DOCKER_IP}:2379", -listen-client-urls, "http://0.0.0.0:2379" ] ports: # The client port - "2379:2379" environment: SERVICE_2379_NAME: etcd # Registrator to register containers with Etcd registrator: image: gliderlabs/registrator:latest # Tell registrator where the etcd HTTP API is and to use the docker VM's IP command: [ -ip, "$KILLRVIDEO_DOCKER_IP", "etcd://etcd:2379/killrvideo/services" ] volumes: # So registrator can use the docker API to inspect containers - "/var/run/docker.sock:/tmp/docker.sock" depends_on: - etcd # DataStax Enterprise dse: image: luketillman/datastax-enterprise:4.8.7 ports: - "9042:9042" cap_add: - IPC_LOCK environment: SERVICE_9042_NAME: cassandra
version: '2' services: # Etcd for our service registry etcd: image: quay.io/coreos/etcd:v2.3.6 command: [ -advertise-client-urls, "http://${KILLRVIDEO_DOCKER_IP}:2379", -listen-client-urls, "http://0.0.0.0:2379" ] ports: # The client port - "2379:2379" environment: SERVICE_2379_NAME: etcd # Registrator to register containers with Etcd registrator: image: gliderlabs/registrator:latest # Tell registrator where the etcd HTTP API is and to use the docker VM's IP command: [ -ip, "$KILLRVIDEO_DOCKER_IP", "etcd://etcd:2379/killrvideo/services" ] volumes: # So registrator can use the docker API to inspect containers - "/var/run/docker.sock:/tmp/docker.sock" depends_on: - etcd # DataStax Enterprise dse: image: luketillman/datastax-enterprise:4.8.7 ports: - "9042:9042" cap_add: - IPC_LOCK ulimits: memlock: -1 environment: SERVICE_9042_NAME: cassandra
Set ulimit for memlock to unlimited by default
Set ulimit for memlock to unlimited by default
YAML
apache-2.0
KillrVideo/killrvideo-docker-common
ac6dd3cb921c2d19f39ce5cea8cdc529897a7590
.codecov.yml
.codecov.yml
ignore: - "/Tests/*" comment: layout: "header, diff" behavior: default require_changes: no
ignore: - "/Tests/*" comment: layout: "header, diff" behavior: default require_changes: no coverage: status: project: default: target: auto threshold: null base: auto paths: "Sources/*"
Configure commit statuses (ignore coverage of Tests files).
Configure commit statuses (ignore coverage of Tests files).
YAML
mit
lorentey/GlueKit,lorentey/GlueKit,lorentey/GlueKit
043c63aac633570fc578bc788aff2f78bce88c4a
tests/acceptance/config/behat.yml
tests/acceptance/config/behat.yml
default: autoload: '': %paths.base%/../features/bootstrap suites: default: paths: - %paths.base%/../features contexts: # Base contexts - ActorContext - NextcloudTestServerContext: nextcloudTestServerHelper: NextcloudTestServerLocalApacheHelper - FeatureContext - FileListContext - FilesAppContext - LoginPageContext # Talk app contexts - ChatContext - ConversationInfoContext - ConversationListContext - ParticipantListContext - TalkAppContext extensions: Behat\MinkExtension: sessions: default: selenium2: ~ John: selenium2: ~ Jane: selenium2: ~
default: autoload: '': %paths.base%/../features/bootstrap suites: default: paths: - %paths.base%/../features contexts: # Base contexts - ActorContext - NextcloudTestServerContext: nextcloudTestServerHelper: NextcloudTestServerLocalApacheHelper - FeatureContext - FileListContext - FilesAppContext - LoginPageContext # Talk app contexts - ChatContext - ConversationInfoContext - ConversationListContext - ParticipantListContext - TalkAppContext extensions: Behat\MinkExtension: sessions: default: selenium2: wd_host: %selenium.server% John: selenium2: wd_host: %selenium.server% Jane: selenium2: wd_host: %selenium.server%
Set "wd_host" using the simulated "selenium.server" variable
Set "wd_host" using the simulated "selenium.server" variable The "wd_host" parameter of Selenium2 sessions specify the URL used by the Selenium driver to connect with the Selenium server. Thus, when the Selenium server is at a different host or port than the default one (for example, when run on Drone) the "wd_host" parameter must be set for each of the Selenium2 sessions defined in "behat.yml". Before, this was done by the "run-local.sh" script in the acceptance tests of the server by extending the parameters from the "behat.yml" file, but this prevented adding custom Selenium2 sessions in the acceptance tests of apps (as "run-local.sh" had to know about those sessions). To address that limitation now "run-local.sh" replaces the simulated %selenium.server% variable by the appropriate value in the "behat.yml" file used by the acceptance tests before Behat is run, and thus the "wd_host" parameter must be explicitly included in all Selenium2 sessions. Note that the file that is modified is the one inside the Docker container used to run the acceptance tests, so the original file is not touched. Signed-off-by: Daniel Calviño Sánchez <[email protected]>
YAML
agpl-3.0
nextcloud/spreed,nextcloud/spreed,nextcloud/spreed
a8343d33388b27a7a44e70731286f4808b4774c0
.github/workflows/ci.yml
.github/workflows/ci.yml
name: CI on: push: branches: [ master ] pull_request: branches: [ master ] jobs: test: runs-on: ubuntu-latest strategy: matrix: ruby: - 2.7 - 3.0 rails_version: - 5.2.4.4 - 6.0.3.4 - 6.1.0 steps: - uses: actions/checkout@v2 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - name: Install dependencies run: bundle install env: RAILS_VERSION: ${{ matrix.rails_version }} - name: Run tests run: bundle exec rake env: RAILS_VERSION: ${{ matrix.rails_version }}
name: CI on: push: branches: [ master ] pull_request: branches: [ master ] jobs: test: runs-on: ubuntu-latest strategy: matrix: ruby: - 2.7 rails_version: - 5.2.4.4 - 6.0.3.4 - 6.1.0 steps: - uses: actions/checkout@v2 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - name: Install dependencies run: bundle install env: RAILS_VERSION: ${{ matrix.rails_version }} - name: Run tests run: bundle exec rake env: RAILS_VERSION: ${{ matrix.rails_version }}
Drop ruby 3 from the matrix
Drop ruby 3 from the matrix
YAML
mit
cbeer/engine_cart
7a9674d5e41a3342f36f4148f871f412dcd27311
tasks/main.yml
tasks/main.yml
--- # tasks file for nightly_security_updates_aws - name: make ~/bin if not exist file: state: directory path: ~/bin/ - name: put shell script in place copy: src: amazon_linux_updates.sh dest: ~/bin/amazon_linux_updates.sh mode: 0755 - name: create nightly cron job cron: name: Update security packages minute: 11 hour: 8 # Time is always UTC in AWS job: ~/bin/amazon_linux_updates.sh - name: allow no tty for running yum --security update sudo: yes template: src: cron_security_update dest: /etc/sudoers.d/cron_security_update validate: 'visudo -cf %s' mode: 0440 - name: allow init 6 with no tty sudo: yes template: src: cron_init_6 dest: /etc/sudoers.d/cron_init_6 validate: 'visudo -cf %s' mode: 0440
--- # tasks file for nightly_security_updates_aws - name: make ~/bin if not exist file: state: directory path: ~/bin/ - name: put shell script in place copy: src: amazon_linux_updates.sh dest: ~/bin/amazon_linux_updates.sh mode: 0755 - name: create nightly cron job cron: name: Update security packages minute: 11 hour: 8 # Time is always UTC in AWS job: ~/bin/amazon_linux_updates.sh - name: allow no tty for running yum --security update become: true template: src: cron_security_update dest: /etc/sudoers.d/cron_security_update validate: 'visudo -cf %s' mode: 0440 - name: allow init 6 with no tty become: true template: src: cron_init_6 dest: /etc/sudoers.d/cron_init_6 validate: 'visudo -cf %s' mode: 0440
Change sudo to become for ansible 2+
Change sudo to become for ansible 2+
YAML
bsd-3-clause
mredar/nightly_security_update_yum