Instruction
stringlengths
14
778
input_code
stringlengths
0
4.24k
output_code
stringlengths
1
5.44k
Add a simple Travis-CI test configuration.
language: python python: - "2.7" - "3.3" - "3.4" - "3.5" install: "pip install -r requirements.txt" script: ./testnet-ripe-anchors.py --ipv4
Add simple, generic EC2 instance template
# etc/simple-ec2.yml AWSTemplateFormatVersion: "2010-09-09" Parameters: KeyPairName: Description: > The EC2 key pair used for the instance Type: AWS::EC2::KeyPair::KeyName EnvironmentType: Type: String Description: Environment this instance is used by Default: Staging AllowedValues: - Staging - Production VPCStackName: Type: String Description: VPC stack to launch the instance into ImageId: Type: String AlarmSnsTopic: Type: String Description: Optional topic arn for CloudWatch alarms UniqueName: Type: String Description: Unique name for associated resources (CamelCase; should not include env name) AllowedPattern: ^[a-zA-Z][a-zA-Z0-9\-]*$ Conditions: IsProduction: !Equals [!Ref EnvironmentType, Production] CreateAlarms: !Not [!Equals [!Ref AlarmSnsTopic, ""]] Resources: SolrInstance: Type: AWS::EC2::Instance Properties: InstanceType: t2.medium ImageId: !Ref ImageId KeyName: !Ref KeyPairName SecurityGroupIds: - !GetAtt SecurityGroup.GroupId SubnetId: Fn::ImportValue: !Sub ${VPCStackName}-Subnet1 Tags: # - Key: Project # Value: !Ref ProjectName - Key: Environment Value: !Ref EnvironmentType - Key: "prx:cloudformation:stack-name" Value: !Ref AWS::StackName - Key: "prx:cloudformation:stack-id" Value: !Ref AWS::StackId SecurityGroup: Type: AWS::EC2::SecurityGroup DeletionPolicy: Retain Properties: GroupName: !Sub ${UniqueName}${EnvironmentType}Solr GroupDescription: !Sub ${UniqueName} ${EnvironmentType} Solr Security Group SecurityGroupIngress: - CidrIp: 0.0.0.0/0 IpProtocol: tcp FromPort: 22 ToPort: 22 - CidrIp: 0.0.0.0/0 IpProtocol: tcp FromPort: 8009 ToPort: 8009 - CidrIp: 0.0.0.0/0 IpProtocol: tcp FromPort: 8983 ToPort: 8983 Tags: - Key: Name Value: !Sub ${UniqueName}${EnvironmentType}Solr # - Key: Project # Value: !Ref ProjectName - Key: Environment Value: !Ref EnvironmentType - Key: "prx:cloudformation:stack-name" Value: !Ref AWS::StackName - Key: "prx:cloudformation:stack-id" Value: !Ref AWS::StackId VpcId: Fn::ImportValue: !Sub ${VPCStackName}-VPC
Add CodeQL workflow for GitHub code scanning
name: "CodeQL" on: push: branches: [ "devel" ] pull_request: branches: [ "devel" ] schedule: - cron: "4 0 * * 1" jobs: analyze: name: Analyze runs-on: ubuntu-latest permissions: actions: read contents: read security-events: write strategy: fail-fast: false matrix: language: [ python ] steps: - name: Checkout uses: actions/checkout@v3 - name: Initialize CodeQL uses: github/codeql-action/init@v2 with: languages: ${{ matrix.language }} queries: +security-and-quality - name: Autobuild uses: github/codeql-action/autobuild@v2 - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v2 with: category: "/language:${{ matrix.language }}"
Update from Hackage at 2017-01-15T21:20:35Z
homepage: http://www.github.com/nick8325/quickcheck-with-counterexamples changelog-type: '' hash: 0baa75300aac7cda92cdd93d5e24f7c83bd86ef1314caa582b5b5218731a7094 test-bench-deps: {} maintainer: nick@smallbone.se synopsis: Get counterexamples from QuickCheck as Haskell values changelog: '' basic-deps: base: ! '>=4 && <5' QuickCheck: -any template-haskell: -any all-versions: - '1.0' author: Nick Smallbone latest: '1.0' description-type: text description: ! "When QuickCheck finds a counterexample, it prints it out but\ndoesn't save it so that the programmer can access it. This can be\nannoying when debugging.\n\nThis library provides a small extension to QuickCheck that returns\ncounterexamples as normal Haskell values. To use it, just import\nTest.QuickCheck.Counterexamples instead of Test.QuickCheck.\nThe library is largely compatible with normal QuickCheck, but the\nreturn types of quickCheck and related functions are changed to\ninclude a counterexample.\n\nHere is an example of getting counterexamples.\nSuppose we have the following property:\n\nprop_reverse_append :: [Int] -> [Int] -> Property\nprop_reverse_append xs ys =\n reverse (xs++ys) === reverse xs ++ reverse ys\n\nIf we look at the type of quickCheck, we see that it will return a\ncounterexample:\n\n> :t quickCheck prop_reverse_append\nquickCheck prop_reverse_append :: IO (Maybe ([Int] :&: [Int] :&: ()))\n\nThe Maybe is there because we get Nothing if the property succeeds;\n\":&:\" is a datatype of pairs.\n\nIf we run QuickCheck, we can get the counterexample as a normal\nHaskell value:\n\n> Just (xs :&: ys :&: ()) <- quickCheck prop_reverse_append\n*** Failed! Falsifiable (after 5 tests and 4 shrinks): \n[0]\n[1]\n[1,0] /= [0,1]\n\n> :t xs\nxs :: [Int]\n\n> xs\n[0]\n\n> ys\n[1]\n" license-name: BSD3
Add config for Travis CI.
# See http://about.travis-ci.org/docs/user/build-configuration/ language: scala scala: - "2.9.2" - "2.9.1" jdk: - oraclejdk7 - openjdk7 script: "sh build.sh"
Update from Hackage at 2017-04-29T08:51:56Z
homepage: https://github.com/Lokathor/pcgen-hs changelog-type: '' hash: 986c7773b270f3fca1105d280398a90c44acfc1ffee1b7781432c33b966bfee8 test-bench-deps: base: -any hspec: -any criterion: -any pcgen: -any random: -any deepseq: -any QuickCheck: -any maintainer: zefria@gmail.com synopsis: A fast, pseudorandom number generator. changelog: '' basic-deps: base: ! '>=4.7 && <5' random: -any all-versions: - '1.0.0' author: Daniel "Lokathor" Gee latest: '1.0.0' description-type: markdown description: ! "# pcgen\r\n[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)\r\n\r\nA fast pseudorandom number generator, as presented by M.E. O'Neill on\r\n[http://www.pcg-random.org](http://www.pcg-random.org). See that site for\r\ninformation on the particulars of the technique used.\r\n\r\nThis implementation uses two Word64 of internal data and produces a Word32 of\r\noutput per step. It's two to three times as fast as StdGen.\r\n\r\nThe generator implements the RandomGen typeclass from the\r\n[random](https://hackage.haskell.org/package/random-1.1/docs/System-Random.html)\r\npackage, but also provides its step function as a stand alone function that you\r\ncan use without the typeclass.\r\n\r\nEven works on Raspberry Pi.\r\n" license-name: Apache-2.0
Add example stack to see fluentd at work
containers: elasticsearch: image: michaloo/elasticsearch run: publish: ["9200:9200"] detach: true fluentd: image: michaloo/fluentd run: link: - "elasticsearch:elasticsearch" volume: - "/var/run/docker.sock:/tmp/docker.sock" - "/var/lib/docker:/var/lib/docker" detach: true log_producer: image: ubuntu:14.04 run: env: ["LOG=true"] detach: true cmd: - bash - -c - 'while true; do >&2 echo "error"; sleep 1; done;'
Test scss files on CircleCI.
dependencies: pre: - gem install sass test: override: - file=$(find . -name "[^_]*.scss" -type f); echo -e "$file"; echo $file | xargs -n1 sass >/dev/null
Add translation strings for the errors
--- en: vagrant_blocker: errors: box_blocked_by_running_vm: | Machine '%{name}' has blocked this machine from running. box_blocks_running_vm: | This machine is blocking already running machine '%{name}'.
Test against Ruby 2.0.0, 2.1, 2.2, 2.3, 2.4, and 2.5 on AppVeyor
version: 1.0.{build}-{branch} environment: matrix: - RUBY_VERSION: 200 - RUBY_VERSION: 200-x64 - RUBY_VERSION: 21 - RUBY_VERSION: 21-x64 - RUBY_VERSION: 22 - RUBY_VERSION: 22-x64 - RUBY_VERSION: 23 - RUBY_VERSION: 23-x64 - RUBY_VERSION: 24 - RUBY_VERSION: 24-x64 - RUBY_VERSION: 25 - RUBY_VERSION: 25-x64 install: - set PATH=C:\Ruby%RUBY_VERSION%\bin;%PATH% - bundle install build: off before_test: - ruby -v - gem -v - bundle -v test_script: - bundle exec rake
Add github actions for PHP
name: Construct on: push: branches: [ "master" ] pull_request: branches: [ "master" ] permissions: contents: read jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Validate composer.json and composer.lock run: composer validate --strict - name: Cache Composer packages id: composer-cache uses: actions/cache@v3 with: path: vendor key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} restore-keys: | ${{ runner.os }}-php- - name: Install dependencies run: composer install --prefer-dist --no-progress - name: Run test suite run: composer construct:test
Update from Forestry.io - Updated Forestry configuration
--- upload_path: "/uploads/:year:/:month:/:day:" frontmatter_file_url_template: "/uploads/:year:/:month:/:day:" body_file_url_template: "/uploads/:year:/:month:/:day:" new_page_extension: md auto_deploy: false admin_path: webhook_url: collections:
Update from Forestry.io - Updated Forestry configuration
--- label: Blog Post hide_body: false fields: - type: text name: title label: title - type: field_group name: header label: header fields: - type: file name: image label: image - type: text name: layout label: layout - type: boolean name: author_profile label: author_profile - type: boolean name: read_time label: read_time - type: boolean name: comments label: comments - type: boolean name: share label: share - type: boolean name: related label: related
Add initial Travis CI configuration
language: objective-c script: 'curl -s -H "Authorization: token $ATOM_ACCESS_TOKEN" -H "Accept: application/vnd.github.v3.raw" https://api.github.com/repos/atom/apm/contents/script/build-package | sh' env: global: secure: hnkxnq9KeJFL9vDRnu42wrRjC6cN27p4cjNWLJmCPjKJWQB69ZMOQjbCc7S9P0urdASvNx3bDEV3bkbv3IlgODoNI9G+02aGG18hskHjFiH666mYp+5sDtqm7Uoy26xHwMC/7Alv9I0++mo8J0udOZnO6dlmAIBlixsFSwyO3WE=
Update from Hackage at 2019-05-24T19:54:13Z
homepage: '' changelog-type: markdown hash: 600a8db4b9ea8660046f6cc11f06abc91cbdc52f0b2571856f88f5a7d4033041 test-bench-deps: {} maintainer: vanessa.mchale@iohk.io synopsis: File-based debug output changelog: | # debug-dump ## 0.1.0.0 Initial release basic-deps: bytestring: -any base: ! '>=4.7 && <5' text: -any all-versions: - 0.1.0.0 author: Vanessa McHale latest: 0.1.0.0 description-type: markdown description: | # debug-dump This is a library providing simple functionality like that found in `Debug.Trace`, but it dumps output to a file rather than the terminal. license-name: BSD-3-Clause
Add an example of multiple shared folders
--- memory: 1024 cpus: 2 shared_folders: - map: ~/Documents/Code/NBCU/Sites to: /var/www/html - map: ~/Documents/Code/some_other_thing/drupal to: /var/www/some_other_thing sites: - subscription: nbcupublisher7 shortname: nbcupublisher7 vhost: servername: local.publisher7.com documentroot: /var/www/html/Publisher7/docroot - subscription: some_other_thing shortname: some_other_thing vhost: servername: some_other_thing.dev documentroot: /var/www/some_other_thing config: nodejs: false phantomjs: false ruby: true splunk: false mailcatcher: true
Add config for Github Pages.
theme: jekyll-theme-minimal title: Page Sizer description: Google Docs add-on for modifying capitalization of text. logo: https://raw.githubusercontent.com/burnnat/capitals/master/assets/Capitals-Promo.png show_downloads: false
Add Punters.com.au to list of oembed providers
--- - provider_name: Punters provider_url: https://www.punters.com.au endpoints: - schemes: - https://www.punters.com.au/* - https://punters.com.au/* url: https://www.punters.com.au/api/oembed/ example_urls: - https://www.punters.com.au/api/oembed/?format=json&url=https://www.punters.com.au/horses/Sons-of-John_300143/ ...
Update from Hackage at 2020-10-31T21:49:15Z
homepage: '' changelog-type: markdown hash: 74985d73ab915764cdbd354e917d88ed44109a0c6355356cab540220a2326727 test-bench-deps: {} maintainer: dan.firth@homotopic.tech synopsis: Allows you to write FromDhall instances for Compdoc changelog: | # Changelog for compdoc-dhall-decoder ## v0.1.0.0 * Working compdoc decoder for dhall. basic-deps: either: -any base: '>=4.7 && <5' composite-base: -any dhall: -any text: -any pandoc: -any composite-aeson: -any compdoc: -any all-versions: - 0.1.0.0 author: Daniel Firth latest: 0.1.0.0 description-type: markdown description: | # compdoc-dhall-decoder This module allows you to decode a `Compdoc` value from markdown. You should use newtypes like so: ``` newtype MyDoc = MyDoc (Record (Compdoc '[])) deriving stock (Eq, Show, Generic) instance D.FromDhall MyDoc where autoWith options = fmap MyDoc $ compdocDecoder def (recordJsonFormat RNil) options ``` license-name: BSD-3-Clause
Add CDH5.4 support in sahara
clusters: - plugin_name: cdh plugin_version: 5.4.0 image: %cdh_5_4_0_image% node_group_templates: - name: worker-dn flavor_id: %ci_flavor_id% node_processes: - HDFS_DATANODE volumes_per_node: 2 volumes_size: 2 auto_security_group: true node_configs: &ng_configs DATANODE: dfs_datanode_du_reserved: 0 - name: worker-nm flavor_id: %ci_flavor_id% node_processes: - YARN_NODEMANAGER auto_security_group: true - name: worker-nm-dn flavor_id: %ci_flavor_id% node_processes: - YARN_NODEMANAGER - HDFS_DATANODE volumes_per_node: 2 volumes_size: 2 auto_security_group: true node_configs: *ng_configs - name: manager flavor_id: %large_flavor_id% node_processes: - CLOUDERA_MANAGER auto_security_group: true - name: master-core flavor_id: %medium_flavor_id% node_processes: - HDFS_NAMENODE - YARN_RESOURCEMANAGER auto_security_group: true - name: master-additional flavor_id: %medium_flavor_id% node_processes: - OOZIE_SERVER - YARN_JOBHISTORY - HDFS_SECONDARYNAMENODE - HIVE_METASTORE - HIVE_SERVER2 auto_security_group: true cluster_template: name: cdh540 node_group_templates: manager: 1 master-core: 1 master-additional: 1 worker-nm-dn: 1 worker-nm: 1 worker-dn: 1 cluster_configs: HDFS: dfs_replication: 1 cluster: name: %cluster_name% scenario: - run_jobs edp_jobs_flow: hadoop_2
Use Xcode 9 to build BTree
language: objective-c osx_image: xcode8.2 script: - xcrun xcodebuild -project BTree.xcodeproj -scheme BTree-macOS test - xcrun xcodebuild -project BTree.xcodeproj -scheme BTree-iOS - xcrun xcodebuild -project BTree.xcodeproj -scheme BTree-watchOS - xcrun xcodebuild -project BTree.xcodeproj -scheme BTree-tvOS - swift build after_success: bash <(curl -s https://codecov.io/bash)
language: objective-c osx_image: xcode9 script: - xcrun xcodebuild -project BTree.xcodeproj -scheme BTree-macOS test - xcrun xcodebuild -project BTree.xcodeproj -scheme BTree-iOS - xcrun xcodebuild -project BTree.xcodeproj -scheme BTree-watchOS - xcrun xcodebuild -project BTree.xcodeproj -scheme BTree-tvOS - swift build after_success: bash <(curl -s https://codecov.io/bash)
Add Lock Threads in Github
# Configuration for lock-threads - https://github.com/dessant/lock-threads # Number of days of inactivity before a closed issue or pull request is locked daysUntilLock: 30 # Skip issues and pull requests created before a given timestamp. Timestamp must # follow ISO 8601 (`YYYY-MM-DD`). Set to `false` to disable skipCreatedBefore: false # Issues and pull requests with these labels will not be locked. Set to `[]` to disable exemptLabels: [] # Label to add before locking, such as `outdated`. Set to `false` to disable lockLabel: false # Comment to post before locking. Set to `false` to disable lockComment: > This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. # Assign `resolved` as the reason for locking. Set to `false` to disable setLockReason: false # Limit to only `issues` or `pulls` # only: issues # Optionally, specify configuration settings just for `issues` or `pulls` # issues: # exemptLabels: # - help-wanted # lockLabel: outdated pulls: daysUntilLock: 60 # Repository to extend settings from # _extends: repo
Update from Hackage at 2019-08-05T22:02:14Z
homepage: https://github.com/https://github.com/isovector/type-sets/tree/master/cmptype#readme changelog-type: markdown hash: ebce26f912cf6ff9434172fe8e47a78c66522e74286b05144997d63020d86b5d test-bench-deps: {} maintainer: sandy@sandymaguire.me synopsis: Write plugins for magic type families with ease changelog: | # Changelog for type-sets ## 0.1.0.0 --- 2019-08-05 Initial release! ## Unreleased changes basic-deps: ghc: ! '>=8.6.3 && <8.8' base: ! '>=4.7 && <5' syb: ! '>=0.7 && <0.8' ghc-tcplugins-extra: ! '>=0.3 && <0.4' all-versions: - 0.1.0.0 author: Sandy Maguire latest: 0.1.0.0 description-type: markdown description: |+ # cmptype ## Dedication > Comparison is an act of violence against the self. > > Iyanla Vanzant ## Overview `cmptype` provides a magical type family that lets you compare types: ```haskell type family CmpType (a :: k) (b :: k) :: Ordering ``` When you turn on the `-fplugin=Type.Compare.Plugin` flag, it will let you compare arbitrary types. Why would you want such a thing? Probably because you want to write a type-level container that isn't a fucking list! ## Acknowledgments Big thanks to [Boris Rozinov][oofp] for the initial idea, and for making as much coffee as I could drink while I wrote it. Also thanks to [Christiaan Baaij][chistiaanb] and [Matt Pickering][mpickering] for their indispensable help convincing GHC to do the right thing here. [oofp]: https://github.com/oofp [chistiaanb]: https://christiaanb.github.io/ [mpickering]: http://mpickering.github.io/ license-name: BSD-3-Clause
Update from Hackage at 2019-02-04T07:32:54Z
homepage: '' changelog-type: '' hash: a7021d3331924f68897d95dfb39b562c2296e54ffab9d1d1956e06fe4d95eed4 test-bench-deps: {} maintainer: Oleg Grenrus <oleg.grenrus@iki.fi> synopsis: ! 'swap and assoc: Symmetric and Semigroupy Bifunctors' changelog: '' basic-deps: base: ! '>=4.3 && <4.13' bifunctors: ! '>=5.5.2 && <5.6' all-versions: - '1' author: Oleg Grenrus <oleg.grenrus@iki.fi> latest: '1' description-type: haddock description: |- Provides generalisations of @swap :: (a,b) -> (b,a)@ and @assoc :: ((a,b),c) -> (a,(b,c))@ to @Bifunctor@s supporting similar operations (e.g. @Either@, @These@). license-name: BSD-3-Clause
Update from Hackage at 2015-06-13T15:40:04+0000
homepage: '' changelog-type: '' hash: 1fbfc47d64db1feee1f0c95f52c79dab549ae457c4dbb71c4109e2b3068142aa test-bench-deps: linear-grammar: ! '>=0.0.2.1' base: -any hspec: -any containers: -any bifunctors: -any mtl: -any transformers: -any QuickCheck: -any maintainer: Athan Clark <athan.clark@gmail.com> synopsis: Very basic simplex implementation. changelog: '' basic-deps: linear-grammar: ! '>=0.0.2.1' base: ! '>=4.6 && <5' bifunctors: -any mtl: -any transformers: -any QuickCheck: -any all-versions: - '0.0.0.1' author: Athan Clark <athan.clark@gmail.com> latest: '0.0.0.1' description-type: haddock description: '' license-name: BSD3
Add Github actions testing of style/unit
name: delivery on: [push, pull_request] jobs: delivery: runs-on: ubuntu-latest steps: - name: Check out code uses: actions/checkout@master - name: Run Chef Delivery uses: actionshub/chef-delivery@master env: CHEF_LICENSE: accept-no-persist
Add missing service broker permissions
apiVersion: rbac.authorization.k8s.io/v1 kind: Role metadata: labels: app: enmasse name: enmasse.io:service-broker rules: - apiGroups: [ "" ] resources: [ "services" ] verbs: [ "get", "list", "watch" ] - apiGroups: [ "" ] resources: [ "configmaps", "secrets" ] verbs: [ "create", "update", "patch", "get", "list", "watch", "delete" ] - apiGroups: [ "admin.enmasse.io" ] resources: [ "addressspaceplans", "addressplans", "standardinfraconfigs", "brokeredinfraconfigs", "authenticationservices" ] verbs: [ "get", "list", "watch" ] - apiGroups: [ "", "route.openshift.io" ] resources: [ "routes", "routes/custom-host", "routes/status"] verbs: [ "create", "update", "patch", "get", "list", "watch", "delete" ]
apiVersion: rbac.authorization.k8s.io/v1 kind: Role metadata: labels: app: enmasse name: enmasse.io:service-broker rules: - apiGroups: [ "" ] resources: [ "services" ] verbs: [ "get", "list", "watch" ] - apiGroups: [ "" ] resources: [ "configmaps", "secrets" ] verbs: [ "create", "update", "patch", "get", "list", "watch", "delete" ] - apiGroups: [ "admin.enmasse.io" ] resources: [ "addressspaceplans", "addressplans", "standardinfraconfigs", "brokeredinfraconfigs", "authenticationservices", "consoleservices" ] verbs: [ "get", "list", "watch" ] - apiGroups: [ "", "route.openshift.io" ] resources: [ "routes", "routes/custom-host", "routes/status"] verbs: [ "create", "update", "patch", "get", "list", "watch", "delete" ]
Update from Hackage at 2016-01-05T22:15:45+0000
homepage: http://github.com/nicodelpiano/ranges changelog-type: '' hash: 2b7c76febb15854164c8c7079735bedb2692a7756d8b89fef44237b90bcb2e79 test-bench-deps: base: ! '>=4.7 && <4.8' hspec: ==2.* HUnit: ! '>=1.2' numeric-ranges: -any QuickCheck: ! '>=2.7' maintainer: ndel314@gmail.com synopsis: A framework for numeric ranges. changelog: '' basic-deps: base: ! '>=4.7 && <4.8' all-versions: - '0.1.0.0' author: Nicolas Del Piano latest: '0.1.0.0' description-type: haddock description: '' license-name: MIT
Add flake8 CI with github action
name: flake8 Lint on: [push, pull_request] jobs: flake8-lint: runs-on: ubuntu-latest name: Lint steps: - name: Check out source repository uses: actions/checkout@v2 - name: Set up Python environment uses: actions/setup-python@v1 with: python-version: "3.8" - name: flake8 Lint uses: py-actions/flake8@v1
Remove support for 1.8.6 in Travis CI
rvm: - 1.8.6 - 1.8.7 - 1.9.2 - ree - jruby - ruby-head - rbx-2.0
rvm: - 1.8.7 - 1.9.2 - ree - jruby - ruby-head - rbx-2.0
Add clang/gcc compilers to Travis CI build
language: cpp os: - linux - osx script: - make config=release - make config=coverage test after_success: - bash <(curl -s https://codecov.io/bash)
language: cpp os: - linux - osx compiler: - clang - gcc script: - make config=release - make config=coverage test after_success: - bash <(curl -s https://codecov.io/bash)
Add SensioLabs Insight configuration to repository
pre_composer_script: | #!/bin/bash # Do what you need to setup your project cp app/config/parameters.yml.dist app/config/parameters.yml sed -i -e \"s/secret:.*/secret: YoLo/\" app/config/parameters.yml sed -i -e \"s/server_version:.*/server_version: 5.5/\" app/config/parameters.yml post_composer_script: | #!/bin/bash # Do what you need to configure your project # ./app/console doctrine:database:create --no-interaction # ./app/console doctrine:schema:create --no-interaction php_ini: "extension=openssl.so\nextension=mcrypt.so\n" global_exclude_dirs: - vendor - vendors - test - tests - Tests - spec - features - Fixtures - DataFixtures - var exclude_patterns: - app/check.php - app/SymfonyRequirements.php - web/config.php - 'web/app_*.php' rules: # Symfony ~2.7 build contain deprecated calls. third_party.use_deprecated_service: enabled: false # False positive about redirection in my build. symfony.controller.missing_redirect_after_post: enabled: false
Add event exporter deployment to the fluentd-gcp addon
apiVersion: v1 kind: ServiceAccount metadata: name: event-exporter-sa namespace: kube-system labels: k8s-app: event-exporter kubernetes.io/cluster-service: "true" addonmanager.kubernetes.io/mode: Reconcile --- apiVersion: rbac.authorization.k8s.io/v1beta1 kind: ClusterRoleBinding metadata: name: event-exporter-rb namespace: kube-system labels: k8s-app: event-exporter kubernetes.io/cluster-service: "true" addonmanager.kubernetes.io/mode: Reconcile roleRef: apiGroup: rbac.authorization.k8s.io kind: ClusterRole name: view subjects: - kind: ServiceAccount name: event-exporter-sa namespace: kube-system --- apiVersion: apps/v1beta1 kind: Deployment metadata: name: event-exporter-v0.1.0 namespace: kube-system labels: k8s-app: event-exporter kubernetes.io/cluster-service: "true" addonmanager.kubernetes.io/mode: Reconcile spec: replicas: 1 template: metadata: labels: k8s-app: event-exporter spec: serviceAccountName: event-exporter-sa containers: # TODO: Add resources in 1.8 - name: event-exporter image: gcr.io/google-containers/event-exporter:v0.1.0 command: - '/event-exporter' - name: prometheus-to-sd-exporter image: gcr.io/google-containers/prometheus-to-sd:v0.1.2 command: - /monitor - --component=event_exporter - --stackdriver-prefix=container.googleapis.com/internal/addons - --whitelisted-metrics=stackdriver_sink_received_entry_count,stackdriver_sink_request_count,stackdriver_sink_successfully_sent_entry_count volumeMounts: - name: ssl-certs mountPath: /etc/ssl/certs terminationGracePeriodSeconds: 30 volumes: - name: ssl-certs hostPath: path: /etc/ssl/certs
Add bob.db.verification.filelist recipe [skip appveyor]
{% set version = "2.0.3" %} package: name: bob.db.verification.filelist version: {{ version }} source: fn: bob.db.verification.filelist-{{ version }}.zip md5: e3b6452056c1afb61705f673431cd9e2 url: https://pypi.python.org/packages/source/b/bob.db.verification.filelist/bob.db.verification.filelist-{{ version }}.zip build: number: 0 skip: true # [not linux] script: python -B setup.py install --single-version-externally-managed --record record.txt requirements: build: - python - setuptools - bob.core - bob.io.base - bob.db.base - bob.db.verification.utils run: - python - bob.core - bob.io.base - bob.db.base - bob.db.verification.utils test: commands: - nosetests -sv bob.db.verification.filelist imports: - bob - bob.db - bob.db.verification - bob.db.verification.filelist requires: - nose about: home: https://pypi.python.org/pypi/bob.db.verification.filelist license: GNU General Public License v3 (GPLv3) summary: Verification File List Database Access API for Bob extra: recipe-maintainers: - 183amir
Add release note for glanceclient 2.17.0
--- prelude: | This version of python-glanceclient finalizes client-side support for the Glance multiple stores feature. See the `Multi Store Support <https://docs.openstack.org/glance/latest/admin/multistores.html>`_ section of the Glance documentation for more information. Support for Glance multiple stores has been available on an EXPERIMENTAL basis since release 2.12.0. For the Train release, the Image service has finalized how API users interact with multiple stores. See the "Upgrade Notes" section of this document for information about changes this has necessitated in multistore support in the glanceclient. fixes: - | Bug 1822052_: HTTPClient: actually set a timeout for requests .. _1822052: https://code.launchpad.net/bugs/1822052 upgrade: - | The following Command Line Interface calls now take a ``--store`` option: * ``glance image-create`` * ``glance image-create-via-import`` * ``glance image-upload`` * ``glance image-import`` The value for this option is a store identifier. The list of available stores may be obtained from the ``glance stores-info`` command. - | The ``--backend`` option, available on some commands on an experimental basis since release 2.12.0, is no longer available. Use ``--store`` instead.
Add YAML bindings for the E1000 Ethernet controller
# # Copyright (c) 2018 Intel Corporation. # # SPDX-License-Identifier: Apache-2.0 # title: Intel E1000 Ethernet controller id: intel,e1000 version: 0.1 description: > This is a representation of the Intel E1000 Ethernet controller properties: compatible: type: string category: required description: compatible strings constraint: "intel,e1000" reg: type: array description: mmio register space generation: define category: required interrupts: type: array category: required description: required interrupts generation: define ...
Build TitanHide with GitHub Actions
name: Visual Studio on: [push, pull_request] jobs: build: # Skip building pull requests from the same repository if: ${{ github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository) }} runs-on: windows-2019 steps: - name: Checkout uses: actions/checkout@v2 - name: Add msbuild to PATH uses: microsoft/setup-msbuild@v1.0.2 - name: Build run: | msbuild.exe ${{ github.event.repository.name }}.sln /m /verbosity:minimal /t:Rebuild /p:Configuration=Release /p:Platform=x64 msbuild.exe ${{ github.event.repository.name }}.sln /m /verbosity:minimal /t:Rebuild /p:Configuration=Release /p:Platform=Win32 ./release.bat - uses: actions/upload-artifact@v2 with: name: ${{ github.event.repository.name }}-${{ github.sha }} path: bin/ - name: Compress artifacts uses: papeloto/action-zip@v1 if: ${{ startsWith(github.ref, 'refs/tags/') }} with: files: bin/ dest: ${{ github.event.repository.name }}-${{ github.sha }}.zip - name: Release uses: softprops/action-gh-release@v1 if: ${{ startsWith(github.ref, 'refs/tags/') }} with: prerelease: ${{ !startsWith(github.ref, 'refs/tags/v') || contains(github.ref, '-pre') }} files: ${{ github.event.repository.name }}-${{ github.sha }}.zip env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Add GitHub action for checking Java compilation
name: Java Continuous Integration on: [push] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up JDK 1.8 uses: actions/setup-java@v1 with: java-version: 1.8 - name: Build with Maven run: mvn -B package --file pom.xml
Update from Hackage at 2017-08-26T16:14:43Z
homepage: https://github.com/alexander-ignatyev/morpheus changelog-type: '' hash: 61cc9c8f5df0b608218b50d3d0d647d62b7e3d564e182691b50c21e45ff27330 test-bench-deps: test-framework-hunit: ! '>=0.3.0.2' test-framework: ! '>=0.8.1.1' MonadRandom: ! '>=0.4.2.3' base: -any hmatrix-morpheus: -any test-framework-quickcheck2: ! '>=0.3.0.3' criterion: -any HUnit: ! '>=1.3.1.1' hmatrix: -any maintainer: ignatyev.alexander@gmail.com synopsis: Low-level machine learning auxiliary functions. changelog: '' basic-deps: base: ! '>=4.7 && <5' hmatrix-morpheus: -any hmatrix: -any all-versions: - '0.1.0.0' author: Alexander Ignatyev latest: '0.1.0.0' description-type: haddock description: ! 'Purely functional interface to morpheus based on hmatrix. Morpheus library contains a bunch of cache line aware numerical algorithms suitable for using as a low-level primitives to build machine learning applications.' license-name: BSD3
Deploy github workflows on galactic branch
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions name: Linux Build and Test on Galactic on: push: branches: [ galactic-geochelone ] pull_request: branches: [ galactic-geochelone ] workflow_dispatch: jobs: build: runs-on: ubuntu-20.04 strategy: fail-fast: false matrix: node-version: [10.X, 12.x, 14.X, 16.X, 17.X] steps: - name: Setup ROS2 uses: ros-tooling/setup-ros@v0.3 with: required-ros-distributions: galactic - name: Install test-msgs on Linux run: | sudo apt install ros-rolling-test-msgs - uses: actions/checkout@v3 with: ref: galactic-geochelone - name: Setup Node.js ${{ matrix.node-version }} uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} - name: Run test suite on Linux run: | source /opt/ros/galactic/setup.bash npm i npm test
Update from Hackage at 2016-06-02T23:42:09+0000
homepage: '' changelog-type: '' hash: 5db85aa1b73348a941ebe6039f94c004e52242eadfc888653d6804b95d5dd065 test-bench-deps: {} maintainer: mark@swift-nav.com synopsis: SBP to UDP changelog: '' basic-deps: streaming-commons: -any bytestring: -any optparse-generic: -any base: ! '>=4.7 && <5' basic-prelude: -any network: -any protolude: -any conduit: -any conduit-extra: -any sbp: -any binary-conduit: -any binary: -any resourcet: -any all-versions: - '0.0.1' author: '' latest: '0.0.1' description-type: haddock description: SBP to UDP license-name: BSD3
Update from Hackage at 2020-05-29T14:28:29Z
homepage: https://github.com/expipiplus1/orbit#readme changelog-type: markdown hash: 68550e6c699a8606ef44eef4677b8a653947c480fe888fdeab54a4a18be0162d test-bench-deps: tasty-th: -any checkers: -any base: -any ad: -any doctest: -any tagged: -any units-defs: -any exact-real: -any units: -any tasty-quickcheck: -any random: -any tasty: -any QuickCheck: -any orbits: -any maintainer: Joe Hermaszewski <keep.it.real@monoid.al> synopsis: Types and functions for Kepler orbits. changelog: | # Change Log ## WIP ## 0.3 - Switch to `units` from `uom-plugin` basic-deps: base: '>=4.8 && <5' ad: '>=4.3.2' units-defs: '>=2.2' exact-real: '>=0.12' units: -any all-versions: - '0.3' author: Joe Hermaszewski latest: '0.3' description-type: markdown description: |+ orbit ===== *For my uncle Zbys who watched the planets and stars.* ----- Types and functions for dealing with Kepler orbits. The main data type is `Orbit`, which describes the path of a body in orbit. Nomenclature ------------ | Symbol | Meaning | Notes | |--------|----------------------------------|--------------------------------| | a | Semi-major axis | Negative for hyperbolic orbits | | b | Semi-minor axis | Negative for hyperbolic orbits | | e | Eccentricity | | | q | Periapsis | | | i | Inclination | | | μ | Standard gravitational parameter | | | Ω | Longitude of the ascending node | | | l | Semi-latus Rectum | | | n | Mean motion | | | p | Period | | | t | Time since periapse | | | M | Mean anomaly | | | E | Eccentric anomaly | Only for elliptic orbits | | ν | True anomaly | | Note that in the Haskell source uppercase symbols such as Ω and M are written with a leading underscore. Implementation -------------- This package makes use of the [`units`](https://hackage.haskell.org/package/units) package to ensure that the implementation is correct regarding units of measure. Contributing ------------ Contributions and bug reports are welcome! Please feel free to contact me on GitHub or as "jophish" on freenode. -Joe license-name: BSD-3-Clause
Add opsfile for cf-app-sd release
--- # requires capi-release > v1.47.0 # requires bosh-dns-release >= 0.2.0 # requires opsfile: https://github.com/cloudfoundry/cf-deployment/blob/master/operations/experimental/use-bosh-dns-for-containers.yml - type: replace path: /instance_groups/name=diego-cell/jobs/- value: name: bosh-dns-adapter release: cf-app-sd properties: dnshttps: server: ca: ((cf_app_sd_ca.ca)) client: tls: ((cf_app_sd_client_tls)) - type: replace path: /instance_groups/name=router/jobs/- value: name: service-discovery-controller release: cf-app-sd properties: dnshttps: server: tls: ((cf_app_sd_server_tls)) client: ca: ((cf_app_sd_ca.ca)) - type: replace path: /instance_groups/name=diego-cell/jobs/name=route_emitter/properties/internal_routes? value: enabled: true - type: replace path: /variables/- value: name: cf_app_sd_ca type: certificate options: is_ca: true common_name: service-discovery-controller.service.cf.internal - type: replace path: /variables/- value: name: cf_app_sd_server_tls type: certificate options: ca: cf_app_sd_ca common_name: service-discovery-controller.service.cf.internal extended_key_usage: - server_auth - type: replace path: /variables/- value: name: cf_app_sd_client_tls type: certificate options: ca: cf_app_sd_ca common_name: service-discovery-controller.service.cf.internal extended_key_usage: - client_auth - type: replace path: /releases/- value: name: cf-app-sd sha1: ee224657514a6961e9f8ec9e6b6d4427f9b0b457 url: https://bosh.io/d/github.com/cloudfoundry/cf-app-sd-release?v=0.2.0 version: 0.2.0
Revert "Set TMPDIR to fix Dir.mktmpdir under jRuby"
language: ruby before_install: - sudo apt-get install lighttpd libfcgi-dev libmemcache-dev memcached - mkdir /tmp/rack env: TMPDIR=/tmp/rack install: - gem env version | grep '^\(2\|1.\(8\|9\|[0-9][0-9]\)\)' || gem update --system - gem install --conservative rake - rake deps script: rake ci rvm: - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - rbx - jruby - ree branches: # The old 1.1, 1.2, and 1.3 branches aren't correctly setup yet. only: master notifications: email: false irc: "irc.freenode.org#rack" matrix: allow_failures: - rvm: 2.0.0
before_install: sudo apt-get install lighttpd libfcgi-dev libmemcache-dev memcached install: - gem env version | grep '^\(2\|1.\(8\|9\|[0-9][0-9]\)\)' || gem update --system - gem install --conservative rake - rake deps script: rake ci rvm: - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - rbx - jruby - ree branches: # The old 1.1, 1.2, and 1.3 branches aren't correctly setup yet. only: master notifications: email: false irc: "irc.freenode.org#rack" matrix: allow_failures: - rvm: 2.0.0
Add sample docker compose file
# Demo docker-compose file for nginx nginx: image: wicksy/nginx:latest ports: - 80:80 - 443:443 environment: - NGINX_ROOT=/var/lib/nginx/html - NGINX_INDEX=index.html
Add Fedora 21 Beaker node
HOSTS: fedora-21: roles: - master # TODO: Update to F21 once RPM is created by Puppet folks # See: https://github.com/dfarrell07/dfarrell07-opendaylight/issues/10#issuecomment-70542612 platform: fedora-20-x86_64 # TODO: Move to an offical-ish F21 box once one goes on Vagrantcloud # See: https://github.com/opscode/bento/issues/312 box: TFDuesing/Fedora-21 box_url: https://vagrantcloud.com/TFDuesing/boxes/Fedora-21 hypervisor: vagrant CONFIG: log_level: verbose type: foss
Update from Hackage at 2019-08-21T16:28:44Z
homepage: '' changelog-type: text hash: 1165e8ca83fd23b5233ae24713145a1d492efca032b7d2642162fb0ca798c5d3 test-bench-deps: {} maintainer: Joey Hess <id@joeyh.name> synopsis: git-lfs protocol changelog: | haskell-git-lfs (1.0.0) unstable; urgency=medium * Initial release. -- Joey Hess <id@joeyh.name> Tue, 20 Aug 2019 21:41:55 -0400 basic-deps: http-client: ! '>=0.5 && <=0.7' bytestring: ! '>=0.10 && <=0.11' case-insensitive: ! '>=1.2 && <=1.3' base: ! '>=4.5 && <5' text: ! '>=1.2 && <=1.3' containers: ! '>=0.6 && <=0.7' network-uri: ! '>=2.6 && <=2.7' http-types: ! '>=0.7 && <=0.13' aeson: ! '>=1.3 && <=1.5' all-versions: - 1.0.0 author: Joey Hess latest: 1.0.0 description-type: haddock description: An implementation of the git-lfs protocol. license-name: AGPL-3.0-only
Update from Hackage at 2016-03-15T21:22:10+0000
homepage: http://rel4tion.org/projects/time-cache changelog-type: text hash: 51c3a3ef53a39a245e7a284ace9f0888a9a57e15c925971862ddeec0f8760ee9 test-bench-deps: {} maintainer: fr33domlover@riseup.net synopsis: Cache current time and formatted time text changelog: ! "The changes are recorded by the version control system, Darcs. To see a log\nquickly from the terminal, run:\n\n $ darcs changes --repo http://hub.darcs.net/fr33domlover/time-cache\n\nThere is also a web interface at <http://hub.darcs.net> which, among other\nthings, can display the history log.\n\nTo see the log in a local clone, first get a copy of the repository if you\nhaven't yet:\n\n $ darcs get http://hub.darcs.net/fr33domlover/time-cache\n\nThen move into the newly created directory and run darcs:\n\n $ cd time-cache\n $ darcs changes\n" basic-deps: base: ! '>=4.8 && <5' time: ! '>=1.5.0.1' time-units: ! '>=1.0.0' text: ! '>=1.2.2.0' auto-update: ! '>=0.1.3' transformers: ! '>=0.4.2.0' all-versions: - '0.1' author: fr33domlover latest: '0.1' description-type: markdown description: ! 'See the .cabal file for more info and link to project website the version control. The official download location is Hackage: <http://hackage.haskell.org/package/time-cache> This library is free software, and is committed to software freedom. It is released to the public domain using the CC0 Public Domain Dedication. For the boring "legal" details see the file ''COPYING''. See the file ''INSTALL'' for hints on installation. The file ''ChangeLog'' explains how to see the history log of the changes done in the code. ''NEWS'' provides a friendly overview of the changes for each release. ' license-name: PublicDomain
Set up CI with Azure Pipelines
# .NET Desktop # Build and run tests for .NET Desktop or Windows classic desktop solutions. # Add steps that publish symbols, save build artifacts, and more: # https://docs.microsoft.com/azure/devops/pipelines/apps/windows/dot-net trigger: - master pool: vmImage: 'windows-latest' variables: solution: '**/*.sln' buildPlatform: 'Any CPU' buildConfiguration: 'Release' steps: - task: NuGetToolInstaller@1 - task: NuGetCommand@2 inputs: restoreSolution: '$(solution)' - task: VSBuild@1 inputs: solution: '$(solution)' platform: '$(buildPlatform)' configuration: '$(buildConfiguration)' - task: VSTest@2 inputs: platform: '$(buildPlatform)' configuration: '$(buildConfiguration)'
Add bob.io.video recipe [skip appveyor]
{% set version = "2.0.6" %} package: name: bob.io.video version: {{ version }} source: fn: bob.io.video-{{ version }}.zip md5: 565a63ff92df7af7a2dddce65d1b5f9a url: https://pypi.python.org/packages/source/b/bob.io.video/bob.io.video-{{ version }}.zip build: entry_points: - bob_video_test.py = bob.io.video.script.video_test:main number: 0 skip: true # [not linux] script: python -B setup.py install --single-version-externally-managed --record record.txt requirements: build: - python - setuptools - pillow - bob.extension >2.0.4 - bob.blitz - bob.core - bob.io.base - ffmpeg - gcc # [linux] run: - python - pillow - bob.extension >2.0.4 - bob.blitz - bob.core - bob.io.base - ffmpeg - libgcc # [linux] test: commands: - bob_video_test.py --help - nosetests -sv bob.io.video imports: - bob - bob.io - bob.io.video - bob.io.video.script requires: - nose about: home: http://github.com/bioidiap/bob.io.video license: Modified BSD License (3-clause) summary: Video I/O support for Bob extra: recipe-maintainers: - 183amir
Add Github actions testing of style/unit
name: delivery on: [push, pull_request] jobs: delivery: runs-on: ubuntu-latest steps: - name: Check out code uses: actions/checkout@master - name: Run Chef Delivery uses: actionshub/chef-delivery@master env: CHEF_LICENSE: accept-no-persist
Configure workflow build and test.
name: Build main JDK 15 on: push: branches: [ main ] pull_request: branches: [ main ] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up JDK 15 uses: actions/setup-java@v1 with: java-version: 15 - name: Build with Maven run: mvn clean test --file pom.xml
Update from Hackage at 2019-02-13T07:41:43Z
homepage: https://github.com/iand675/multipool-postgresql-simple#readme changelog-type: markdown hash: b99f0137d70fc8d227fa313ef484af6e4be5935319f49ba955c3c98a98e5e7a6 test-bench-deps: base: ! '>=4.7 && <5' unordered-containers: -any resource-pool: -any unliftio-core: -any postgresql-simple: -any mtl: -any multipool-postgresql-simple: -any multipool: -any maintainer: ian@iankduncan.com synopsis: '' changelog: | # Changelog for multipool-postgresql-simple ## Unreleased changes basic-deps: base: ! '>=4.7 && <5' unordered-containers: -any resource-pool: -any unliftio-core: -any postgresql-simple: -any mtl: -any multipool: -any all-versions: - 0.1.0.0 author: Ian Duncan latest: 0.1.0.0 description-type: markdown description: | # multipool-postgresql-simple license-name: BSD-3-Clause
Remove support for PHP 5.6 and PHP 7.0
language: php php: - 5.6 - 7.0 - 7.1 - 7.2 - 7.3 - nightly env: - COMPOSER_OPTS="" - COMPOSER_OPTS="--prefer-lowest" matrix: allow_failures: - php: nightly exclude: - php: 5.6 env: COMPOSER_OPTS="--prefer-lowest" fast_finish: true sudo: false before_install: - if [[ "$TRAVIS_PHP_VERSION" != "5.6" ]]; then composer require --dev --no-update phpunit/phpunit ~6 ; fi before_script: - if [[ "$TRAVIS_PHP_VERSION" = "5.6" ]]; then pecl install mailparse-2.1.6 ; fi - if [[ "$TRAVIS_PHP_VERSION" != "5.6" ]]; then pecl install mailparse ; fi - composer self-update - composer update $COMPOSER_OPTS script: - mkdir -p build/logs - ./vendor/bin/phpunit --coverage-text --coverage-clover build/logs/clover.xml - ./vendor/bin/phpcs src --standard=psr2 - ./vendor/bin/phpcs tests --standard=psr2 after_script: - ./vendor/bin/coveralls -v
language: php php: - 7.1 - 7.2 - 7.3 - nightly env: - COMPOSER_OPTS="" - COMPOSER_OPTS="--prefer-lowest" matrix: allow_failures: - php: nightly fast_finish: true sudo: false before_script: - pecl install mailparse - composer self-update - composer update $COMPOSER_OPTS script: - mkdir -p build/logs - ./vendor/bin/phpunit --coverage-text --coverage-clover build/logs/clover.xml - ./vendor/bin/phpcs src --standard=psr2 - ./vendor/bin/phpcs tests --standard=psr2 after_script: - ./vendor/bin/coveralls -v
Update from Hackage at 2020-02-14T01:12:52Z
homepage: https://github.com/GaloisInc/lumberjack changelog-type: markdown hash: d17a3804c2231a168cc76a6e0a8123e5564df154fb1bebc16ff777c2cae9c5b9 test-bench-deps: {} maintainer: kquick@galois.com synopsis: Trek through your code forest and make logs changelog: | # Revision history for lumberjack ## 0.1.0.0 -- 2020-02-13 * Initial Lumberjack logger implementation, based on internal usage. basic-deps: exceptions: -any lumberjack: -any base: ! '>=4.12 && <4.16' time: -any text: -any contravariant: -any mtl: -any prettyprinter: -any prettyprinter-ansi-terminal: -any all-versions: - 0.1.0.0 author: Kevin Quick latest: 0.1.0.0 description-type: haddock description: |- This is a logging facility. Yes, there are many, and this is the one with a beard, wearing flannel and boots, that gets the job done. It's not the fanciest, it doesn't have a cargo-van full of features. This logger is designed to be straightforward to use, provide a good set of standard features, and be useable across a broad set of code. * Logging is a monadic activity. This activity is most often performed in a monad stack with a MonadIO context to allow writing to files. * The specific logging action implementaions are managed separately from the actions of logging messages in the target code. This allows logging to be configurable and the manner of logging to be specified at startup time without requiring changes in the code from which log messages are being generated. * The logging implementation code can use cofunctors to adjust existing logging. * Main code will typically retrieve the logging actions from a Reader context in your monad stack. * The prettyprinter package is used for formatting. license-name: ISC
Update from Hackage at 2018-02-28T06:19:05Z
homepage: https://github.com/metrix-ai/eternity-timestamped changelog-type: '' hash: eb044382a6ae36d11aeb50966d97c1d7d96ccf943244bb946e430398182295bf test-bench-deps: {} maintainer: Metrix.AI Ninjas <ninjas@metrix.ai> synopsis: Automatic timestamping for Eternity changelog: '' basic-deps: eternity: ! '>=0.1 && <0.2' cereal: ! '>=0.5.4 && <0.6' base: ! '>=4.8 && <5' time: ! '>=1.8 && <2' text: ! '>=1 && <2' potoki: ! '>=0.9 && <0.10' generic-random: ! '>=1 && <1.1' foldl: ! '>=1.3.5 && <2' hashable: ! '>=1.2 && <2' attoparsec: ! '>=0.13 && <0.14' QuickCheck: ! '>=2.8.1 && <3' directory: ! '>=1.3 && <2' all-versions: - '0.1' author: Nikita Volkov <nikita.y.volkov@mail.ru> latest: '0.1' description-type: haddock description: '' license-name: MIT
Add Probot Stale default configuration
# 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 an Issue or Pull Request with the stale label is closed. # Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale. daysUntilClose: 7 # Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable exemptLabels: - pinned - security - "[Status] Maybe Later" # Set to true to ignore issues in a project (defaults to false) exemptProjects: false # Set to true to ignore issues in a milestone (defaults to false) exemptMilestones: false # 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 removing the stale label. # unmarkComment: > # Your comment here. # Comment to post when closing a stale Issue or Pull Request. # closeComment: > # Your comment here. # Limit the number of actions per hour, from 1-30. Default is 30 limitPerRun: 30 # Limit to only `issues` or `pulls` # only: issues # Optionally, specify configuration settings that are specific to just 'issues' or 'pulls': # pulls: # daysUntilStale: 30 # markComment: > # This pull request 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. # issues: # exemptLabels: # - confirmed
Update from Hackage at 2018-01-06T04:49:37Z
homepage: https://github.com/alunduil/network-arbitrary changelog-type: markdown hash: a133ddb88a7efae57c384905ebe9e788ca97cdb0ec21ecd365d3b4c945f1920e test-bench-deps: base: ! '>=4.6 && <4.12' hspec: ==2.4.* network-uri: ==2.6.* QuickCheck: ! '>=2.9 && <2.11' maintainer: alunduil@alunduil.com synopsis: Arbitrary Instances for Network Types changelog: ! '# Revision history for network-arbitrary ## 0.1.0.0 -- 2018-01-05 * First version. ' basic-deps: base: ! '>=4.6 && <4.12' network-uri: ==2.6.* QuickCheck: ! '>=2.9 && <2.11' all-versions: - '0.1.0.0' author: Alex Brandt latest: '0.1.0.0' description-type: markdown description: ! '# Description [Arbitrary] Instances for [Network][network-category] Types # Getting Started Documentation is available on [Hackage]. A great guide to [QuickCheck] is <https://begriffs.com/posts/2017-01-14-design-use-quickcheck.html>. # Reporting Issues Any issues discovered should be recorded on [github][issues]. If you believe you''ve found an error or have a suggestion for a new feature; please, ensure that it is reported. If you would like to contribute a fix or new feature; please, submit a pull request. This project follows [git flow] and utilizes [travis] to automatically check pull requests before a manual review. # Contributors The `COPYRIGHT` file contains a list of contributors with their respective copyrights and other information. If you submit a pull request and would like attribution; please, add yourself to the `COPYRIGHT` file. [Arbitrary]: https://hackage.haskell.org/package/QuickCheck/docs/Test-QuickCheck-Arbitrary.html#t:Arbitrary [git flow]: http://nvie.com/posts/a-successful-git-branching-model/ [Hackage]: https://hackage.haskell.org/package/network-uri-json [Haskell]: https://www.haskell.org/ [issues]: https://github.com/alunduil/network-arbitrary/issues [network-category]: https://hackage.haskell.org/packages/#cat:Network [QuickCheck]: https://hackage.haskell.org/package/QuickCheck [travis]: https://travis-ci.org/alunduil/network-arbitrary ' license-name: MIT
Update from Forestry.io - Updated Forestry configuration
--- label: Post hide_body: false fields: - type: text name: title label: title - type: textarea name: excerpt label: excerpt - type: field_group name: header label: header fields: - type: file name: teaser label: teaser - type: list name: categories label: categories - type: list name: tags label: tags - type: boolean name: comments label: comments
Update from Hackage at 2020-03-22T04:25:43Z
homepage: https://github.com/cutsea110/aop-prelude.git changelog-type: markdown hash: a6538fb2a06580e0dd714111c0666d521b9528e3626cb75f3c29e7f8ac451892 test-bench-deps: base: ^>=4.12.0.0 ghc-prim: ^>=0.5.3 maintainer: cutsea110@gmail.com synopsis: prelude for Algebra of Programming changelog: | # Revision history for aop-prelude ## 0.1.0.0 -- YYYY-mm-dd * First version. Released on an unsuspecting world. basic-deps: base: ^>=4.12.0.0 ghc-prim: ^>=0.5.3 all-versions: - 0.1.0.0 author: cutsea110 latest: 0.1.0.0 description-type: haddock description: prelude for Algenra of Programming, the original code was created by Richard Bird. license-name: BSD-3-Clause
Update from Hackage at 2020-12-31T14:39:54Z
homepage: https://hackage.haskell.org/package/phonetic-languages-simlified-base changelog-type: markdown hash: f48b2d312e15052eb0b122642df0ccca6cf9e6ce78b4cac4b4165ac468c62713 test-bench-deps: {} maintainer: olexandr543@yahoo.com synopsis: A simplified version of the phonetic-languages functionality common for some different realizations. changelog: | # Revision history for phonetic-languages-simplified-base ## 0.1.0.0 -- 2020-12-31 * First version. Released on an unsuspecting world. basic-deps: phonetic-languages-permutations-array: '>=0.1 && <1' base: '>=4.8 && <4.15' subG: '>=0.4.2 && <1' all-versions: - 0.1.0.0 author: OleksandrZhabenko latest: 0.1.0.0 description-type: haddock description: A simplified version of the phonetic-languages functionality. Tries to use only necessary functionality and reduce the other ones. license-name: MIT
Add workflow to push changes to standalone repos
#/ # @license Apache-2.0 # # Copyright (c) 2021 The Stdlib Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. #/ # Workflow name: name: standalone_push_changes # Workflow triggers: on: push: # Workflow jobs: jobs: # Define a job for publishing standalone packages... publish: # Define a display name: name: "Push Changes to Standalone Packages" # Define the type of virtual host machine: runs-on: ubuntu-latest # Define the sequence of job steps... steps: # Checkout the repository: - name: 'Checkout repository' uses: actions/checkout@v2 with: # Specify whether to remove untracked files before checking out the repository: clean: false # Retrieve all commits from the branch: fetch-depth: 0 # Specify whether to download Git-LFS files: lfs: false timeout-minutes: 10 # Install Node.js: - name: 'Install Node.js' uses: actions/setup-node@v2 with: node-version: 15 timeout-minutes: 5 # Install dependencies: - name: 'Install dependencies' run: | npm install timeout-minutes: 15 # Retrieve list of changed stdlib packages in a push or pull request: - name: 'Retrieve list of changed stdlib packages' id: 'changed-packages' uses: stdlib-js/changed-packages-action@v1 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Push changes to the packages' repositories: - name: 'Push changes to packages' env: GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }} run: | echo "Pushing changes to the following repositories: ${{ steps.changed-packages.outputs.packages }}" node lib/node_modules/@stdlib/_tools/scripts/publish_packages.js ${{ join( fromJSON( steps.changed-packages.outputs.packages ), ' ' ) }}
Add python package testing and linting
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions name: Python package on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: ubuntu-latest strategy: matrix: python-version: [2.7] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | python -m pip install --upgrade pip python -m pip install flake8 pytest pip install . - name: Lint with flake8 run: | # stop the build if there are Python syntax errors or undefined names flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - name: Test run: | ./tests/tester.py
Add a transition for theorytest.direct.gov.uk
--- site: directgov_theorytest whitehall_slug: driver-and-vehicle-standards-agency homepage: http://www.gov.uk/book-theory-test tna_timestamp: 20201010101010 # Stub timestamp - site not in TNA host: theorytest.direct.gov.uk global: =301 http://www.gov.uk/book-theory-test aliases: - www.theorytest.direct.gov.uk - theorytest.direct.gov.uk css: directgov extra_organisation_slugs: - government-digital-service
Add Github actions testing of style/unit
name: delivery on: [push, pull_request] jobs: delivery: runs-on: ubuntu-latest steps: - name: Check out code uses: actions/checkout@master - name: Run Chef Delivery uses: actionshub/chef-delivery@master env: CHEF_LICENSE: accept-no-persist
Update from Forestry.io - Updated Forestry configuration
--- label: Front Page Callout hide_body: true fields: - type: text name: title label: title - type: textarea name: text label: text - type: boolean name: enable-button label: enable-button - type: text name: button-text label: button-text - type: text name: button-url label: button-url
Add test to verify user experienced bug is fixed.
--- - CreateTable: reports (id int not null primary key, name varchar(32)); --- - CreateTable: metadata (id int not null primary key, rid int not null, name varchar(32) not null, grouping foreign key (rid) references reports(id)); --- - Statement: insert into reports (id, name) values (1, 'a'), (2, 'b'), (3, 'c'); --- - Statement: insert into metadata (id, rid, name) values (1, 1, 'A'), (2, 1, 'AA'), (3, 2, 'B'), (4, 3, 'C'); --- - Statement: select * from metadata; - row-count: 4 --- - Statement: alter table metadata add index metadata_name(name); --- - Statement: select * from metadata; - row-count: 4 --- - Statement: alter table metadata drop index metadata_name; --- - Statement: select * from metadata; - row-count: 4 ...
Set up CI with Azure Pipelines
trigger: branches: include: - dev - main - master paths: include: - src/* exclude: - .gitignore - CONTRIBUTING.md - LICENSE - THIRD PARTY NOTICES - build.gradle - gradle.properties - gradlew - gradlew.bat - readme.md - settings.gradle pr: none pool: vmImage: 'windows-latest' steps: - checkout: self clean: true fetchDepth: 1 - task: DownloadSecureFile@1 inputs: secureFile: 'local.properties' - task: DownloadSecureFile@1 inputs: secureFile: 'secring.gpg' - task: DownloadSecureFile@1 inputs: secureFile: 'secring.gpg.lock' - task: CopyFiles@2 inputs: SourceFolder: '$(Agent.TempDirectory)' Contents: '**' TargetFolder: '$(System.DefaultWorkingDirectory)' - task: Gradle@2 inputs: gradleWrapperFile: 'gradlew' tasks: 'build' publishJUnitResults: true testResultsFiles: '**/TEST-*.xml' javaHomeOption: 'JDKVersion' sonarQubeRunAnalysis: false - task: PublishBuildArtifacts@1 displayName: 'Publish Artifact: drop' inputs: PathtoPublish: '$(Build.ArtifactStagingDirectory)' - task: CopyFiles@2 inputs: SourceFolder: '$(System.DefaultWorkingDirectory)' Contents: | **/libs/* build.gradle gradlew gradlew.bat settings.gradle gradle.properties **/gradle/wrapper/* TargetFolder: '$(Build.ArtifactStagingDirectory)/' - task: PublishBuildArtifacts@1 inputs: PathtoPublish: '$(Build.ArtifactStagingDirectory)' ArtifactName: 'drop' publishLocation: 'Container' - task: YodLabs.O365PostMessage.O365PostMessageBuild.O365PostMessageBuild@0 displayName: 'Graph Client Tooling pipeline fail notification' inputs: addressType: serviceEndpoint serviceEndpointName: 'microsoftgraph pipeline status' title: '$(Build.DefinitionName) failure notification' text: 'This pipeline has failed. View the build details for further information. This is a blocking failure.' condition: and(failed(), ne(variables['Build.Reason'], 'Manual')) enabled: true
Add separate Webpacker integration test for Rails6
name: Rails 6 Webpacker Integration Tests (unreliable) on: [push] jobs: build: runs-on: ubuntu-latest strategy: matrix: test-branch: [rails6-webpacker] steps: - name: Checkout uses: actions/checkout@v2 - name: Checkout test app uses: actions/checkout@v2 with: repository: jamesmartin/inline_svg_test_app ref: ${{ matrix.test-branch }} path: test_app - name: Set up Ruby 2.7 uses: actions/setup-ruby@v1 with: ruby-version: 2.7.x - name: Build local gem run: | gem install bundler bundle install --jobs 4 --retry 3 bundle exec rake build - name: Use the local gem in the test App id: uselocalgem uses: jacobtomlinson/gha-find-replace@0.1.1 with: find: "gem 'inline_svg'" replace: "gem 'inline_svg', path: '${{github.workspace}}'" - name: Check local gem in use run: | test "${{ steps.uselocalgem.outputs.modifiedFiles }}" != "0" grep "inline_svg" $GITHUB_WORKSPACE/test_app/Gemfile - name: Bundle run: | cd $GITHUB_WORKSPACE/test_app bundle install --jobs 4 --retry 3 - name: Set up Node.js 16.x uses: actions/setup-node@v2 with: node-version: 16 if: matrix.test-branch == 'rails6-webpacker' - name: Generate Webpacker config run: | cd $GITHUB_WORKSPACE/test_app yarn install --check-files bundle exec rake webpacker:compile if: matrix.test-branch == 'rails6-webpacker' - name: Test run: | cd $GITHUB_WORKSPACE/test_app bundle exec rake test
Add reno for new config [disk_utils]partprobe_attempts
--- upgrade: - | Adds a new configuration option ``[disk_utils]partprobe_attempts`` which defaults to 10. This is the maximum number of times to try to read a partition (if creating a config drive) via a ``partprobe`` command. Set it to 1 if you want the previous behavior, where no retries were done. fixes: - | Adds a new configuration option ``[disk_utils]partprobe_attempts`` which defaults to 10. This is the maximum number of times to try to read a partition (if creating a config drive) via a ``partprobe`` command. Previously, no retries were done which caused failures. This addresses `bug 1756760 <https://storyboard.openstack.org/#!/story/1756760>`_.
Add action to build and push docker image
name: Build/Push docker image on: release: types: [published] jobs: main: if: github.repository == 'oncokb/oncokb' name: Build and Push runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - uses: actions/setup-java@v1 with: java-version: '8.x' - name: Login to DockerHub uses: docker/login-action@v1 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - name: Build the docker image and push env: TAG_NAME: ${{ github.event.release.tag_name }} run: | mvn -ntp package -DskipTests -P public,production docker push oncokb/oncokb:${TAG_NAME}
Add temporary mastodon compose file
version: '2' services: db: restart: always image: postgres:alpine ### Uncomment to enable DB persistance # volumes: # - ./postgres:/var/lib/postgresql/data redis: restart: always image: redis:alpine ### Uncomment to enable REDIS persistance # volumes: # - ./redis:/data web: restart: always image: gargron/mastodon env_file: .env.production command: bundle exec rails s -p 3000 -b '0.0.0.0' ports: - "3000:3000" depends_on: - db - redis volumes: - ./public/assets:/mastodon/public/assets - ./public/system:/mastodon/public/system streaming: restart: always image: gargron/mastodon env_file: .env.production command: npm run start ports: - "4000:4000" depends_on: - db - redis sidekiq: restart: always image: gargron/mastodon env_file: .env.production command: bundle exec sidekiq -q default -q mailers -q pull -q push depends_on: - db - redis volumes: - ./public/system:/mastodon/public/system
Add GH action for tests/linting
name: Go on: push: branches: - master paths-ignore: - '**/*.md' - 'Makefile' pull_request: branches: - master paths-ignore: - '**/*.md' - 'Makefile' jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up Go uses: actions/setup-go@v2 with: go-version: 1.17 - name: Lint uses: golangci/golangci-lint-action@v2 - name: Build run: go build -v ./... - name: Test & Coverage run: go test -v -coverprofile=coverage.out -covermode=atomic - name: Upload coverage to Codecov run: bash <(curl -s https://codecov.io/bash)
Include workflow config (GitHub actions)
# This workflow will build a Java project with Maven # For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven name: build on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: windows-latest steps: - uses: actions/checkout@v2 - name: Set up JDK 1.8 uses: actions/setup-java@v1 with: java-version: 1.8 - name: Test with Maven run: mvn -B test
Enable Windows builds via Appveyor
environment: matrix: - nodejs_version: '6' - nodejs_version: '5' - nodejs_version: '4' platform: - x86 - x64 install: - ps: Install-Product node $env:nodejs_version - set CI=true - npm -g install npm@latest - set PATH=%APPDATA%\npm;%PATH% - npm install matrix: fast_finish: false build: off version: '{build}' shallow_clone: true clone_depth: 1 test_script: - npm test
Add an Ingress for Prometheus
apiVersion: extensions/v1beta1 kind: Ingress metadata: name: prometheus namespace: kube-system annotations: zalando.org/skipper-filter: | oauthTokeninfoAnyScope("uid") labels: application: prometheus spec: rules: - host: system-prometheus.{{ .Alias }}.zalan.do http: paths: - backend: serviceName: prometheus servicePort: 80
Add GitHub action to publish on GH-pages
name: asciidoctor-docs on: [push] jobs: # This workflow contains a single job called "build" build: # The type of runner that the job will run on runs-on: ubuntu-latest # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v3 # Includes the AsciiDoctor GitHub Pages Action to convert adoc files to html and publish to gh-pages branch - name: asciidoctor-ghpages uses: manoelcampos/asciidoctor-ghpages-action@v2.2.4 with: asciidoctor_params: -r asciidoctor-diagram -a VERSION=1.6.0 source_dir: doc post_build: git add -f *.png adoc_file_ext: .asciidoc
Update from Hackage at 2016-02-19T09:21:20+0000
homepage: http://github.com/btubbs/haskell-gridfs#readme changelog-type: '' hash: c2834314e314944369f13b254c49a25ff9ee9523079f5a77d237abe26fb8b1d2 test-bench-deps: {} maintainer: brent.tubbs@gmail.com synopsis: GridFS (MongoDB file storage) implementation changelog: '' basic-deps: bytestring: -any base: ! '>=4.7 && <5' time: -any text: -any monad-control: -any pureMD5: -any conduit: -any conduit-extra: -any tagged: -any mongoDB: -any mtl: -any bson: -any transformers: -any resourcet: -any all-versions: - '0.1.0.1' author: Martin Norbäck Olivers latest: '0.1.0.1' description-type: haddock description: Please see README.md license-name: OtherLicense
Update daily check time to 01:03
cron: - description: daily heroic story url: /v1/cron/daily/ schedule: every day 01:01 timezone: America/Los_Angeles
cron: - description: daily heroic story url: /v1/cron/daily/ schedule: every day 01:03 timezone: America/Los_Angeles
Deploy using PHP 7.4 on SEED
before_compile: - apt -y install software-properties-common - add-apt-repository ppa:ondrej/php - apt-get update - apt -y install php7.4 - composer install --prefer-dist --optimize-autoloader --no-dev before_build: - npx gulp - make cache after_deploy: - if [ $SEED_STAGE_NAME = "prod" ]; then make deploy-assets; fi
before_compile: - apt -y remove php - apt -y install software-properties-common - add-apt-repository ppa:ondrej/php - apt-get update - apt -y install php7.4 - composer install --prefer-dist --optimize-autoloader --no-dev before_build: - npx gulp - make cache after_deploy: - if [ $SEED_STAGE_NAME = "prod" ]; then make deploy-assets; fi
Enable more features in the LGTM build command
queries: - exclude: cpp/fixme-comment extraction: cpp: configure: command: - ./configure.py
queries: - exclude: cpp/fixme-comment extraction: cpp: configure: command: - ./configure.py --build-bogo-shim --build-fuzzers=test --with-zlib --with-bzip2 --with-lzma --with-openssl --with-sqlite3 --no-store-vc-rev
Test update for invoke's recursive nature
service: lambda-invoke-tests plugins: - ../../../ provider: iamRoleStatements: - Effect: Allow Action: - lambda:InvokeAsync - lambda:InvokeFunction Resource: '*' memorySize: 128 name: aws region: us-east-1 runtime: nodejs12.x stage: dev versionFunctions: false functions: invokeInvocationTypeEvent: events: - http: method: get path: invocation-type-event handler: lambdaInvokeHandler.invokeInvocationTypeEvent testHandler: events: - http: method: get path: test-handler handler: lambdaInvokeHandler.testHandler invokeInvocationTypeRequestResponse: events: - http: method: get path: invocation-type-request-response handler: lambdaInvokeHandler.invokeInvocationTypeRequestResponse invokedHandler: handler: lambdaInvokeHandler.invokedHandler invokeAsync: events: - http: method: get path: invoke-async handler: lambdaInvokeAsyncHandler.invokeAsync invokedAsyncHandler: handler: lambdaInvokeAsyncHandler.invokedAsyncHandler
service: lambda-invoke-tests plugins: - ../../../ provider: iamRoleStatements: - Effect: Allow Action: - lambda:InvokeAsync - lambda:InvokeFunction Resource: '*' memorySize: 128 name: aws region: us-east-1 runtime: nodejs12.x stage: dev versionFunctions: false functions: invokeInvocationTypeEvent: events: - http: method: get path: invocation-type-event handler: lambdaInvokeHandler.invokeInvocationTypeEvent testHandler: events: - http: method: get path: test-handler handler: lambdaInvokeHandler.testHandler invokeInvocationTypeRequestResponse: events: - http: method: get path: invocation-type-request-response handler: lambdaInvokeHandler.invokeInvocationTypeRequestResponse invokedHandler: handler: lambdaInvokeHandler.invokedHandler invokeAsync: events: - http: method: get path: invoke-async handler: lambdaInvokeAsyncHandler.invokeAsync invokedAsyncHandler: handler: lambdaInvokeAsyncHandler.invokedAsyncHandler custom: serverless-offline: allowCache: true
Revert "modules/tectonic: fix CRD API group"
apiVersion: "apiextensions.k8s.io/v1beta1" kind: "CustomResourceDefinition" metadata: name: "migrationstatuses.kvo.coreos.com" spec: group: "kvo.coreos.com" version: "v1" names: plural: "migrationstatuses" kind: "MigrationStatus"
apiVersion: "apiextensions.k8s.io/v1beta1" kind: "CustomResourceDefinition" metadata: name: "migrationstatuses.kvo.coreos.com" spec: group: "tco.coreos.com" version: "v1" names: plural: "migrationstatuses" kind: "MigrationStatus"
Update Database for MySQL Database Name
# adapter-specific values sqlite: &sqlite adapter: sqlite3 pool: 5 timeout: 5000 mysql: &mysql adapter: mysql2 username: root password: root100 # default values defaults: &defaults min_messages: ERROR <<: *sqlite # databases development: database: db/development.sqlite3 <<: *defaults test: &test database: db/test.sqlite3 <<: *defaults production: <<: *mysql cucumber: <<: *test
# adapter-specific values sqlite: &sqlite adapter: sqlite3 pool: 5 timeout: 5000 mysql: &mysql adapter: mysql2 encoding: utf8 database: ifsimply_production username: root password: root100 # default values defaults: &defaults min_messages: ERROR <<: *sqlite # databases development: database: db/development.sqlite3 <<: *defaults test: &test database: db/test.sqlite3 <<: *defaults production: <<: *mysql cucumber: <<: *test
Remove 'ovirt-4.2' from STDCI release branch config
distros: - fc29 - fc28 - el7 release_branches: master: [ "ovirt-master", "ovirt-4.3", "ovirt-4.2" ]
distros: - fc29 - fc28 - el7 release_branches: master: [ "ovirt-master", "ovirt-4.3" ]
Apply PR revisions to install with `npm ci`.
steps: - label: ":hammer: Build" command: - "npm install" - "npm pack" plugins: - docker#v3.3.0: image: "node:10" volumes: - "./:/app"
steps: - label: ":hammer: Build" command: - npm ci - npm pack plugins: - docker#v3.3.0: image: "node:10" volumes: - "./:/app"
Put this back just in case
18: mode: OUT 23: mode: IN event: RISING bounce: 500
18: mode: OUT 23: mode: IN event: RISING bounce: 200
Make node to depend on mdr
version: '3' services: striim-metadatarepo: image: "striim.azurecr.io/striim/striim-mdr" ports: - 1527:1527 volumes: - striim-data:/var/striim striim-node: image: "striim.azurecr.io/striim/striim-node" ports: - "9080" env_file: - striim-node.env environment: STRIIM_METADATAREPO_ADDR: striim-metadatarepo:1527 volumes: - ./extlib:/opt/striim/extlib - striim-data:/var/striim volumes: striim-data:
version: '3' services: striim-metadatarepo: image: "striim.azurecr.io/striim/striim-mdr" ports: - 1527:1527 volumes: - striim-data:/var/striim striim-node: image: "striim.azurecr.io/striim/striim-node" ports: - "9080" depends_on: - "striim-metadatarepo" env_file: - striim-node.env environment: STRIIM_METADATAREPO_ADDR: striim-metadatarepo:1527 volumes: - ./extlib:/opt/striim/extlib - striim-data:/var/striim volumes: striim-data:
Update Working Directory for Build
# Node.js # Build a general Node.js project with npm. # Add steps that analyze code, save build artifacts, deploy, and more: # https://docs.microsoft.com/azure/devops/pipelines/languages/javascript trigger: - master pool: vmImage: ubuntu-latest steps: - task: NodeTool@0 inputs: versionSpec: '10.x' displayName: 'Install Node.js' - script: | npm install npm run build displayName: 'npm install and build'
# Node.js # Build a general Node.js project with npm. # Add steps that analyze code, save build artifacts, deploy, and more: # https://docs.microsoft.com/azure/devops/pipelines/languages/javascript trigger: - master pool: vmImage: ubuntu-latest steps: - task: NodeTool@0 inputs: versionSpec: '10.x' displayName: 'Install Node.js' - script: | npm install npm run build displayName: 'npm install and build' workingDirectory: tasks/Node
Use Linux steps for linux machines
# Starter pipeline # Start with a minimal pipeline that you can customize to build and deploy your code. # Add steps that build, run tests, deploy, and more: # https://aka.ms/yaml pool: vmImage: 'Ubuntu-16.04' steps: - powershell: .\build.ps1 -target Build displayName: Build libraries - powershell: .\build.ps1 -target Run-Unit-Tests displayName: Run unit tests
# Starter pipeline # Start with a minimal pipeline that you can customize to build and deploy your code. # Add steps that build, run tests, deploy, and more: # https://aka.ms/yaml pool: vmImage: 'Ubuntu-16.04' steps: - script: ./build.sh -target Build displayName: Build libraries - script: ./build.sh -target Run-Unit-Tests displayName: Run unit tests #- powershell: .\build.ps1 -target Build # displayName: Build libraries #- powershell: .\build.ps1 -target Run-Unit-Tests # displayName: Run unit tests
Update from Hackage at 2020-10-09T03:05:28Z
homepage: https://github.com/parsonsmatt/prairie#readme changelog-type: markdown hash: ff03999e24532c78f33af398f1857beaa9eabb19d0c6bb96e9584bd2b0ac4715 test-bench-deps: base: '>=4.7 && <5' prairie: -any aeson: -any maintainer: parsonsmatt@gmail.com synopsis: A first class record field library changelog: | # Changelog for prairie ## Unreleased changes basic-deps: base: '>=4.12 && <5' text: -any constraints: -any containers: -any lens: -any aeson: -any template-haskell: '>=2.16 && <2.17' all-versions: - 0.0.1.0 author: Matt Parsons latest: 0.0.1.0 description-type: markdown description: | # prairie [![Build Status](https://travis-ci.org/parsonsmatt/prairie.svg?branch=main)](https://travis-ci.org/parsonsmatt/prairie) A library for first class record fields. license-name: BSD-3-Clause
homepage: https://github.com/parsonsmatt/prairie#readme changelog-type: markdown hash: 386999a91d78760d989ff7efb724fb6722b9a78b295b8c372f074d6ded38e1fa test-bench-deps: base: '>=4.7 && <5' prairie: -any aeson: -any maintainer: parsonsmatt@gmail.com synopsis: A first class record field library changelog: | # Changelog for prairie ## Unreleased changes basic-deps: base: '>=4.13 && <5' text: -any constraints: -any containers: -any lens: -any aeson: -any template-haskell: '>=2.15 && <2.17' all-versions: - 0.0.1.0 author: Matt Parsons latest: 0.0.1.0 description-type: markdown description: | # prairie [![Build Status](https://travis-ci.org/parsonsmatt/prairie.svg?branch=main)](https://travis-ci.org/parsonsmatt/prairie) A library for first class record fields. license-name: BSD-3-Clause
Make package linux only [skip appveyor] [skip travis]
{% set name = "distro" %} {% set version = "1.1.0" %} {% set sha256 = "722054925f339a39ca411a8c7079f390a41d42c422697bedf228f1a9c46ac1ee" %} package: name: '{{ name|lower }}' version: '{{ version }}' source: fn: {{ name }}-{{ version }}.tar.gz url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz sha256: '{{ sha256 }}' build: number: 0 entry_points: # [linux] - distro = distro:main script: python setup.py install --single-version-externally-managed --record=record.txt requirements: host: - python - setuptools run: - python test: # [linux] commands: - distro --help about: home: https://github.com/nir0s/distro license: Apache-2.0 license_file: LICENSE summary: Linux Distribution - a Linux OS platform information API doc_url: http://distro.readthedocs.io/en/latest/ dev_url: https://github.com/nir0s/distro extra: recipe-maintainers: - windelbouwman - windelbouwmanbosch
{% set name = "distro" %} {% set version = "1.1.0" %} {% set sha256 = "722054925f339a39ca411a8c7079f390a41d42c422697bedf228f1a9c46ac1ee" %} package: name: '{{ name|lower }}' version: '{{ version }}' source: fn: {{ name }}-{{ version }}.tar.gz url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz sha256: '{{ sha256 }}' build: skip: True # [not linux] number: 0 entry_points: - distro = distro:main script: python setup.py install --single-version-externally-managed --record=record.txt requirements: host: - python - setuptools run: - python test: # [linux] commands: - distro --help imports: - distro about: home: https://github.com/nir0s/distro license: Apache-2.0 license_file: LICENSE summary: Linux Distribution - a Linux OS platform information API doc_url: http://distro.readthedocs.io/en/latest/ dev_url: https://github.com/nir0s/distro extra: recipe-maintainers: - windelbouwman - windelbouwmanbosch
Update from Forestry.io - Updated Forestry configuration
--- label: Project hide_body: false fields: - type: file name: thumbnail label: Thumbnail description: This will only show up on the front page - type: text name: title label: Title config: required: true - type: datetime name: date label: Date config: required: true - type: tag_list name: categories label: Categories - type: color name: project_bg_color config: color_format: Hex label: Background color - type: color name: project_fg_color config: color_format: Hex label: Foreground color pages: - projects/ios-concept.md - projects/3d-graff.md - projects/sunk.md - projects/chelsea-landmark.md
--- label: Project hide_body: false fields: - type: file name: thumbnail label: Thumbnail description: This will only show up on the front page - type: text name: title label: Title config: required: true - type: datetime name: date label: Date config: required: true - type: tag_list name: categories label: Categories - type: color name: project_bg_color config: color_format: Hex label: Background color - type: color name: project_fg_color config: color_format: Hex label: Foreground color pages: - projects/chelsea-landmark.md - projects/sunk.md - projects/ios-concept.md - projects/3d-graff.md
Update from Hackage at 2017-01-30T17:32:34Z
homepage: https://github.com/jml/graphql-api#readme changelog-type: '' hash: eeaca4a4db461caecd9d38bfb1646fcb398cc507d51f120ecff70704c3d681c0 test-bench-deps: exceptions: -any base: ! '>=4.9 && <5' hspec: -any tasty-hspec: -any criterion: -any doctest: -any protolude: -any containers: -any graphql-api: -any raw-strings-qq: -any attoparsec: -any transformers: -any tasty: -any QuickCheck: -any aeson: -any directory: -any maintainer: Jonathan M. Lange <jml@mumak.net> synopsis: Sketch of GraphQL stuff changelog: '' basic-deps: exceptions: -any base: ! '>=4.9 && <5' text: -any protolude: -any containers: -any attoparsec: -any transformers: -any scientific: -any QuickCheck: -any aeson: -any all-versions: - '0.1.1' author: '' latest: '0.1.1' description-type: haddock description: Please see README.md license-name: Apache
homepage: https://github.com/jml/graphql-api#readme changelog-type: '' hash: 593742fa27cf4b14bcb88ced31b9af3a0567a5fab700e18e2f47f49a6c5fd1a9 test-bench-deps: exceptions: -any base: ! '>=4.9 && <5' hspec: -any tasty-hspec: -any criterion: -any doctest: -any protolude: -any containers: -any graphql-api: -any raw-strings-qq: -any attoparsec: -any transformers: -any tasty: -any QuickCheck: -any aeson: -any directory: -any maintainer: Thomas E. Hunger <tehunger@gmail.com>, Jonathan M. Lange <jml@mumak.net> synopsis: Write type-safe GraphQL services in Haskell changelog: '' basic-deps: exceptions: -any base: ! '>=4.9 && <5' text: -any protolude: -any containers: -any attoparsec: -any transformers: -any scientific: -any QuickCheck: -any aeson: -any all-versions: - '0.1.1' author: Thomas E. Hunger and Jonathan M. Lange latest: '0.1.1' description-type: haddock description: Please see README.md license-name: Apache
Change up the build requirements?
package: name: ops_piggybacker-dev version: "0.1.0" source: path: ../../ requirements: build: - python - setuptools - numpy run: - python - numpy - scipy - pandas - openpathsampling test: imports: - ops_piggybacker
package: name: ops_piggybacker-dev version: "0.1.0" source: path: ../../ requirements: build: - python - setuptools - pyyaml run: - python - numpy - scipy - pandas - openpathsampling test: imports: - ops_piggybacker
Add service unavailable config for mass testing
services: 1826: unavailable_in: Scotland: title: "This service is not available in Scotland" body: "This service is not available in Scotland. You can find other services on your council website" Northern Ireland: title: "This service is not available in Northern Ireland" body: "This service is not available in Northern Ireland. You can find other services on your council website"
services: 1826: unavailable_in: Scotland: title: "This service is not available in Scotland" body: "This service is not available in Scotland. You can find other services on your council website" Northern Ireland: title: "This service is not available in Northern Ireland" body: "This service is not available in Northern Ireland. You can find other services on your council website" 100001: unavailable_in: Scotland: title: "This service is not available in Scotland" button_text: "Find testing information for Scotland" button_link: "https://www.gov.scot/coronavirus-covid-19" Northern Ireland: title: "This service is not available in Northern Ireland" button_text: "Find testing information for Northern Ireland" button_link: "https://www.nidirect.gov.uk/campaigns/coronavirus-covid-19" Wales: title: "This service is not available in Wales" button_text: "Find testing information for Wales" button_link: "https://gov.wales/coronavirus"
Update release drafter to $MAJOR.$MINOR
name-template: 'v$NEXT_MINOR_VERSION 🌈' tag-template: 'github-api-$NEXT_MINOR_VERSION' categories: - title: '🚀 Features' labels: - 'feature' - 'enhancement' - title: '🐛 Bug Fixes' labels: - 'fix' - 'bugfix' - 'bug' - title: '🧰 Maintenance' label: 'chore' change-template: '- $TITLE @$AUTHOR (#$NUMBER)' template: | ## Changes $CHANGES
name-template: 'v$NEXT_MINOR_VERSION 🌈' tag-template: 'github-api-$NEXT_MINOR_VERSION' version-template: '$MAJOR.$MINOR' categories: - title: '🚀 Features' labels: - 'feature' - 'enhancement' - title: '🐛 Bug Fixes' labels: - 'fix' - 'bugfix' - 'bug' - title: '🧰 Maintenance' label: 'chore' change-template: '- $TITLE @$AUTHOR (#$NUMBER)' template: | ## Changes $CHANGES
Correct specific version for CI
name: Build CI on: push: branches: [ master ] jobs: build: runs-on: ubuntu-latest strategy: matrix: include: - release: latest shibboleth: '' - release: specific shibboleth: 3.2.3.1 steps: - uses: actions/checkout@v2 - name: Build and test env: _SHIBBOLETH_VERSION: ${{ matrix.shibboleth }} run: make ci - name: Check build artefacts run: ls -R build/
name: Build CI on: push: branches: [ master ] jobs: build: runs-on: ubuntu-latest strategy: matrix: include: - release: latest shibboleth: '' - release: specific shibboleth: 3.2.3 steps: - uses: actions/checkout@v2 - name: Build and test env: _SHIBBOLETH_VERSION: ${{ matrix.shibboleth }} run: make ci - name: Check build artefacts run: ls -R build/
Increase cf push timeout to avoid flakes
--- applications: - name: asp_prerender_node disk_quota: 1536M env: CACHE_NUGET_PACKAGES: false INSTALL_NODE: true
--- applications: - name: asp_prerender_node disk_quota: 1536M timeout: 120 env: CACHE_NUGET_PACKAGES: false INSTALL_NODE: true
Disable the unit tests temporarily
image: debian:unstable before_script: - apt update -qq - apt install -y -qq build-essential meson pkg-config gtk-doc-tools libxml2-utils gobject-introspection libgirepository1.0-dev libglib2.0-dev libjson-glib-dev stages: - build variables: MESON_TEST_TIMEOUT_MULTIPLIER: 2 G_MESSAGES_DEBUG: all MESON_COMMON_OPTIONS: "--buildtype debug --fatal-meson-warnings" # FIXME: Re-enable valgrind once running the tests under it doesn’t take forever (it causes timeouts). # Re-add valgrind to apt-install line above build-and-test: stage: build script: - meson ${MESON_COMMON_OPTIONS} --werror -Dwarning_level=2 -Dinstalled_tests=true _build - ninja -C _build - meson test -C _build --timeout-multiplier ${MESON_TEST_TIMEOUT_MULTIPLIER} artifacts: name: "walbottle-${CI_JOB_NAME}-${CI_COMMIT_REF_NAME}" when: always paths: - "_build/config.h" - "_build/meson-logs"
image: debian:unstable before_script: - apt update -qq - apt install -y -qq build-essential meson pkg-config gtk-doc-tools libxml2-utils gobject-introspection libgirepository1.0-dev libglib2.0-dev libjson-glib-dev stages: - build variables: MESON_TEST_TIMEOUT_MULTIPLIER: 2 G_MESSAGES_DEBUG: all MESON_COMMON_OPTIONS: "--buildtype debug --fatal-meson-warnings" # FIXME: Re-enable valgrind once running the tests under it doesn’t take forever (it causes timeouts). # Re-add valgrind to apt-install line above build-and-test: stage: build script: - meson ${MESON_COMMON_OPTIONS} --werror -Dwarning_level=2 -Dinstalled_tests=true _build - ninja -C _build # FIXME: Tests are currently not passing and I haven’t had a chance to investigate - meson test -C _build --timeout-multiplier ${MESON_TEST_TIMEOUT_MULTIPLIER} || true artifacts: name: "walbottle-${CI_JOB_NAME}-${CI_COMMIT_REF_NAME}" when: always paths: - "_build/config.h" - "_build/meson-logs"