Instruction
stringlengths
14
778
input_code
stringlengths
0
4.24k
output_code
stringlengths
1
5.44k
Fix creation of debug version of IdnaMap
sudo: false language: php php: - 5.5 - 5.6 - 7.0 - 7.1 - hhvm - nightly matrix: allow_failures: - php: nightly script: - bin/create-idnamap --debug test/assets/IdnaMappingTable.txt - - phpunit notifications: email: false
sudo: false language: php php: - 5.5 - 5.6 - 7.0 - 7.1 - hhvm - nightly matrix: allow_failures: - php: nightly script: - bin/create-idnamap.sh --debug test/assets/IdnaMappingTable.txt - - phpunit notifications: email: false
Switch to JDK 7 when generating code coverage report and sending it to coveralls
language: java jdk: - oraclejdk7 - openjdk7 - openjdk6 after_success: - ./gradlew jacocoTestReport coveralls
language: java jdk: - oraclejdk7 - openjdk7 - openjdk6 after_success: - jdk_switcher use oraclejdk7 - ./gradlew jacocoTestReport coveralls
Add confirmation for linux header install
language: python python: - 2.7 sudo: required dist: trusty env: - ANSIBLE_VERSION=1.9.6 # - ANSIBLE_VERSION=2.0.2.0 # - ANSIBLE_VERSION=2.0.0.2 install: - pip install -r requirements.txt - pip install -q ansible==$ANSIBLE_VERSION ## Create module package and install it at the same level as the project - cd .. - tar -czf Juniper.junos ansible-junos-stdlib - mkdir tmp - mv Juniper.junos tmp/ - cd tmp - ansible-galaxy install -p ../ Juniper.junos - cd ../ansible-junos-stdlib/tests ## Install Virtualbox - sudo apt-get update -q - sudo apt-get install linux-headers-$(uname -r) - sudo apt-get install -q virtualbox --fix-missing - VBoxManage --version ## Install Vagrant - sudo wget -nv https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1_x86_64.deb - sudo dpkg -i vagrant_1.8.1_x86_64.deb - vagrant plugin install vagrant-junos - vagrant plugin install vagrant-host-shell - vagrant up script: - ansible-playbook junos_ping/pb.junos_ping.yaml - ansible-playbook junos_get_facts/pb.junos_get_facts.yaml
language: python python: - 2.7 sudo: required dist: trusty env: - ANSIBLE_VERSION=1.9.6 # - ANSIBLE_VERSION=2.0.2.0 # - ANSIBLE_VERSION=2.0.0.2 install: - pip install -r requirements.txt - pip install -q ansible==$ANSIBLE_VERSION ## Create module package and install it at the same level as the project - cd .. - tar -czf Juniper.junos ansible-junos-stdlib - mkdir tmp - mv Juniper.junos tmp/ - cd tmp - ansible-galaxy install -p ../ Juniper.junos - cd ../ansible-junos-stdlib/tests ## Install Virtualbox - sudo apt-get update -q - sudo apt-get install -y linux-headers-$(uname -r) - sudo apt-get install -q virtualbox --fix-missing - VBoxManage --version ## Install Vagrant - sudo wget -nv https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1_x86_64.deb - sudo dpkg -i vagrant_1.8.1_x86_64.deb - vagrant plugin install vagrant-junos - vagrant plugin install vagrant-host-shell - vagrant up script: - ansible-playbook junos_ping/pb.junos_ping.yaml - ansible-playbook junos_get_facts/pb.junos_get_facts.yaml
Update Travis to Xcode 9
language: objective-c xcode_project: Franz.xcodeproj xcode_scheme: franz-Package sudo: required services: - docker
language: objective-c xcode_project: Franz.xcodeproj xcode_scheme: franz-Package osx_image: xcode9 sudo: required services: - docker
Install nose during install step.
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" script: - python setup.py test sudo: false
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" install: - pip install nose script: - python setup.py test sudo: false
Disable abi check on Travis-CI
language: cpp compiler: - gcc - clang before_install: - 'ci/before_install.sh' env: global: matrix: - BUILD_CORE_ONLY=OFF BUILD_TYPE=Debug - BUILD_CORE_ONLY=OFF BUILD_TYPE=Release - BUILD_CORE_ONLY=ON BUILD_TYPE=Debug - BUILD_CORE_ONLY=ON BUILD_TYPE=Release before_script: cmake -DBUILD_CORE_ONLY=$BUILD_CORE_ONLY -DCMAKE_BUILD_TYPE=$BUILD_TYPE . script: - make - sudo ldconfig --verbose # So the test executeables can detect libtinyxml2 - if [ $BUILD_CORE_ONLY = OFF ]; then make test; fi - cd tools/ # - ./code_check.sh - ./abi_check.sh 4.1.0 # Check with DART 4.1.0 after_failure: - cat Testing/Temporary/LastTest.log - cat Testing/Temporary/LastTestsFailed.log
language: cpp compiler: - gcc - clang before_install: - 'ci/before_install.sh' env: global: matrix: - BUILD_CORE_ONLY=OFF BUILD_TYPE=Debug - BUILD_CORE_ONLY=OFF BUILD_TYPE=Release - BUILD_CORE_ONLY=ON BUILD_TYPE=Debug - BUILD_CORE_ONLY=ON BUILD_TYPE=Release before_script: cmake -DBUILD_CORE_ONLY=$BUILD_CORE_ONLY -DCMAKE_BUILD_TYPE=$BUILD_TYPE . script: - make - sudo ldconfig --verbose # So the test executeables can detect libtinyxml2 - if [ $BUILD_CORE_ONLY = OFF ]; then make test; fi - cd tools/ # - ./code_check.sh # - ./abi_check.sh 4.1.0 # Check with DART 4.1.0 after_failure: - cat Testing/Temporary/LastTest.log - cat Testing/Temporary/LastTestsFailed.log
Update Travis config, add PHP 7.4.
language: php dist: trusty cache: directories: - $HOME/.composer sudo: false matrix: fast_finish: true include: - php: '5.4' - php: '5.6' - php: '7.0' - php: '7.3' install: - composer -n --no-ansi install --dev --prefer-source
language: php dist: trusty cache: directories: - $HOME/.composer sudo: false matrix: fast_finish: true include: - php: '5.4' - php: '5.6' - php: '7.0' - php: '7.2' - php: '7.4' before_install: # turn off XDebug - phpenv config-rm xdebug.ini install: - composer install --no-progress --no-interaction --prefer-dist
Remove when condition, host modules does not work
--- - name: become: yes hostname: name: "{{ inventory_hostname }}" - name: add hostname to /etc/hosts become: yes template: src: etc/hosts.j2 dest: /etc/hosts owner: root group: root mode: 0644 when: - os_family is not 'Darwin'
--- - name: become: yes hostname: name: "{{ inventory_hostname }}" - name: add hostname to /etc/hosts become: yes template: src: etc/hosts.j2 dest: /etc/hosts owner: root group: root mode: 0644
Exclude :extras group from Travis
language: ruby rvm: - 1.9.2 - 1.9.3
language: ruby rvm: - 1.9.2 - 1.9.3 bundler_args: --without extras
Change back to continous deployment by default
assembly-informational-format: '{NuGetVersion}' next-version: 3.0.0
assembly-informational-format: '{NuGetVersion}' mode: ContinuousDeployment next-version: 3.0.0
Add date time format to locale
# Files in the config/locales directory are used for internationalization # and are automatically loaded by Rails. If you want to use locales other # than English, add the necessary files in this directory. # # To use the locales, use `I18n.t`: # # I18n.t 'hello' # # In views, this is aliased to just `t`: # # <%= t('hello') %> # # To use a different locale, set it with `I18n.locale`: # # I18n.locale = :es # # This would use the information in config/locales/es.yml. # # To learn more, please read the Rails Internationalization guide # available at http://guides.rubyonrails.org/i18n.html. en: hello: "Hello world"
# Files in the config/locales directory are used for internationalization # and are automatically loaded by Rails. If you want to use locales other # than English, add the necessary files in this directory. # # To use the locales, use `I18n.t`: # # I18n.t 'hello' # # In views, this is aliased to just `t`: # # <%= t('hello') %> # # To use a different locale, set it with `I18n.locale`: # # I18n.locale = :es # # This would use the information in config/locales/es.yml. # # To learn more, please read the Rails Internationalization guide # available at http://guides.rubyonrails.org/i18n.html. en: date: formats: default: "%d/%m/%Y" time: formats: default: "%d/%m/%Y %H:%M"
Fix bogus duplicate code warning.
engines: phpcodesniffer: enabled: true config: standard: "PSR1,PSR2" phpmd: enabled: true checks: CleanCode/StaticAccess: enabled: false Naming/ShortVariable: enabled: false Naming/ShortMethodName: enabled: false Naming/BooleanGetMethodName: enabled: false CleanCode/BooleanArgumentFlag: enabled: false Design/TooManyPublicMethods: enabled: false duplication: enabled: true config: languages: php: mass_threshold: 40 fixme: enabled: true markdownlint: enabled: true checks: MD024: enabled: false ratings: paths: - "**.php" - "**.md" exclude_paths: - "**/vendor/**/*" - "**/.idea/**/*" - "tests/"
engines: phpcodesniffer: enabled: true config: standard: "PSR1,PSR2" phpmd: enabled: true checks: CleanCode/StaticAccess: enabled: false Naming/ShortVariable: enabled: false Naming/ShortMethodName: enabled: false Naming/BooleanGetMethodName: enabled: false CleanCode/BooleanArgumentFlag: enabled: false Design/TooManyPublicMethods: enabled: false duplication: enabled: true config: languages: php: mass_threshold: 50 fixme: enabled: true markdownlint: enabled: true checks: MD024: enabled: false ratings: paths: - "**.php" - "**.md" exclude_paths: - "**/vendor/**/*" - "**/.idea/**/*" - "tests/"
Add feature branch temporarily to refine JSDoc on Doclets.io
packageJson: package.json dir: src articles: - Overview: readme.md branches: - master - develop - feature/* - release/* - hotfix/*
packageJson: package.json dir: src articles: - Overview: readme.md branches: - master - develop - feature/* - release/* - hotfix/* - feature/#11-cleanup-project
Change Librem Social 1.4.0 tag
Categories: - Internet License: GPL-3.0-only AuthorName: Purism SPC AuthorEmail: feedback@puri.sm WebSite: https://librem.one SourceCode: https://source.puri.sm/liberty/social/android IssueTracker: https://source.puri.sm/liberty/social/android/issues Changelog: https://source.puri.sm/liberty/social/android/blob/master/CHANGELOG.md AutoName: Librem Social RepoType: git Repo: https://source.puri.sm/liberty/social/android.git Builds: - versionName: 1.0.0 versionCode: 1000099 commit: 1.0.0-release subdir: app gradle: - libremsocial - versionName: 1.2.0 versionCode: 1020099 commit: 1.2.0-release subdir: app gradle: - libremsocial - versionName: 1.3.0 versionCode: 1030000 commit: 1.3.0 subdir: app gradle: - blue - versionName: 1.4.0- versionCode: 1040000 commit: 1.4.0- subdir: app gradle: - blue AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: 1.4.0- CurrentVersionCode: 1040000
Categories: - Internet License: GPL-3.0-only AuthorName: Purism SPC AuthorEmail: feedback@puri.sm WebSite: https://librem.one SourceCode: https://source.puri.sm/liberty/social/android IssueTracker: https://source.puri.sm/liberty/social/android/issues Changelog: https://source.puri.sm/liberty/social/android/blob/master/CHANGELOG.md AutoName: Librem Social RepoType: git Repo: https://source.puri.sm/liberty/social/android.git Builds: - versionName: 1.0.0 versionCode: 1000099 commit: 1.0.0-release subdir: app gradle: - libremsocial - versionName: 1.2.0 versionCode: 1020099 commit: 1.2.0-release subdir: app gradle: - libremsocial - versionName: 1.3.0 versionCode: 1030000 commit: 1.3.0 subdir: app gradle: - blue - versionName: 1.4.0 versionCode: 1040000 commit: 1.4.0 subdir: app gradle: - blue AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: 1.4.0 CurrentVersionCode: 1040000
Add code coverage to Scrutinizer
filter: paths: [src/*] excluded_paths: [spec/*, tests/*] tools: php_analyzer: true php_code_sniffer: config: standard: "PSR2" checks: php: code_rating: true
filter: paths: [src/*] excluded_paths: [spec/*, tests/*] tools: php_analyzer: true php_code_sniffer: config: standard: "PSR2" checks: php: code_rating: true build: dependencies: override: - composer install --no-interaction --prefer-source tests: override: - command: 'vendor/bin/phpunit --verbose --coverage-clover=coverage.xml' coverage: file: 'coverage.xml' format: 'php-clover'
Allow -> literal for multiline Proc
Lint/HandleExceptions: Enabled: false Lint/UnderscorePrefixedVariableName: Enabled: false Lint/UnusedBlockArgument: Enabled: false Lint/UnusedMethodArgument: Enabled: false Metrics/AbcSize: Enabled: false Metrics/ClassLength: Enabled: false Metrics/CyclomaticComplexity: Enabled: false Metrics/LineLength: Max: 120 Metrics/MethodLength: Enabled: false Metrics/PerceivedComplexity: Enabled: false Style/AccessorMethodName: Enabled: false Style/AndOr: Enabled: false Style/Documentation: Enabled: false Style/DoubleNegation: Enabled: false Style/FormatString: Enabled: false Style/GuardClause: Enabled: false Style/IfUnlessModifier: Enabled: false Style/MultilineBlockChain: Enabled: false Style/PercentLiteralDelimiters: Enabled: false Style/PredicateName: Enabled: false Style/RegexpLiteral: MaxSlashes: 0 Style/SignalException: Enabled: false Style/StringLiterals: EnforcedStyle: double_quotes Style/TrailingComma: Enabled: false Style/TrivialAccessors: Enabled: false
Lint/HandleExceptions: Enabled: false Lint/UnderscorePrefixedVariableName: Enabled: false Lint/UnusedBlockArgument: Enabled: false Lint/UnusedMethodArgument: Enabled: false Metrics/AbcSize: Enabled: false Metrics/ClassLength: Enabled: false Metrics/CyclomaticComplexity: Enabled: false Metrics/LineLength: Max: 120 Metrics/MethodLength: Enabled: false Metrics/PerceivedComplexity: Enabled: false Style/AccessorMethodName: Enabled: false Style/AndOr: Enabled: false Style/Documentation: Enabled: false Style/DoubleNegation: Enabled: false Style/FormatString: Enabled: false Style/GuardClause: Enabled: false Style/IfUnlessModifier: Enabled: false Style/Lambda: Enabled: false Style/MultilineBlockChain: Enabled: false Style/PercentLiteralDelimiters: Enabled: false Style/PredicateName: Enabled: false Style/RegexpLiteral: MaxSlashes: 0 Style/SignalException: Enabled: false Style/StringLiterals: EnforcedStyle: double_quotes Style/TrailingComma: Enabled: false Style/TrivialAccessors: Enabled: false
Whitelist stage for approval branch.
machine: node: version: stable environment: PATH: ${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin:${HOME}/.yarn/bin dependencies: pre: - curl -o- -L https://yarnpkg.com/install.sh | bash override: - yarn cache clean - bundle install - yarn install --force - bower install general: branches: only: - master - production deployment: staging: branch: master commands: - gulp build && gulp publish - netlify deploy --path ./site --site-id seaboard-stage --access-token ${NETLIFY_TOKEN} approval_staging: branch: stage_for_approval commands: - gulp build && gulp publish - netlify deploy --path ./site --site-id seaboard-approvals --access-token ${NETLIFY_TOKEN} production: branch: production commands: - gulp build && gulp publish - s3_website push
machine: node: version: stable environment: PATH: ${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin:${HOME}/.yarn/bin dependencies: pre: - curl -o- -L https://yarnpkg.com/install.sh | bash override: - yarn cache clean - bundle install - yarn install --force - bower install general: branches: only: - master - stage_for_approval - production deployment: staging: branch: master commands: - gulp build && gulp publish - netlify deploy --path ./site --site-id seaboard-stage --access-token ${NETLIFY_TOKEN} approval_staging: branch: stage_for_approval commands: - gulp build && gulp publish - netlify deploy --path ./site --site-id seaboard-approvals --access-token ${NETLIFY_TOKEN} production: branch: production commands: - gulp build && gulp publish - s3_website push
Update CircleCI to Xcode 7.3
machine: xcode: version: 7.2 test: override: - script/cibuild
machine: xcode: version: 7.3 test: override: - script/cibuild
Use the latest develop version of Docksal in tests
language: generic services: - docker env: global: - REPO=docksal/cli - LATEST_VERSION=7.2 - DOCKSAL_VERSION=master matrix: - VERSION=5.6 - VERSION=7.0 - VERSION=7.1 - VERSION=7.2 before_install: - sudo apt-get -qq update - sudo apt-get install libfcgi0ldbl # cgi-fcgi binary used in tests install: - curl -fsSL https://get.docksal.io | DOCKSAL_VERSION=${DOCKSAL_VERSION} bash - fin version - fin sysinfo script: # Build the base image - cd ${TRAVIS_BUILD_DIR}/${VERSION} - travis_retry make && make test # Retry builds, as pecl.php.net tends to time out often # Build the Cloud9 flavor - cd ${TRAVIS_BUILD_DIR}/cloud9 - travis_retry make && make test after_success: - docker image ls - ${TRAVIS_BUILD_DIR}/scripts/docker-push.sh after_failure: - cd ${TRAVIS_BUILD_DIR}/${VERSION} && make logs - cd ${TRAVIS_BUILD_DIR}/cloud9 && make logs
language: generic services: - docker env: global: - REPO=docksal/cli - LATEST_VERSION=7.2 - DOCKSAL_VERSION=develop matrix: - VERSION=5.6 - VERSION=7.0 - VERSION=7.1 - VERSION=7.2 before_install: - sudo apt-get -qq update - sudo apt-get install libfcgi0ldbl # cgi-fcgi binary used in tests install: # Install Docksal to have a matching versions of Docker on the build host - curl -fsSL https://get.docksal.io | DOCKSAL_VERSION=${DOCKSAL_VERSION} bash - fin version - fin sysinfo script: # Build the base image - cd ${TRAVIS_BUILD_DIR}/${VERSION} - travis_retry make && make test # Retry builds, as pecl.php.net tends to time out often # Build the Cloud9 flavor - cd ${TRAVIS_BUILD_DIR}/cloud9 - travis_retry make && make test after_success: - docker image ls - ${TRAVIS_BUILD_DIR}/scripts/docker-push.sh after_failure: - cd ${TRAVIS_BUILD_DIR}/${VERSION} && make logs - cd ${TRAVIS_BUILD_DIR}/cloud9 && make logs
Add nodejs versions into TravisCI
language: node_js node_js: - "0.12" - "2" - "3" - "4" - "5" - "6" - "7" - "8" - "9"
language: node_js node_js: - "0.12" - "iojs-v1" - "iojs-v2" - "iojs-v3" - "4" - "5" - "6" - "7" - "8" - "9"
Remove graphiz dependancy for testing purpose
#sudo: true #before_script: # - sudo apt-get update -q # - sudo apt-get install gfortran liblapack-dev gcc # - sudo apt-get install graphviz sudo: false addons: apt: packages: - gfortran - gcc - liblapack-dev - graphviz cache: directories: - $HOME/.opam/ language: python python: - "2.6" script: - ./configure --production ./config/gfortran.cfg - source ./quantum_package.rc - qp_install_module.py install Full_CI Hartree_Fock - ninja - cd ocaml ; make ; cd - - cd testing_no_regression ; ./unit_test.py
#sudo: true #before_script: # - sudo apt-get update -q # - sudo apt-get install gfortran liblapack-dev gcc # - sudo apt-get install graphviz sudo: false addons: apt: packages: - gfortran - gcc - liblapack-dev # - graphviz cache: directories: - $HOME/.opam/ language: python python: - "2.6" script: - ./configure --production ./config/gfortran.cfg - source ./quantum_package.rc - qp_install_module.py install Full_CI Hartree_Fock - ninja - cd ocaml ; make ; cd - - cd testing_no_regression ; ./unit_test.py
Install bundler 1.9 on Travis
language: ruby rvm: - 2.2.2 - 2.1.6 - 2.0.0-p645
language: ruby before_install: - gem install bundler -v 1.9 rvm: - 2.2.2 - 2.1.6 - 2.0.0-p645
Allow failure on jruby head.
--- language: ruby sudo: false cache: bundler bundler_args: --without yard benchmarks script: "bundle exec rake ci" rvm: - 1.9.3 - 2.0 - 2.1 - 2.2 - ruby-head - jruby-19mode - jruby - rbx-2 env: global: - JRUBY_OPTS="-Xcli.debug=true --debug" matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head fast_finish: true branches: only: master notifications: email: false
--- language: ruby sudo: false cache: bundler bundler_args: --without yard benchmarks script: "bundle exec rake ci" rvm: - 1.9.3 - 2.0 - 2.1 - 2.2 - ruby-head - jruby-19mode - jruby - jruby-head - rbx-2 env: global: - JRUBY_OPTS="-Xcli.debug=true --debug" matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head fast_finish: true branches: only: master notifications: email: false
FIX Updated Travis configuration to use Xcode 10
language: objective-c osx_image: xcode9 before_install: - gem install cocoapods - carthage bootstrap --platform ios install: - gem install xcpretty --no-rdoc --no-ri --no-document --quiet script: - rake build:ios DESTINATION='OS=10.0,name=iPhone 6s' - rake build:ios DESTINATION='platform=iOS Simulator,name=iPhone 7 Plus' - pod lib lint --quick
language: objective-c osx_image: xcode10 before_install: - gem install cocoapods - carthage bootstrap --platform ios install: - gem install xcpretty --no-rdoc --no-ri --no-document --quiet script: - rake build:ios DESTINATION='OS=10.0,name=iPhone 6s' - rake build:ios DESTINATION='platform=iOS Simulator,name=iPhone 7 Plus' - pod lib lint --quick
Add an axis on ZMQ version.
language: python python: - 2.6 - 2.7 # comment out pypy until travis updates to pypy 2.0/2.1, cffi doesn't work # on PyPy 1.9 # - pypy env: - REACTOR=select - REACTOR=epoll install: - sudo apt-get install libzmq3-dev - pip install -r requirements.txt --use-mirrors script: - trial --reactor=$REACTOR txzmq - pep8 --repeat txzmq - pyflakes txzmq notifications: email: - me@smira.ru
language: python python: - 2.6 - 2.7 # comment out pypy until travis updates to pypy 2.0/2.1, cffi doesn't work # on PyPy 1.9 # - pypy env: - REACTOR=select ZMQ_VERSION=2 - REACTOR=epoll ZMQ_VERSION=2 - REACTOR=epoll ZMQ_VERSION=3 - REACTOR=epoll ZMQ_VERSION=3 install: - test "$ZMQ_VERSION" == "3" && sudo apt-get install libzmq3-dev || true - test "$ZMQ_VERSION" == "2" && sudo apt-get remove libzmq3 && sudo apt-get install libzmq-dev || true - pip install -r requirements.txt --use-mirrors script: - trial --reactor=$REACTOR txzmq - pep8 --repeat txzmq - pyflakes txzmq notifications: email: - me@smira.ru
Fix Python executable and path for latest Travis
sudo: false language: python python: - 2.6 - 2.7 cache: pip: true directories: - $HOME/perl5 install: - export PERL5LIB=~/perl5/lib/perl5 - export PATH=~/perl5/bin:$PATH - pip install coverage matplotlib==1.5.3 - curl -L https://cpanmin.us/ -o cpanm && chmod a+x cpanm - ./cpanm --local-lib=~/perl5 --quiet --notest --skip-satisfied Devel::Cover::Report::Codecov Test::Exception Test::Output Devel::Cover MIME::Lite - git clone --depth=5 https://github.com/salilab/saliweb - (cd saliweb && scons modeller_key=UNKNOWN pythondir=$(echo $(dirname $(which python))/../lib/python*/site-packages) perldir=~/perl5/lib/perl5 prefix=~/usr webdir=~/www install) script: - scons coverage=true test after_success: - bash <(curl -s https://codecov.io/bash) - cover -report codecov
sudo: false language: python python: - 2.6 - 2.7 cache: pip: true directories: - $HOME/perl5 install: - export PERL5LIB=~/perl5/lib/perl5 - export PYTHONPATH=$(echo $(dirname $(which python))/../lib/python*/site-packages) - export PATH=~/perl5/bin:$PATH - pip install coverage matplotlib==1.5.3 - curl -L https://cpanmin.us/ -o cpanm && chmod a+x cpanm - ./cpanm --local-lib=~/perl5 --quiet --notest --skip-satisfied Devel::Cover::Report::Codecov Test::Exception Test::Output Devel::Cover MIME::Lite - git clone --depth=5 https://github.com/salilab/saliweb - (cd saliweb && scons modeller_key=UNKNOWN pythondir=$PYTHONPATH perldir=~/perl5/lib/perl5 prefix=~/usr webdir=~/www install) script: - scons coverage=true python=$(which python) test after_success: - bash <(curl -s https://codecov.io/bash) - cover -report codecov
Fix travais test - 2
--- # Travis file for locales role language: python python: "2.7" before_install: # Make sure everything's up to date. - sudo apt-get update -qq install: # Install Ansible. - pip install ansible # Add ansible.cfg to pick up roles path. - "cp ./tests/ansible.cfg ./" script: # Check the role/playbook's syntax. - ansible-playbook -i tests/inventory tests/test.yml --syntax-check # Run the role/playbook with ansible-playbook. - "ansible-playbook -i tests/inventory tests/test.yml --connection=local --sudo" # Run the role/playbook again, checking to make sure it's idempotent. # Set change=1 due to a bug in ansible service module always return changed - > ansible-playbook -i tests/inventory tests/test.yml --connection=local --sudo | grep -q 'changed=0.*failed=0' && (echo 'Idempotence test: pass' && exit 0) || (echo 'Idempotence test: fail' && exit 1) # Check locales is accessible - test "LANG=fr_FR.UTF-8" == `sudo locale`
--- # Travis file for locales role language: python python: "2.7" before_install: # Make sure everything's up to date. - sudo apt-get update -qq install: # Install Ansible. - pip install ansible # Add ansible.cfg to pick up roles path. - "cp ./tests/ansible.cfg ./" script: # Check the role/playbook's syntax. - ansible-playbook -i tests/inventory tests/test.yml --syntax-check # Run the role/playbook with ansible-playbook. - "ansible-playbook -i tests/inventory tests/test.yml --connection=local --sudo" # Run the role/playbook again, checking to make sure it's idempotent. # Set change=1 due to a bug in ansible service module always return changed - > ansible-playbook -i tests/inventory tests/test.yml --connection=local --sudo | grep -q 'changed=0.*failed=0' && (echo 'Idempotence test: pass' && exit 0) || (echo 'Idempotence test: fail' && exit 1) # Check locales is accessible - test "LANG=fr_FR.UTF-8" == `sudo locale | grep LANG= | cut -d '=' -f 2`
Comment out coveralls to stop breaking builds
language: go sudo: false go: - tip before_install: - go get github.com/mattn/goveralls script: - $HOME/gopath/bin/goveralls -service=travis-ci
language: go sudo: false go: - tip #before_install: # - go get github.com/mattn/goveralls #script: # - $HOME/gopath/bin/goveralls -service=travis-ci
Remove appraisal from Travis config
language: ruby bundler_args: --without extras script: rake appraisal rvm: - 1.9.2 - 1.9.3 - jruby-19mode - rbx-19mode gemfile: - gemfiles/activerecord-3.0.gemfile - gemfiles/activerecord-3.1.gemfile - gemfiles/activerecord-3.2.gemfile matrix: allow_failures: - rvm: jruby-19mode - rvm: rbx-19mode
language: ruby bundler_args: --without extras rvm: - 1.9.2 - 1.9.3 - jruby-19mode - rbx-19mode gemfile: - gemfiles/activerecord-3.0.gemfile - gemfiles/activerecord-3.1.gemfile - gemfiles/activerecord-3.2.gemfile matrix: allow_failures: - rvm: jruby-19mode - rvm: rbx-19mode
Add support for 3.4 and 3.5.
language: python python: - "2.6" - "2.7" - "3.3" - "pypy" install: - pip install -r requirements.txt - python setup.py install - pip install coveralls - pip install flake8==2.5.0 script: - flake8 calexicon/ --max-complexity 5 --max-line-length 99 --ignore E201,E202,E402 - coverage run --source=calexicon setup.py test - python -m doctest README.md after_success: coveralls branches: only: - master notifications: email: false
language: python python: - "2.6" - "2.7" - "3.3" - "3.4" - "3.5" - "pypy" install: - pip install -r requirements.txt - python setup.py install - pip install coveralls - pip install flake8==2.5.0 script: - flake8 calexicon/ --max-complexity 5 --max-line-length 99 --ignore E201,E202,E402 - coverage run --source=calexicon setup.py test - python -m doctest README.md after_success: coveralls branches: only: - master notifications: email: false
Update to use Swift 3.1 CI scripts
os: - linux - osx language: generic sudo: required dist: trusty osx_image: xcode8.2 script: - eval "$(curl -sL https://raw.githubusercontent.com/brokenhandsio/swift/master/ci)"
os: - linux - osx language: generic sudo: required dist: trusty osx_image: xcode8.3 script: - eval "$(curl -sL https://swift.vapor.sh/ci-3.1)" - eval "$(curl -sL https://swift.vapor.sh/codecov)"
Allow for HHVM to fail, its just to see if this works anyway
language: php php: - 5.6 - 7.0 - 7.1 - hhvm cache: directories: - $HOME/.composer/cache before_install: - travis_retry composer self-update install: - travis_retry composer install --no-interaction --prefer-dist --no-suggest; script: vendor/bin/phpunit
language: php php: - 5.6 - 7.0 - 7.1 - hhvm matrix: allow_failures: - hhvm cache: directories: - $HOME/.composer/cache before_install: - travis_retry composer self-update install: - travis_retry composer install --no-interaction --prefer-dist --no-suggest; script: vendor/bin/phpunit
Add ant and ant-optional for Travis CI
# Use Docker-based container (instead of OpenVZ) sudo: false # https://blog.travis-ci.com/2017-07-11-trusty-as-default-linux-is-coming # Travis now defaults to Trusty, which is missing openjdk6. dist: precise cache: directories: - $HOME/.ivy2/cache - $HOME/.sbt/boot # WORKAROUND https://github.com/travis-ci/travis-ci/issues/5227 addons: hosts: workaround-travis-ci-issue-5227 hostname: workaround-travis-ci-issue-5227 language: java jdk: - openjdk6 before_cache: - find $HOME/.ivy2 -name "ivydata-*.properties" -print -delete - find $HOME/.sbt -name "*.lock" -print -delete
# Use Docker-based container (instead of OpenVZ) sudo: false # https://blog.travis-ci.com/2017-07-11-trusty-as-default-linux-is-coming # Travis now defaults to Trusty, which is missing openjdk6. dist: precise cache: directories: - $HOME/.ivy2/cache - $HOME/.sbt/boot # WORKAROUND https://github.com/travis-ci/travis-ci/issues/5227 addons: hosts: workaround-travis-ci-issue-5227 hostname: workaround-travis-ci-issue-5227 apt: sources: - ubuntu-toolchain-r-test packages: - ant - ant-optional language: java jdk: - openjdk6 before_cache: - find $HOME/.ivy2 -name "ivydata-*.properties" -print -delete - find $HOME/.sbt -name "*.lock" -print -delete
Fix Lambda not being deployed
dist: bionic language: generic os: linux branches: only: - deploy deploy: - provider: lambda access_key_id: $AWS_S3_ACCESS_KEY_ID secret_access_key: $AWS_S3_SECRET_ACCESS_KEY region: "us-east-1" function_name: "blog-martincostello-com-redirect-folders" role: "arn:aws:iam::492538393790:role/service-role/lambda_basic_execution_cloudfront_edge" handler_name: "handler" module_name: "cloudfront-folders" timeout: 1, runtime: "nodejs10.x" zip: "cloudfront-folders.js" publish: true - provider: lambda access_key_id: $AWS_S3_ACCESS_KEY_ID secret_access_key: $AWS_S3_SECRET_ACCESS_KEY region: "us-east-1" function_name: "blog-martincostello-com-response-headers" role: "arn:aws:iam::492538393790:role/service-role/lambda_basic_execution_cloudfront_edge" handler_name: "handler" module_name: "cloudfront-headers" timeout: 1, runtime: "nodejs10.x" zip: "cloudfront-headers.js" publish: true
dist: bionic language: generic os: linux branches: only: - deploy deploy: - provider: lambda access_key_id: $AWS_S3_ACCESS_KEY_ID secret_access_key: $AWS_S3_SECRET_ACCESS_KEY region: "us-east-1" function_name: "blog-martincostello-com-redirect-folders" role: "arn:aws:iam::492538393790:role/service-role/lambda_basic_execution_cloudfront_edge" handler_name: "handler" module_name: "cloudfront-folders" timeout: 1, runtime: "nodejs10.x" zip: "cloudfront-folders.js" publish: true on: branch: deploy - provider: lambda access_key_id: $AWS_S3_ACCESS_KEY_ID secret_access_key: $AWS_S3_SECRET_ACCESS_KEY region: "us-east-1" function_name: "blog-martincostello-com-response-headers" role: "arn:aws:iam::492538393790:role/service-role/lambda_basic_execution_cloudfront_edge" handler_name: "handler" module_name: "cloudfront-headers" timeout: 1, runtime: "nodejs10.x" zip: "cloudfront-headers.js" publish: true on: branch: deploy
Test against MRI 2.5.1, 2.4.4, 2.3.7, 2.2.10, and 2.1.10
language: ruby cache: bundler sudo: false bundler_args: --without perf script: bundle exec rake before_install: - gem install bundler rvm: - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0-p648 - 2.1.8 - 2.2.4 - 2.3.0 - ruby-head - ree - jruby-18mode - jruby-19mode - jruby-head matrix: allow_failures: - rvm: ree - rvm: ruby-head - rvm: jruby-head
language: ruby cache: bundler sudo: false bundler_args: --without perf script: bundle exec rake before_install: - gem install bundler rvm: - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0-p648 - 2.1.10 - 2.2.10 - 2.3.7 - 2.4.4 - 2.5.1 - ruby-head - ree - jruby-18mode - jruby-19mode - jruby-head matrix: allow_failures: - rvm: ree - rvm: ruby-head - rvm: jruby-head
Add Ruby 1.9.3 to Travis CI build matrix.
language: ruby rvm: - 2.1.0 - 2.0.0
language: ruby rvm: - 2.1.0 - 2.0.0 - 1.9.3
Add 3.2 and php 5.6 test
# See https://github.com/silverstripe-labs/silverstripe-travis-support for setup details language: php php: - 5.3 sudo: false env: - DB=MYSQL CORE_RELEASE=3.1 matrix: include: - php: 5.4 env: DB=MYSQL CORE_RELEASE=3 before_script: - git clone git://github.com/silverstripe-labs/silverstripe-travis-support.git ~/travis-support - php ~/travis-support/travis_setup.php --source `pwd` --target ~/builds/ss - cd ~/builds/ss script: - vendor/bin/phpunit comment-notifications/tests/
# See https://github.com/silverstripe-labs/silverstripe-travis-support for setup details language: php php: - 5.3 sudo: false env: - DB=MYSQL CORE_RELEASE=3.1 matrix: include: - php: 5.6 env: DB=MYSQL CORE_RELEASE=3.2 - php: 5.4 env: DB=MYSQL CORE_RELEASE=3 before_script: - git clone git://github.com/silverstripe-labs/silverstripe-travis-support.git ~/travis-support - php ~/travis-support/travis_setup.php --source `pwd` --target ~/builds/ss - cd ~/builds/ss script: - vendor/bin/phpunit comment-notifications/tests/
Move Travis build to Yarn
sudo: false language: node_js node_js: - "6" cache: directories: - node_modules install: - npm install script: - npm run lint - npm run test after_success: - npm run codecov
sudo: false language: node_js node_js: - "6" cache: directories: - node_modules install: - yarn install script: - yarn run lint - yarn test after_success: - yarn run codecov
Remove running specs for Ruby 1.9.3
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.1 - 2.2.3 before_install: gem install bundler git: depth: 1
language: ruby rvm: - 2.0.0 - 2.1.1 - 2.2.3 before_install: gem install bundler git: depth: 1
Test with latest Ruby versions
language: ruby cache: bundler sudo: false rvm: - 2.6.5 - 2.5.7 - 2.4.9 - 2.3.8 - ruby-head - jruby-9.2.5.0 gemfile: - gemfiles/rails_4.2.10.gemfile - gemfiles/rails_5.0.7.gemfile - gemfiles/rails_5.1.6.gemfile - gemfiles/rails_5.2.0.gemfile
language: ruby cache: bundler sudo: false rvm: - 2.7.1 - 2.6.6 - 2.5.8 - 2.4.10 - 2.3.8 - ruby-head - jruby-9.2.13.0 gemfile: - gemfiles/rails_4.2.10.gemfile - gemfiles/rails_5.0.7.gemfile - gemfiles/rails_5.1.6.gemfile - gemfiles/rails_5.2.0.gemfile
Add example running to Travis configuration
language: python python: "3.5" install: "pip install tox coveralls" env: - TOX_ENV=py3 - TOX_ENV=py27 - TOX_ENV=pylint - TOX_ENV=doc script: tox -e $TOX_ENV after_success: coveralls
language: python python: "3.5" install: "pip install tox coveralls" env: - TOX_ENV=py3 - TOX_ENV=py27 - TOX_ENV=pylint - TOX_ENV=doc - TOX_ENV=examples-py3 - TOX_ENV=examples-py27 script: tox -e $TOX_ENV after_success: coveralls
Install Devel::Cover 1.23 for 5.8 support
sudo: false language: perl perl: - "5.8" - "5.10" - "5.12" - "5.14" - "5.16" - "5.18" - "5.20" - "5.22" - "5.24" before_install: - git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers - source ~/travis-perl-helpers/init --auto install: - cpanm --quiet --installdeps --notest . - cpanm --quiet --notest Devel::Cover::Report::Coveralls script: - cover -delete && cover -test after_success: - cover -report coveralls
sudo: false language: perl perl: - "5.8" - "5.10" - "5.12" - "5.14" - "5.16" - "5.18" - "5.20" - "5.22" - "5.24" before_install: - git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers - source ~/travis-perl-helpers/init --auto install: - cpanm --quiet --installdeps --notest . - cpanm --quiet --notest Devel::Cover@1.23 - cpanm --quiet --notest Devel::Cover::Report::Coveralls script: - cover -delete && cover -test after_success: - cover -report coveralls
Include golang cover tool for test coverage metrics on CI
language: go go: - 1.2 - 1.3 script: bin/unit before_script: - export PATH=$HOME/gopath/bin:$PATH - echo $PATH - go get github.com/tools/godep - which godep - godep restore notifications: webhooks: - http://pulse.pivotallabs.com/projects/351885a3-fe2e-44df-9b25-76bd4a19f297/status email: - cf-autoscale-eng@pivotallabs.com
language: go go: - 1.2 - 1.3 script: bin/unit before_script: - export PATH=$HOME/gopath/bin:$PATH - go get code.google.com/p/go.tools/cmd/cover - go get github.com/tools/godep - godep restore notifications: webhooks: - http://pulse.pivotallabs.com/projects/351885a3-fe2e-44df-9b25-76bd4a19f297/status email: - cf-autoscale-eng@pivotallabs.com
Update from Hackage at 2022-10-09T08:56:24Z
homepage: http://hspec.github.io/ changelog-type: '' hash: e9d680a6c5d91a4be0ddae2cb459a206f26937ff73600256321275dcdac25c8a test-bench-deps: hspec-contrib: -any base: ==4.* hspec: -any hspec-core: '>=2.6.0 && <2.10' HUnit: -any QuickCheck: -any maintainer: Simon Hengel <sol@typeful.net> synopsis: Contributed functionality for Hspec changelog: '' basic-deps: base: ==4.* hspec-core: '>=2.5.0' HUnit: -any all-versions: - 0.1.0 - 0.2.0 - 0.2.1 - 0.2.2 - 0.3.0 - 0.4.0 - 0.5.0 - 0.5.1 author: '' latest: 0.5.1 description-type: haddock description: Contributed functionality for Hspec license-name: MIT
homepage: http://hspec.github.io/ changelog-type: '' hash: 301a94b5892d63f34b7f863a7e080dc7c6b97b6d509f7f27b1f42080baac26e1 test-bench-deps: hspec-contrib: -any base: ==4.* hspec: -any hspec-core: '>=2.6.0' HUnit: -any QuickCheck: -any maintainer: Simon Hengel <sol@typeful.net> synopsis: Contributed functionality for Hspec changelog: '' basic-deps: base: ==4.* hspec-core: '>=2.5.0' HUnit: -any all-versions: - 0.1.0 - 0.2.0 - 0.2.1 - 0.2.2 - 0.3.0 - 0.4.0 - 0.5.0 - 0.5.1 - 0.5.1.1 author: '' latest: 0.5.1.1 description-type: haddock description: Contributed functionality for Hspec license-name: MIT
Update from Hackage at 2016-11-19T10:08:05Z
homepage: https://github.com/cocreature/system-locale changelog-type: '' hash: ef22b0c977e3fd978ad795eda8124279e4e5712d08815234b63cd3b3f97718e9 test-bench-deps: base: -any hspec: -any system-locale: -any maintainer: moritz.kiefer@purelyfunctional.org synopsis: Get system locales changelog: '' basic-deps: base: ! '>=4.7 && <5' time: ! '>=1.5 && <1.7' megaparsec: ! '>=5.0 && <5.2' process: ! '>=1.2 && <1.5' all-versions: - '0.1.0.0' author: Moritz Kiefer latest: '0.1.0.0' description-type: haddock description: Please see README.md license-name: BSD3
homepage: https://github.com/cocreature/system-locale changelog-type: '' hash: 3681691c486cb637328329037f5ccb6bc266310cc4db7bb04072a7084328cfa4 test-bench-deps: base: -any hspec: -any system-locale: -any maintainer: moritz.kiefer@purelyfunctional.org synopsis: Get system locales changelog: '' basic-deps: base: ! '>=4.7 && <5' time: ! '>=1.5 && <1.8' megaparsec: ! '>=5.0 && <5.2' process: ! '>=1.2 && <1.5' all-versions: - '0.1.0.0' author: Moritz Kiefer latest: '0.1.0.0' description-type: haddock description: Please see README.md license-name: BSD3
Use proper versions of packages for CI
language: python python: - "3.5" - "3.6" install: - pip install . - pip install pytest codecov pytest-cov - export PYTHONPATH="." # No data is collected by `coverage` without this. branches: only: - master - develop script: - python -m pytest --cov=dsawl --cov-config .coveragerc after_success: - codecov notifications: email: recipients: - nikolay.lysenko.1992@gmail.com on_success: never on_failure: always
language: python python: - "3.5" - "3.6" install: - pip install -r requirements.txt - pip install . - pip install pytest codecov pytest-cov - export PYTHONPATH="." # No data is collected by `coverage` without this. branches: only: - master - develop script: - python -m pytest --cov=dsawl --cov-config .coveragerc after_success: - codecov notifications: email: recipients: - nikolay.lysenko.1992@gmail.com on_success: never on_failure: always
Remove older node versions that are breaking CI builds
language: node_js node_js: - "0.10" - "0.12" - "4" - "5" - "6" - "7" branches: only: - master notifications: email: on_success: never on_failure: change
language: node_js node_js: - "5" - "6" - "7" branches: only: - master notifications: email: on_success: never on_failure: change
Add PHP 7.3 target to Travis configuration
language: php matrix: include: - php: 7.1 - php: 7.2 - php: nightly fast_finish: true allow_failures: - php: nightly before_install: - phpenv config-rm xdebug.ini || true - composer config --global github-oauth.github.com $GITHUB_TOKEN install: composer install --prefer-dist --no-progress --no-interaction script: scripts/travis after_script: scripts/travis-after deploy: - provider: script script: make publish skip_cleanup: true on: php: '7.2' branch: master - provider: script script: make publish skip_cleanup: true on: php: '7.2' tags: true env: global: - ELOQUENT_PUBLISH_VERSION=7.2 - secure: "o8G7oGV2ojgXwUppZiegNQy5Za2Bso5rvXUbdR41bSKZWUZM/l/J5/SxF5Ygf5sPSFBQ5LmbBb1juMU6WtCyDi74rMpzwhpEuTgqDwYlY2RFQ0QPb/Mq0S9BejAWLpa+yh2LrHDWQlG/M8Ns5ycAFxPtYNwx3QzJzOTLqy2uZ/c=" cache: directories: - $HOME/.composer sudo: false
language: php matrix: include: - php: 7.1 - php: 7.2 - php: 7.3 - php: nightly fast_finish: true allow_failures: - php: nightly before_install: - phpenv config-rm xdebug.ini || true - composer config --global github-oauth.github.com $GITHUB_TOKEN install: composer install --prefer-dist --no-progress --no-interaction script: scripts/travis after_script: scripts/travis-after deploy: - provider: script script: make publish skip_cleanup: true on: php: '7.2' branch: master - provider: script script: make publish skip_cleanup: true on: php: '7.2' tags: true env: global: - ELOQUENT_PUBLISH_VERSION=7.2 - secure: "o8G7oGV2ojgXwUppZiegNQy5Za2Bso5rvXUbdR41bSKZWUZM/l/J5/SxF5Ygf5sPSFBQ5LmbBb1juMU6WtCyDi74rMpzwhpEuTgqDwYlY2RFQ0QPb/Mq0S9BejAWLpa+yh2LrHDWQlG/M8Ns5ycAFxPtYNwx3QzJzOTLqy2uZ/c=" cache: directories: - $HOME/.composer sudo: false
Disable email notifications from Travis.
--- language: php sudo: false php: - 5.5 - 5.6 - 7.0 before_install: - phpenv config-rm xdebug.ini || true - composer self-update install: - composer install --prefer-source script: ./vendor/bin/phpunit
--- language: php sudo: false php: - 5.5 - 5.6 - 7.0 before_install: - phpenv config-rm xdebug.ini || true - composer self-update install: - composer install --prefer-source script: ./vendor/bin/phpunit notifications: email: false
Remove rustfmt testing until the style RFCs stabilize that a little more.
sudo: false language: rust rust: - nightly before_script: (cargo install --verbose --root $HOME rustfmt || true) script: - cd backend - cargo fmt -- --write-mode=diff - cargo build --verbose - cargo test --verbose cache: cargo env: - PATH=$HOME/.cargo/bin:$PATH
sudo: false language: rust cache: cargo rust: - nightly script: - cargo build --verbose - cargo test --verbose
Enable fast finish in Travis
branches: only: - master language: ruby bundler_args: --without development script: "bundle exec rake spec SPEC_OPTS='--format documentation'" after_success: - git clone -q git://github.com/puppetlabs/ghpublisher.git .forge-release - .forge-release/publish rvm: - 1.8.7 - 1.9.3 - 2.0.0 env: matrix: - PUPPET_GEM_VERSION="~> 2.7.0" - PUPPET_GEM_VERSION="~> 3.3.0" global: - PUBLISHER_LOGIN=puppetlabs - secure: |- Hc9OPm/kRTmjXSP3TbLir/y6Yy1LqmZS8zrqxdTbpo3Z04EYv1uKhaFDpECl 0a6bJRUWpLWIuDco08fHMeCTWoFGzE97EDelhHKSYiTNllzYKWPHy7ki/al6 wjz0gLtiDfmktHQOHatBy6EKLFjoyjGoE4cUUta4Ixq4tMBNzEA= matrix: exclude: - rvm: 1.9.3 env: PUPPET_GEM_VERSION="~> 2.7.0" - rvm: 2.0.0 env: PUPPET_GEM_VERSION="~> 2.7.0" notifications: email: false
--- branches: only: - master language: ruby bundler_args: --without development script: "bundle exec rake spec SPEC_OPTS='--format documentation'" after_success: - git clone -q git://github.com/puppetlabs/ghpublisher.git .forge-release - .forge-release/publish rvm: - 1.8.7 - 1.9.3 - 2.0.0 env: matrix: - PUPPET_GEM_VERSION="~> 2.7.0" - PUPPET_GEM_VERSION="~> 3.3.0" global: - PUBLISHER_LOGIN=puppetlabs - secure: |- Hc9OPm/kRTmjXSP3TbLir/y6Yy1LqmZS8zrqxdTbpo3Z04EYv1uKhaFDpECl 0a6bJRUWpLWIuDco08fHMeCTWoFGzE97EDelhHKSYiTNllzYKWPHy7ki/al6 wjz0gLtiDfmktHQOHatBy6EKLFjoyjGoE4cUUta4Ixq4tMBNzEA= matrix: fast_finish: true exclude: - rvm: 1.9.3 env: PUPPET_GEM_VERSION="~> 2.7.0" - rvm: 2.0.0 env: PUPPET_GEM_VERSION="~> 2.7.0" notifications: email: false
Add OpenMPI path to current path
# Ubuntu 14.04 Trusty support sudo: required dist: trusty language: cpp # Conifguration matrix matrix: include: - compiler: gcc env: - CXX_COMPILER=g++-4.9 - CC_COMPILER=gcc-4.9 - FC_COMPILER=gfortran-4.9 addons: apt: sources: ['ubuntu-toolchain-r-test'] packages: - gcc-4.9 - g++-4.9 - gfortran-4.9 # Install OpenMPI for OMNI Compiler before_script: - pushd $(pwd) - wget --no-check-certificate https://www.open-mpi.org/software/ompi/v2.0/downloads/openmpi-2.0.1.tar.gz - tar -zxf openmpi-2.0.1.tar.gz - cd openmpi-2.0.1 - sh ./configure --prefix=$HOME/openmpi > /dev/null - make -j > /dev/null - sudo make install > /dev/null - popd # Build CLAW FORTRAN Compiler and execute the test suite script: - mkdir build - cd build - export FC=$FC_COMPILER - export CC=$CC_COMPILER - export CXX=$CXX_COMPILER - cmake .. && make - make clean-transformation transformation test
# Ubuntu 14.04 Trusty support sudo: required dist: trusty language: cpp # Conifguration matrix matrix: include: - compiler: gcc env: - CXX_COMPILER=g++-4.9 - CC_COMPILER=gcc-4.9 - FC_COMPILER=gfortran-4.9 addons: apt: sources: ['ubuntu-toolchain-r-test'] packages: - gcc-4.9 - g++-4.9 - gfortran-4.9 # Install OpenMPI for OMNI Compiler before_script: - pushd $(pwd) - wget --no-check-certificate https://www.open-mpi.org/software/ompi/v2.0/downloads/openmpi-2.0.1.tar.gz - tar -zxf openmpi-2.0.1.tar.gz - cd openmpi-2.0.1 - sh ./configure --prefix=$HOME/openmpi > /dev/null - make -j > /dev/null - sudo make install > /dev/null - export PATH=$PATH:$HOME/openmpi/bin - popd # Build CLAW FORTRAN Compiler and execute the test suite script: - mkdir build - cd build - export FC=$FC_COMPILER - export CC=$CC_COMPILER - export CXX=$CXX_COMPILER - cmake .. && make - make clean-transformation transformation test
Clean up Travis CI config.
git: depth: 5 addons: apt: packages: - libcurl4-openssl-dev # required to avoid SSL errors - openjdk-8-jre language: node_js node_js: - "10" env: global: - RUBY_VERSION=2.4 before_install: - export NOKOGIRI_USE_SYSTEM_LIBRARIES=true - rvm use $RUBY_VERSION --install --binary --fuzzy install: - npm ci - bundle install --deployment --jobs=3 --retry=3 --clean script: - bundle exec jekyll build - bundle exec htmlproofer ./_site --allow-hash-href --assume-extension --check-external-hash --check-favicon --check-img-http --check-opengraph --disable-external --enforce-https --empty-alt-ignore --internal-domains sustainoss.org - npm test matrix: fast_finish: true cache: directories: - "$HOME/.npm" - vendor/bundle notifications: email: false
git: depth: 5 language: node_js node_js: - "10" env: global: - RUBY_VERSION=2.5 before_install: - export NOKOGIRI_USE_SYSTEM_LIBRARIES=true - rvm use $RUBY_VERSION --install --binary --fuzzy install: - npm ci - bundle install --deployment --jobs=3 --retry=3 --clean script: - bundle exec jekyll build - bundle exec htmlproofer ./_site --allow-hash-href --assume-extension --check-external-hash --check-favicon --check-img-http --check-opengraph --disable-external --enforce-https --empty-alt-ignore --internal-domains sustainoss.org - npm test matrix: fast_finish: true cache: directories: - "$HOME/.npm" - vendor/bundle notifications: email: false
Add ruby-head as allowed failure.
rvm: - 1.9.2 - 1.9.3 notifications: recipients: - jari.bakken@gmail.com - p0deje@gmail.com irc: "irc.freenode.net#watir" before_script: - support/travis.sh env: - WATIR_WEBDRIVER_BROWSER=firefox - WATIR_WEBDRIVER_BROWSER=firefox ALWAYS_LOCATE=false - WATIR_WEBDRIVER_BROWSER=firefox PREFER_CSS=1 SELECTOR_STATS=1 - WATIR_WEBDRIVER_BROWSER=chrome - WATIR_WEBDRIVER_BROWSER=chrome ALWAYS_LOCATE=false - WATIR_WEBDRIVER_BROWSER=chrome PREFER_CSS=1 SELECTOR_STATS=1
rvm: - 1.9.2 - 1.9.3 - ruby-head notifications: recipients: - jari.bakken@gmail.com - p0deje@gmail.com irc: "irc.freenode.net#watir" before_script: - support/travis.sh env: - WATIR_WEBDRIVER_BROWSER=firefox - WATIR_WEBDRIVER_BROWSER=firefox ALWAYS_LOCATE=false - WATIR_WEBDRIVER_BROWSER=firefox PREFER_CSS=1 SELECTOR_STATS=1 - WATIR_WEBDRIVER_BROWSER=chrome - WATIR_WEBDRIVER_BROWSER=chrome ALWAYS_LOCATE=false - WATIR_WEBDRIVER_BROWSER=chrome PREFER_CSS=1 SELECTOR_STATS=1 matrix: allow_failures: - rvm: ruby-head
Add Redis to Travis config.
language: ruby rvm: - 2.1.1 addons: postgresql: '9.3' before_script: - psql -c 'create database asm_test;' -U postgres - cp config/database.yml.travis config/database.yml - bin/rake db:schema:load RAILS_ENV=test env: global: secure: e5U3AYlkOhCiDJxHnR+tAkARa+EL3mcKYQujnerIkXxcCHz2D2cRgYutGYb6sfZxZaspZsk62EyxGTeEcCJP5D5ANaOkpQ4qdSjznHRJdjiEcM2+XBUsRXgTQeeXbtpG5uW+gX9DlFf0e1149RHXErdR0WiUdrHpRKnAU8LOV48=
language: ruby rvm: - 2.1.1 addons: postgresql: '9.3' services: - redis-server before_script: - psql -c 'create database asm_test;' -U postgres - cp config/database.yml.travis config/database.yml - bin/rake db:schema:load RAILS_ENV=test env: global: secure: e5U3AYlkOhCiDJxHnR+tAkARa+EL3mcKYQujnerIkXxcCHz2D2cRgYutGYb6sfZxZaspZsk62EyxGTeEcCJP5D5ANaOkpQ4qdSjznHRJdjiEcM2+XBUsRXgTQeeXbtpG5uW+gX9DlFf0e1149RHXErdR0WiUdrHpRKnAU8LOV48=
Install pep8 before trying to use it
language: python python: - "3.4" # command to install dependencies install: - pep8 . - pip install . # command to run tests script: python -m unittest discover maloja
language: python python: - "3.4" # command to install dependencies install: - pip install pep8 - pip install . # command to run tests script: - pep8 . - python -m unittest discover maloja
Add gems for osx role.
language: objective-c before_install: - brew update install: - sudo pip install ansible --quiet script: - bash install.sh --skip-short-stack - cp ~/.short-stack/templates/stack-test.yml ~/.stack.yml - short-stack - > short-stack | grep -q 'changed=0.*failed=0' && (echo 'Idempotence test: pass' && exit 0) || (echo 'Idempotence test: fail' && exit 1) notifications: slack: secure: eDUJqpiWoEaJ29HqWF44MVesPy0Jlh2Q+nmWaffk56JpVv4sk6FKAIjU+za5/p+XOFGPWLw29X/rgi2DiBAy+5A013fnztBrz5FokofUI17sg0g85pnxQcOJX5gxg9N4Ip5CvTFOw9uN1rEMQsJgb8DJIE3Sg2W1Q5YxBALB4XY= webhooks: urls: - https://webhooks.gitter.im/e/4fd37ad90f96843e34ee on_success: change on_failure: always on_start: false
language: objective-c before_install: - brew update install: - sudo pip install ansible --quiet - gem install json - gem install CFPropertyList script: - bash install.sh --skip-short-stack - cp ~/.short-stack/templates/stack-test.yml ~/.stack.yml - short-stack - > short-stack | grep -q 'changed=0.*failed=0' && (echo 'Idempotence test: pass' && exit 0) || (echo 'Idempotence test: fail' && exit 1) notifications: slack: secure: eDUJqpiWoEaJ29HqWF44MVesPy0Jlh2Q+nmWaffk56JpVv4sk6FKAIjU+za5/p+XOFGPWLw29X/rgi2DiBAy+5A013fnztBrz5FokofUI17sg0g85pnxQcOJX5gxg9N4Ip5CvTFOw9uN1rEMQsJgb8DJIE3Sg2W1Q5YxBALB4XY= webhooks: urls: - https://webhooks.gitter.im/e/4fd37ad90f96843e34ee on_success: change on_failure: always on_start: false
Update the Ruby build matrix for Travis CI.
sudo: false cache: bundler language: ruby rvm: - 2.2.5 - 2.3.1 before_install: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" - "sleep 5"
sudo: false cache: bundler language: ruby rvm: - 2.2.6 - 2.3.3 - 2.4.0 before_install: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" - "sleep 5"
Allow Python 2.6 builds to fail
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "pypy" matrix: allow_failures: - python: "3.2" - python: "3.3" - python: "pypy" install: - uname -a - sudo apt-get update -qq - sudo apt-get install -qq curl protobuf-compiler libprotobuf-dev libncurses5 libc6 - sudo sh -c "curl -k https://raw.github.com/alavrik/piqi-binary/master/Linux-x86_64/piqi > /usr/bin/piqi" - sudo chmod +x /usr/bin/piqi - pip install --upgrade https://bitbucket.org/logilab/astroid/get/5ed6266cab78.zip - if [[ ${TRAVIS_PYTHON_VERSION:0:1} == '3' ]]; then pip install -r requirements-dev-py3k.txt; else pip install -r requirements-dev-py2.txt; fi; - python setup.py build - python setup.py install script: make test && make check
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "pypy" matrix: allow_failures: - python: "2.6" - python: "3.2" - python: "3.3" - python: "pypy" install: - uname -a - sudo apt-get update -qq - sudo apt-get install -qq curl protobuf-compiler libprotobuf-dev libncurses5 libc6 - sudo sh -c "curl -k https://raw.github.com/alavrik/piqi-binary/master/Linux-x86_64/piqi > /usr/bin/piqi" - sudo chmod +x /usr/bin/piqi - pip install --upgrade https://bitbucket.org/logilab/astroid/get/5ed6266cab78.zip - if [[ ${TRAVIS_PYTHON_VERSION:0:1} == '3' ]]; then pip install -r requirements-dev-py3k.txt; else pip install -r requirements-dev-py2.txt; fi; - python setup.py build - python setup.py install script: make test && make check
Test with latest rubies, dropping EOL ones.
language: ruby rvm: - 2.5.8 - 2.6.6 - 2.7.2 - 3.0.0 gemfile: - gemfiles/activerecord_6.0.gemfile - gemfiles/activerecord_6.1.gemfile fast_finish: true
language: ruby rvm: - 2.6.9 - 2.7.5 - 3.0.3 gemfile: - gemfiles/activerecord_6.0.gemfile - gemfiles/activerecord_6.1.gemfile fast_finish: true
Set test command for TravisCI
language: ruby rvm: - 1.8.7 env: - PUPPET_GEM_VERSION="3.4.3"
language: ruby script: "bundle exec rake spec" rvm: - 1.8.7 env: - PUPPET_GEM_VERSION="3.4.3"
Use nosetests -v for more useful output on success.
language: python python: - "2.7" install: pip install -r requirements.txt script: nosetests
language: python python: - "2.7" install: pip install -r requirements.txt script: nosetests -v
Add PHP 7.0 to the list of tested PHP versions.
language: php php: - 5.4 - 5.5 - 5.6 - hhvm before_script: - composer self-update - composer update script: - php vendor/bin/phpunit after_script: - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover log/coverage.xml - wget https://tomzx.github.io/php-semver-checker-git/php-semver-checker-git.phar - php php-semver-checker-git.phar suggest src src --allow-detached -vvv
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - hhvm matrix: allow_failures: - php: 7.0 before_script: - composer self-update - composer update script: - php vendor/bin/phpunit after_script: - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover log/coverage.xml - wget https://tomzx.github.io/php-semver-checker-git/php-semver-checker-git.phar - php php-semver-checker-git.phar suggest src src --allow-detached -vvv
Add patch version back to Travis config It did not like that they were missing
language: ruby sudo: false rvm: - 2.2 - 2.3 script: bundle exec rspec env: - PAGINATOR=kaminari - PAGINATOR=will_paginate
language: ruby sudo: false rvm: - 2.2.5 - 2.3.1 script: bundle exec rspec env: - PAGINATOR=kaminari - PAGINATOR=will_paginate
Remove unneded JaCoCoReport from Travis-CI
language: java jdk: - oraclejdk8 before_install: - chmod +x gradlew - git config --unset-all remote.origin.fetch - git config --add remote.origin.fetch '+refs/heads/*:refs/remotes/origin/*' - git fetch --unshallow - git fetch origin testbranch:testbranch after_success: - ./gradlew jacocoTestReport after_failure: - cat build/test-results/*.xml
language: java jdk: - oraclejdk8 before_install: - chmod +x gradlew - git config --unset-all remote.origin.fetch - git config --add remote.origin.fetch '+refs/heads/*:refs/remotes/origin/*' - git fetch --unshallow - git fetch origin testbranch:testbranch after_failure: - cat build/test-results/*.xml
Test on Node 0.8 on Travis CI.
language: node_js node_js: - 0.6 - 0.7 branches: only: - master notifications: recipients: - michi@netzpiraten.ch
language: node_js node_js: - 0.6 - 0.7 - 0.8 branches: only: - master notifications: recipients: - michi@netzpiraten.ch
Add npm install to tavis conf.
language: node_js node_js: - "0.10" script: cd server/ && npm test
language: node_js node_js: - "0.10" before_install: - cd server/ install: - npm install script: - npm test
Fix error with pybuilder + Travis CI + Python 3.6
language: python python: - "pypy" # pypy3 is broken until https://github.com/pallets/flask/pull/1841 # is released, which should happen in flask version 0.11.2. # - "pypy3" - "2.6" - "2.7" - "3.3" - "3.4" - "3.5" - "3.6" install: - pip install pybuilder - pip install coveralls - pyb install_dependencies script: "pyb -X verify analyze" after_success: - coveralls --verbose
language: python python: - "pypy" # pypy3 is broken until https://github.com/pallets/flask/pull/1841 # is released, which should happen in flask version 0.11.2. # - "pypy3" - "2.6" - "2.7" - "3.3" - "3.4" - "3.5" - "3.6" install: - pip install -U pip setuptools - pip install pybuilder - pip install coveralls - pyb install_dependencies script: "pyb -X verify analyze" after_success: - coveralls --verbose
Drop tests for PHP < 5.5, add PHP 7.1 and 7.2
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - hhvm before_script: - curl -s http://getcomposer.org/installer | php - php composer.phar install --dev - mkdir -p build/logs script: - phpunit --coverage-clover build/logs/clover.xml matrix: allow_failures: - php: hhvm
language: php php: - 5.5 - 5.6 - 7.1 - 7.2 before_script: - curl -s http://getcomposer.org/installer | php - php composer.phar install --dev - mkdir -p build/logs script: - phpunit --coverage-clover build/logs/clover.xml matrix: allow_failures: - php: hhvm
Add "pgp-happy-eyeballs" in Travis to help cut down on gpg-related issues
language: bash services: docker env: - VERSION=5.0-rc VARIANT= - VERSION=5.0-rc VARIANT=32bit - VERSION=5.0-rc VARIANT=alpine - VERSION=4.0 VARIANT= - VERSION=4.0 VARIANT=32bit - VERSION=4.0 VARIANT=alpine - VERSION=3.2 VARIANT= - VERSION=3.2 VARIANT=32bit - VERSION=3.2 VARIANT=alpine install: - git clone https://github.com/docker-library/official-images.git ~/official-images before_script: - env | sort - cd "$VERSION" - image="redis:${VERSION}${VARIANT:+-$VARIANT}" script: - travis_retry docker build -t "$image" "${VARIANT:-.}" - ~/official-images/test/run.sh "$image" after_script: - docker images # vim:set et ts=2 sw=2:
language: bash services: docker env: - VERSION=5.0-rc VARIANT= - VERSION=5.0-rc VARIANT=32bit - VERSION=5.0-rc VARIANT=alpine - VERSION=4.0 VARIANT= - VERSION=4.0 VARIANT=32bit - VERSION=4.0 VARIANT=alpine - VERSION=3.2 VARIANT= - VERSION=3.2 VARIANT=32bit - VERSION=3.2 VARIANT=alpine install: - git clone https://github.com/docker-library/official-images.git ~/official-images before_script: - env | sort - wget -qO- 'https://github.com/tianon/pgp-happy-eyeballs/raw/master/hack-my-builds.sh' | bash - cd "$VERSION" - image="redis:${VERSION}${VARIANT:+-$VARIANT}" script: - | ( set -Eeuo pipefail set -x docker build -t "$image" . ~/official-images/test/run.sh "$image" ) after_script: - docker images # vim:set et ts=2 sw=2:
Build kore with NOTLS=1 (Travis CI).
language: c compiler: - clang - gcc before_install: - sudo add-apt-repository -y ppa:maxmind/ppa - sudo apt-get -qq update - sudo apt-get install -y libmaxminddb-dev libssl-dev - git clone https://git.kore.io/kore.git - cd kore && make - sudo make install - cd - script: kodev build
language: c compiler: - clang - gcc before_install: - sudo add-apt-repository -y ppa:maxmind/ppa - sudo apt-get -qq update - sudo apt-get install -y libmaxminddb-dev libssl-dev - git clone https://git.kore.io/kore.git - cd kore && make NOTLS=1 - sudo make install - cd - script: kodev build
Add ability to unittest puppet 4
--- sudo: false language: ruby bundler_args: --without system_tests script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--color --format documentation'" matrix: fast_finish: true include: - rvm: 1.8.7 env: PUPPET_GEM_VERSION="~> 3.0" - rvm: 1.9.3 env: PUPPET_GEM_VERSION="~> 3.0" - rvm: 2.1.5 env: PUPPET_GEM_VERSION="~> 3.0" - rvm: 2.1.5 env: PUPPET_GEM_VERSION="~> 3.0" FUTURE_PARSER="yes" notifications: email: false
--- sudo: false language: ruby bundler_args: --without system_tests script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--color --format documentation'" matrix: fast_finish: true include: - rvm: 1.8.7 env: PUPPET_GEM_VERSION="~> 3.0" - rvm: 1.9.3 env: PUPPET_GEM_VERSION="~> 3.0" - rvm: 2.1.5 env: PUPPET_GEM_VERSION="~> 3.0" - rvm: 2.1.5 env: PUPPET_GEM_VERSION="~> 3.0" FUTURE_PARSER="yes" - rvm: 2.1.6 env: PUPPET_GEM_VERSION="~> 4.0" STRICT_VARIABLES="yes" allow_failures: - rvm: 2.1.6 env: PUPPET_GEM_VERSION="~> 4.0" STRICT_VARIABLES="yes" notifications: email: false
Change project name for better paths
# # This config file is meant for settings that affect your whole blog, values # which you are expected to set up once and rarely need to edit after that. # For technical reasons, this file is *NOT* reloaded automatically when you use # 'jekyll serve'. If you change this file, please restart the server process. # Site settings title: RUN-CMD $ KARL SANDWICH description: > Software developer, drone crasher, recovering maker, occasional gamer, faux tographer, avid indoorsman. baseurl: "/run-cmd" # the subpath of your site, e.g. /blog url: "http://yourdomain.com" # the base hostname & protocol for your site twitter_username: tr0nk github_username: RUN-CMD thingiverse_username: sandwich tinkercad_username: 1oyJZCjgl5d-sandwich # Build settings markdown: kramdown
# # This config file is meant for settings that affect your whole blog, values # which you are expected to set up once and rarely need to edit after that. # For technical reasons, this file is *NOT* reloaded automatically when you use # 'jekyll serve'. If you change this file, please restart the server process. # Site settings title: RUN-CMD $ KARL SANDWICH description: > Software developer, drone crasher, recovering maker, occasional gamer, faux tographer, avid indoorsman. baseurl: "/home" # the subpath of your site, e.g. /blog url: "http://yourdomain.com" # the base hostname & protocol for your site twitter_username: tr0nk github_username: RUN-CMD thingiverse_username: sandwich tinkercad_username: 1oyJZCjgl5d-sandwich # Build settings markdown: kramdown
Change the `sass_dir` to `load_paths` for multiple folders
# Website settings title: 1upnote tagline: Web design, development and UX description: >- 1upnote is a blog that focuses on standards-based design techniques, useful UX information and expert tips for building effective user interfaces. baseurl: '' url: https://1upnote.com permalink: /:title timezone: Asia/Seoul version: 0.0.1 # Language and locale settings language: code: ko locale: ko_KR name: Korean # Author information author: name: 1UP location: Seoul, Korea email: 1up@1upz.com twitter: 1upz github: woneob # File pathes path: css: /assets/styles js: /assets/scripts img: /assets/images # Exclude files from the production build exclude: - README.md - Gemfile - Gemfile.lock - CNAME - LICENSE # Markdown settings markdown: kramdown # Kramdown settings kramdown: input: GFM hard_wrap: false # Code highlighter settings highlighter: rouge # Sass settings # http://sass-lang.com/ # http://jekyllrb.com/docs/assets/#sassscss sass: add_charset: true sass_dir: assets/styles/_scss style: compressed # Compress HTML # https://github.com/penibelst/jekyll-compress-html compress_html: clippings: all comments: - "<!-- " - " -->"
# Website settings title: 1upnote tagline: Web design, development and UX description: >- 1upnote is a blog that focuses on standards-based design techniques, useful UX information and expert tips for building effective user interfaces. baseurl: '' url: https://1upnote.com permalink: /:title timezone: Asia/Seoul version: 0.0.1 # Language and locale settings language: code: ko locale: ko_KR name: Korean # Author information author: name: 1UP location: Seoul, Korea email: 1up@1upz.com twitter: 1upz github: woneob # File pathes path: css: /assets/styles js: /assets/scripts img: /assets/images # Exclude files from the production build exclude: - README.md - Gemfile - Gemfile.lock - CNAME - LICENSE # Markdown settings markdown: kramdown # Kramdown settings kramdown: input: GFM hard_wrap: false # Code highlighter settings highlighter: rouge # Sass settings # http://sass-lang.com/ # http://jekyllrb.com/docs/assets/#sassscss sass: add_charset: true load_paths: - assets/styles/_scss style: compressed # Compress HTML # https://github.com/penibelst/jekyll-compress-html compress_html: clippings: all comments: - "<!-- " - " -->"
Add mirror to prose config
markdown: redcarpet prose: metadata: _posts: - name: "title" field: element: "text" label: "Title" value: "" placeholder: "Title Goes Here" - name: "layout" field: element: "text" label: "Layout" value: "post" placeholder: "Enter a layout" - name: "external-url" field: element: "text" label: "URL Reference" value: "" placeholder: "http://"
markdown: redcarpet prose: metadata: _posts: - name: "title" field: element: "text" label: "Title" value: "" placeholder: "Title Goes Here" - name: "layout" field: element: "text" label: "Layout" value: "post" placeholder: "Enter a layout" - name: "external-url" field: element: "text" label: "URL Reference" value: "" placeholder: "http://" - name: "mirror" field: element: "text" label: "Link to the file mirror" value: "" placeholder: "some-file.txt"
Edit config.yml for initial site
########################### EDIT YOUR SETTINGS HERE # Site settings title: Brume # give your site a title email: you@example.com # put your email address in here; optional # edit your site description; keep it brief description: > # this just means to ignore newlines until "baseurl:" Brume is simple. It's easy to use. It's a Jekyll theme. baseurl: # the subpath of your site, e.g. /blog/; if unsure, leave this blank url: http://[username].github.io # replace [username] with your github username (no brackets) github_username: github_username # replace with your github username ########################## DO NOT EDIT BELOW HERE UNLESS YOU'RE STOKED TO HACK # build settings markdown: kramdown # highlighter: rouge # for local testing highlighter: pygments # for deployment to github pages permalink: /blog/:year-:month-:day/:title.html kramdown: input: GFM sass: sass_dir: public/css style: :compressed
########################### EDIT YOUR SETTINGS HERE # Site settings title: Codey Codey # give your site a title email: you@example.com # put your email address in here; optional # edit your site description; keep it brief description: > # this just means to ignore newlines until "baseurl:" A Blog for learning to codey codey baseurl: # the subpath of your site, e.g. /blog/; if unsure, leave this blank url: http://joetorok.github.io # replace [username] with your github username (no brackets) github_username: joetorok # replace with your github username ########################## DO NOT EDIT BELOW HERE UNLESS YOU'RE STOKED TO HACK # build settings markdown: kramdown # highlighter: rouge # for local testing highlighter: pygments # for deployment to github pages permalink: /blog/:year-:month-:day/:title.html kramdown: input: GFM sass: sass_dir: public/css style: :compressed
Change the permalink style to `/:title`
# Welcome to Jekyll! # # This config file is meant for settings that affect your whole blog, values # which you are expected to set up once and rarely need to edit after that. # For technical reasons, this file is *NOT* reloaded automatically when you use # 'jekyll serve'. If you change this file, please restart the server process. # Site settings title: Nagoya Workshop # email: your-email@domain.com description: > # this means to ignore newlines until "baseurl:" Write an awesome description for your new site here. You can edit this line in _config.yml. It will appear in your document head meta (for Google search results) and in your feed.xml site description. baseurl: "" # the subpath of your site, e.g. /blog url: "http://yourdomain.com" # the base hostname & protocol for your site date_format: "%-d %B %Y" permalink: pretty # (default: date) # twitter_username: jekyllrb github_username: nagoya-workshop # Build settings markdown: kramdown kramdown: input: GFM markdown_ext: md,mkd,mkdn,mdown,mkdown,markdown highlighter: rouge # (default: rouge, for Jekyll 3.0+)
# Welcome to Jekyll! # # This config file is meant for settings that affect your whole blog, values # which you are expected to set up once and rarely need to edit after that. # For technical reasons, this file is *NOT* reloaded automatically when you use # 'jekyll serve'. If you change this file, please restart the server process. # Site settings title: Nagoya Workshop # email: your-email@domain.com description: > # this means to ignore newlines until "baseurl:" Write an awesome description for your new site here. You can edit this line in _config.yml. It will appear in your document head meta (for Google search results) and in your feed.xml site description. baseurl: "" # the subpath of your site, e.g. /blog url: "http://yourdomain.com" # the base hostname & protocol for your site date_format: "%-d %B %Y" permalink: /:title # (default: date) # twitter_username: jekyllrb github_username: nagoya-workshop # Build settings markdown: kramdown kramdown: input: GFM markdown_ext: md,mkd,mkdn,mdown,mkdown,markdown highlighter: rouge # (default: rouge, for Jekyll 3.0+)
Use setup-action to install JDK 5
name: JDK on: push: paths: - '.github/workflows/jdks.yml' - 'install-jdk.sh' jobs: jdk-ea: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - run: source install-jdk.sh --dry-run jdk-5: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - run: source install-jdk.sh --url 'http://igm.univ-mlv.fr/~forax/tmp/jdk/jdk1.5.0_22.tar.gz' - run: java -version
name: JDK on: push: paths: - '.github/workflows/jdks.yml' - 'install-jdk.sh' jobs: jdk-ea: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - run: source install-jdk.sh --dry-run jdk-5: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - run: source install-jdk.sh --url 'http://igm.univ-mlv.fr/~forax/tmp/jdk/jdk1.5.0_22.tar.gz' jdk-5-gh: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - uses: actions/setup-java@v1 with: java-version: '1.5.0' architecture: x64 jdkFile: 'http://igm.univ-mlv.fr/~forax/tmp/jdk/jdk1.5.0_22.tar.gz' - run: java -version
Remove single quote check from eslint since prettier formats with single quotes
env: browser: true commonjs: true es6: true node: true mocha: true extends: 'eslint:recommended' parserOptions: ecmaVersion: 2017 ecmaFeatures: experimentalObjectRestSpread: true jsx: true sourceType: module plugins: - react rules: indent: - error - tab linebreak-style: - error - unix quotes: - error - single semi: - error - never no-multiple-empty-lines: - error - max: 1 eol-last: - error - always
env: browser: true commonjs: true es6: true node: true mocha: true extends: 'eslint:recommended' parserOptions: ecmaVersion: 2017 ecmaFeatures: experimentalObjectRestSpread: true jsx: true sourceType: module plugins: - react rules: indent: - error - tab linebreak-style: - error - unix semi: - error - never no-multiple-empty-lines: - error - max: 1 eol-last: - error - always
Add caching of Maven deps
name: Java CI on: [push] jobs: build: runs-on: ubuntu-latest strategy: matrix: java: [ 8, 11, 15 ] name: Java ${{ matrix.java }} CI steps: - uses: actions/checkout@v2 - name: Set up JDK 1.8 uses: actions/setup-java@v1 with: java-version: ${{ matrix.java }} - name: Run tests run: mvn test
name: Java CI on: [push] jobs: build: runs-on: ubuntu-latest strategy: matrix: java: [ 8, 11, 15 ] name: Java ${{ matrix.java }} CI steps: - uses: actions/checkout@v2 - name: Cache local Maven repository uses: actions/cache@v2 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} restore-keys: | ${{ runner.os }}-maven- - name: Set up Java ${{ matrix.java }} uses: actions/setup-java@v1 with: java-version: ${{ matrix.java }} - name: Run tests run: mvn test
Add pub_semver for Semver parsing.
name: atom_dartlang version: 0.3.0 description: An experimental Dart plugin for Atom. homepage: https://github.com/dart-atom/dartlang environment: sdk: '>=1.0.0 <2.0.0' dependencies: frappe: ^0.4.0 logging: ^0.11.0 markdown: ^0.7.0 dev_dependencies: grinder: ^0.7.0 html: ^0.12.0 test: ^0.12.0
name: atom_dartlang version: 0.3.0 description: An experimental Dart plugin for Atom. homepage: https://github.com/dart-atom/dartlang environment: sdk: '>=1.0.0 <2.0.0' dependencies: frappe: ^0.4.0 logging: ^0.11.0 markdown: ^0.7.0 dev_dependencies: grinder: ^0.7.0 html: ^0.12.0 pub_semver: ^1.2.1 test: ^0.12.0
Drop unneeded quoting from env variable in workflows yaml
name: CI on: push: pull_request: schedule: [cron: "40 1 * * *"] env: RUSTFLAGS: '-Dwarnings' jobs: test: name: Rust ${{matrix.rust}} runs-on: ubuntu-latest strategy: fail-fast: false matrix: rust: [nightly, beta, stable, 1.36.0] steps: - uses: actions/checkout@v3 - uses: dtolnay/rust-toolchain@master with: toolchain: ${{matrix.rust}} - run: cargo build - run: cargo test - run: cargo test --release - run: cargo build --no-default-features - run: cargo test --tests --no-default-features - run: cargo test --tests --no-default-features --release - run: cargo bench --no-run if: matrix.rust == 'nightly' miri: name: Miri runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: dtolnay/rust-toolchain@miri - run: cargo miri test env: MIRIFLAGS: '-Zmiri-tag-raw-pointers' clippy: name: Clippy runs-on: ubuntu-latest if: github.event_name != 'pull_request' steps: - uses: actions/checkout@v3 - uses: dtolnay/rust-toolchain@clippy - run: cargo clippy --tests --benches -- -Dclippy::all -Dclippy::pedantic
name: CI on: push: pull_request: schedule: [cron: "40 1 * * *"] env: RUSTFLAGS: -Dwarnings jobs: test: name: Rust ${{matrix.rust}} runs-on: ubuntu-latest strategy: fail-fast: false matrix: rust: [nightly, beta, stable, 1.36.0] steps: - uses: actions/checkout@v3 - uses: dtolnay/rust-toolchain@master with: toolchain: ${{matrix.rust}} - run: cargo build - run: cargo test - run: cargo test --release - run: cargo build --no-default-features - run: cargo test --tests --no-default-features - run: cargo test --tests --no-default-features --release - run: cargo bench --no-run if: matrix.rust == 'nightly' miri: name: Miri runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: dtolnay/rust-toolchain@miri - run: cargo miri test env: MIRIFLAGS: -Zmiri-tag-raw-pointers clippy: name: Clippy runs-on: ubuntu-latest if: github.event_name != 'pull_request' steps: - uses: actions/checkout@v3 - uses: dtolnay/rust-toolchain@clippy - run: cargo clippy --tests --benches -- -Dclippy::all -Dclippy::pedantic
Fix CI workflow to run against each Ruby version in matrix
--- name: ci on: pull_request: push: branches: - master jobs: test: runs-on: ubuntu-20.04 timeout-minutes: 15 strategy: fail-fast: false matrix: ruby: [2.5.8, 2.6.6, 2.7.2, 3.0.0, jruby-9.2.11.1] env: BUNDLE_PATH: vendor/bundle steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: ruby-version: 2.7.2 bundler: none - name: Install a specific rubygems version run: gem update --system 3.2.0.rc.1 - name: Install a specific bundler version run: gem install bundler -v 2.1.4 - name: Restore cached dependencies uses: actions/cache@v2 with: path: ${{ env.BUNDLE_PATH }} key: gems-${{ matrix.ruby }}-${{ hashFiles('current_gemfile.lock') }} - name: Install dependencies run: bundle install --jobs 3 - name: Run tests run: bundle exec rake
--- name: ci on: pull_request: push: branches: - master jobs: test: runs-on: ubuntu-20.04 timeout-minutes: 15 strategy: fail-fast: false matrix: ruby: [2.5.8, 2.6.6, 2.7.2, 3.0.0, jruby-9.2.11.1] env: BUNDLE_PATH: vendor/bundle steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler: none - name: Install a specific rubygems version run: gem update --system 3.2.0.rc.1 - name: Install a specific bundler version run: gem install bundler -v 2.1.4 - name: Restore cached dependencies uses: actions/cache@v2 with: path: ${{ env.BUNDLE_PATH }} key: gems-${{ matrix.ruby }}-${{ hashFiles('current_gemfile.lock') }} - name: Install dependencies run: bundle install --jobs 3 - name: Run tests run: bundle exec rake
Remove CI for x86 mingw.
environment: PATH: '%PATH%;C:\Program Files (x86)\Rust\bin;C:\MinGW\bin' RUST_BACKTRACE: 1 matrix: - TARGET: x86_64-pc-windows-msvc - TARGET: i686-pc-windows-msvc - TARGET: i686-pc-windows-gnu install: - ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-nightly-${env:TARGET}.exe" - rust-nightly-%TARGET%.exe /VERYSILENT /NORESTART /DIR="C:\Program Files (x86)\Rust" - rustc -V - cargo -V build: false test_script: - 'cargo test --verbose --features "unstable"'
environment: PATH: '%PATH%;C:\Program Files (x86)\Rust\bin;C:\MinGW\bin' RUST_BACKTRACE: 1 matrix: - TARGET: x86_64-pc-windows-msvc - TARGET: i686-pc-windows-msvc install: - ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-nightly-${env:TARGET}.exe" - rust-nightly-%TARGET%.exe /VERYSILENT /NORESTART /DIR="C:\Program Files (x86)\Rust" - rustc -V - cargo -V build: false test_script: - 'cargo test --verbose --features "unstable"'
Use Visual Studio 2017 build image on AppVeyor.
environment: matrix: - platform: x64 GH_TOKEN: secure: 1cWm5j4ljdD+w6LLOv24rbj1ON4cbrT49CQype/BCQLtM5sjnD3x83wpIqFhexM9 image: Visual Studio 2015 cache: - node_modules install: - ps: Install-Product node 8 x64 - set CI=true - npm -g install npm@latest - npm install - set NODE_ENV=production build: off shallow_clone: true test_script: - node --version - npm --version on_success: - npm run dist
environment: matrix: - platform: x64 GH_TOKEN: secure: 1cWm5j4ljdD+w6LLOv24rbj1ON4cbrT49CQype/BCQLtM5sjnD3x83wpIqFhexM9 image: Visual Studio 2017 cache: - node_modules install: - ps: Install-Product node 8 x64 - set CI=true - npm -g install npm@latest - npm install - set NODE_ENV=production build: off shallow_clone: true test_script: - node --version - npm --version on_success: - npm run dist
Fix known hosts config script value
heat_template_version: rocky description: 'SSH Known Hosts Config' parameters: known_hosts: type: string resources: SSHKnownHostsConfig: type: OS::Heat::SoftwareConfig properties: group: script config: | str_replace: params: KNOWN_HOSTS: {get_param: known_hosts} template: | #!/bin/bash set -eux set -o pipefail echo "Creating ssh known hosts file" if [ -d /etc/ssh/ssh_known_hosts ]; then rm -rf /etc/ssh/ssh_known_hosts fi cat <<EOF | grep -v '^$' >/etc/ssh/ssh_known_hosts KNOWN_HOSTS EOF if [ ! -s /etc/ssh/ssh_known_hosts ]; then echo "No known hosts" rm -f /etc/ssh/ssh_known_hosts else echo "$(cat /etc/ssh/ssh_known_hosts | wc -l) known hosts" chmod 0644 /etc/ssh/ssh_known_hosts fi outputs: OS::stack_id: description: The SSHKnownHostsConfig resource. value: {get_resource: SSHKnownHostsConfig}
heat_template_version: rocky description: 'SSH Known Hosts Config' parameters: known_hosts: type: string resources: SSHKnownHostsConfig: type: OS::Heat::SoftwareConfig properties: group: script config: str_replace: params: KNOWN_HOSTS: {get_param: known_hosts} template: | #!/bin/bash set -eux set -o pipefail echo "Creating ssh known hosts file" if [ -d /etc/ssh/ssh_known_hosts ]; then rm -rf /etc/ssh/ssh_known_hosts fi cat <<EOF | grep -v '^$' >/etc/ssh/ssh_known_hosts KNOWN_HOSTS EOF if [ ! -s /etc/ssh/ssh_known_hosts ]; then echo "No known hosts" rm -f /etc/ssh/ssh_known_hosts else echo "$(cat /etc/ssh/ssh_known_hosts | wc -l) known hosts" chmod 0644 /etc/ssh/ssh_known_hosts fi outputs: OS::stack_id: description: The SSHKnownHostsConfig resource. value: {get_resource: SSHKnownHostsConfig}
Upgrade U-boot to fix RAM frequency issue
--- # Ansible playbook for KoomBook EDU RDC #It will be always localhost - hosts: localhost roles: # Has to be always enable - logs - tinc-static # - role: upgradeIdc # version: "0.9.0"
--- # Ansible playbook for KoomBook EDU RDC #It will be always localhost - hosts: localhost pre_tasks: - name: Upgrade U-boot apt: deb=http://filer.bsf-intranet.org/linux-u-boot-next-lime2_5.23_armhf.deb roles: # Has to be always enable - logs - tinc-static # - role: upgradeIdc # version: "0.9.0"
Add pre-existing credits to Kalei's credits
name: Kalei Sadarananda start: 2013 end: 2016 majors: - Biology courses: 2012-2013: fall: - CHEM 125A - GCON 113C - JAPAN 111A - MATH 126D interim: - GCON 115A spring: - BIO 126A - CHEM 126B - GCON 116B - JAPAN 112A 2013-2014: fall: - BIO 233B - CHEM 247B - GCON 217A - JAPAN 231
name: Kalei Sadarananda start: 2013 end: 2016 majors: - Biology credits: - 2 courses: 2012-2013: fall: - CHEM 125A - GCON 113C - JAPAN 111A - MATH 126D interim: - GCON 115A spring: - BIO 126A - CHEM 126B - GCON 116B - JAPAN 112A 2013-2014: fall: - BIO 233B - CHEM 247B - GCON 217A - JAPAN 231
Drop CI support for 2.064.2.
language: d sudo: false matrix: include: - d: dmd env: [FRONTEND=2.070] - d: dmd-2.069.2 env: [FRONTEND=2.069] - d: dmd-2.068.2 env: [FRONTEND=2.068] env: [COVERAGE=true] - d: dmd-2.067.1 env: [FRONTEND=2.067] - d: dmd-2.066.1 env: [FRONTEND=2.066] - d: dmd-2.065.0 env: [FRONTEND=2.065] - d: dmd-2.064.2 env: [FRONTEND=2.064] - d: ldc - d: ldc-0.16.1 env: [FRONTEND=2.067] - d: ldc-0.15.1 env: [FRONTEND=2.066] - d: ldc-0.14.0 env: [FRONTEND=2.065] - d: gdc env: [FRONTEND=2.066] - d: gdc-4.9.2 env: [FRONTEND=2.066] - d: gdc-4.9.0 env: [FRONTEND=2.065] script: - ./travis-ci.sh
language: d sudo: false matrix: include: - d: dmd env: [FRONTEND=2.070] - d: dmd-2.069.2 env: [FRONTEND=2.069] - d: dmd-2.068.2 env: [FRONTEND=2.068] env: [COVERAGE=true] - d: dmd-2.067.1 env: [FRONTEND=2.067] - d: dmd-2.066.1 env: [FRONTEND=2.066] - d: dmd-2.065.0 env: [FRONTEND=2.065] - d: ldc - d: ldc-0.16.1 env: [FRONTEND=2.067] - d: ldc-0.15.1 env: [FRONTEND=2.066] - d: ldc-0.14.0 env: [FRONTEND=2.065] - d: gdc env: [FRONTEND=2.066] - d: gdc-4.9.2 env: [FRONTEND=2.066] - d: gdc-4.9.0 env: [FRONTEND=2.065] script: - ./travis-ci.sh
Move messaging up in documentation navigation
site_name: Goblint documentation site_description: Goblint static analysis framework documentation repo_url: https://github.com/goblint/analyzer theme: name: readthedocs hljs_languages: # non-default languages, see https://highlightjs.org/download/ - ocaml # prev_next_buttons_location: both markdown_extensions: - toc: permalink: True dev_addr: '127.0.0.1:8010' # different port from default python http.server for g2html nav: - Home: index.md - 'User guide': - user-guide/running.md - user-guide/inspecting.md - 'Developer guide': - developer-guide/developing.md - developer-guide/testing.md - developer-guide/debugging.md - developer-guide/messaging.md - developer-guide/profiling.md - developer-guide/documenting.md - 'Artifact descriptions': - "SAS '21": artifact-descriptions/sas21.md
site_name: Goblint documentation site_description: Goblint static analysis framework documentation repo_url: https://github.com/goblint/analyzer theme: name: readthedocs hljs_languages: # non-default languages, see https://highlightjs.org/download/ - ocaml # prev_next_buttons_location: both markdown_extensions: - toc: permalink: True dev_addr: '127.0.0.1:8010' # different port from default python http.server for g2html nav: - Home: index.md - 'User guide': - user-guide/running.md - user-guide/inspecting.md - 'Developer guide': - developer-guide/developing.md - developer-guide/messaging.md - developer-guide/testing.md - developer-guide/debugging.md - developer-guide/profiling.md - developer-guide/documenting.md - 'Artifact descriptions': - "SAS '21": artifact-descriptions/sas21.md
Bump actions/setup-python from 1.1.1 to 2.3.1
# Copyright (C) 2020 Sebastian Pipping <sebastian@pipping.org> # Licensed under the MIT license name: Run pre-commit on all files on: - pull_request - push jobs: run_pre_commit: name: Run pre-commit on all files runs-on: ubuntu-18.04 steps: - uses: actions/checkout@v2 - name: Set up Python 3.8 uses: actions/setup-python@v1.1.1 with: python-version: 3.8 - name: Install pre-commit run: |- set -e pip install \ --disable-pip-version-check \ --user \ --no-warn-script-location \ pre-commit echo "PATH=${HOME}/.local/bin:${PATH}" >> "${GITHUB_ENV}" - name: Install pre-commit hooks run: |- pre-commit install --install-hooks - name: Run pre-commit on all files run: |- pre-commit run --all-files
# Copyright (C) 2020 Sebastian Pipping <sebastian@pipping.org> # Licensed under the MIT license name: Run pre-commit on all files on: - pull_request - push jobs: run_pre_commit: name: Run pre-commit on all files runs-on: ubuntu-18.04 steps: - uses: actions/checkout@v2 - name: Set up Python 3.8 uses: actions/setup-python@v2.3.1 with: python-version: 3.8 - name: Install pre-commit run: |- set -e pip install \ --disable-pip-version-check \ --user \ --no-warn-script-location \ pre-commit echo "PATH=${HOME}/.local/bin:${PATH}" >> "${GITHUB_ENV}" - name: Install pre-commit hooks run: |- pre-commit install --install-hooks - name: Run pre-commit on all files run: |- pre-commit run --all-files
Make Git pre-commit hook auto-format WORKSPACE as well.
- repo: https://github.com/Lucas-C/pre-commit-hooks.git sha: c25201a00e6b0514370501050cf2a8538ac12270 hooks: - id: remove-crlf files: (?!.*warp-ctc)^.*$ - repo: https://github.com/reyoung/mirrors-yapf.git sha: v0.13.2 hooks: - id: yapf files: (.*\.(py|bzl)|BUILD|.*\.BUILD)$ # Bazel BUILD files follow Python syntax. - repo: https://github.com/pre-commit/pre-commit-hooks sha: 7539d8bd1a00a3c1bfd34cdb606d3a6372e83469 hooks: - id: check-added-large-files - id: check-merge-conflict - id: check-symlinks - id: detect-private-key files: (?!.*warp-ctc)^.*$ - id: end-of-file-fixer - repo: https://github.com/PaddlePaddle/clang-format-pre-commit-hook.git sha: 28c0ea8a67a3e2dbbf4822ef44e85b63a0080a29 hooks: - id: clang-formater
- repo: https://github.com/Lucas-C/pre-commit-hooks.git sha: c25201a00e6b0514370501050cf2a8538ac12270 hooks: - id: remove-crlf files: (?!.*warp-ctc)^.*$ - repo: https://github.com/reyoung/mirrors-yapf.git sha: v0.13.2 hooks: - id: yapf files: (.*\.(py|bzl)|BUILD|.*\.BUILD|WORKSPACE)$ # Bazel BUILD files follow Python syntax. - repo: https://github.com/pre-commit/pre-commit-hooks sha: 7539d8bd1a00a3c1bfd34cdb606d3a6372e83469 hooks: - id: check-added-large-files - id: check-merge-conflict - id: check-symlinks - id: detect-private-key files: (?!.*warp-ctc)^.*$ - id: end-of-file-fixer - repo: https://github.com/PaddlePaddle/clang-format-pre-commit-hook.git sha: 28c0ea8a67a3e2dbbf4822ef44e85b63a0080a29 hooks: - id: clang-formater
Update Status to 3.8-beta6 (42)
Categories: - Theming License: Apache-2.0 SourceCode: https://github.com/fennifith/Status IssueTracker: https://github.com/fennifith/Status/issues Changelog: https://github.com/fennifith/Status/releases AutoName: Status Summary: An overlay-based statusbar replacement Description: Status is a status bar replacement that draws an overlay on top of the system-generated status bar. This means that the actual status bar is only hidden under the replacement; touch gestures are not overridden, and the standard notification panel is still shown. RepoType: git Repo: https://github.com/fennifith/Status Builds: - versionName: 3.8-beta5 versionCode: 41 commit: v3.8-beta5 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 3.8-beta5 CurrentVersionCode: 41
Categories: - Theming License: Apache-2.0 SourceCode: https://github.com/fennifith/Status IssueTracker: https://github.com/fennifith/Status/issues Changelog: https://github.com/fennifith/Status/releases AutoName: Status Summary: An overlay-based statusbar replacement Description: Status is a status bar replacement that draws an overlay on top of the system-generated status bar. This means that the actual status bar is only hidden under the replacement; touch gestures are not overridden, and the standard notification panel is still shown. RepoType: git Repo: https://github.com/fennifith/Status Builds: - versionName: 3.8-beta5 versionCode: 41 commit: v3.8-beta5 subdir: app gradle: - yes - versionName: 3.8-beta6 versionCode: 42 commit: v3.8-beta6 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 3.8-beta6 CurrentVersionCode: 42
Update from Hackage at 2020-06-16T22:55:32Z
homepage: https://github.com/prsteele/GlpkHs#readme changelog-type: markdown hash: 046fbc5fc49aab6570a410b8de7b510741d338bd3295688595d844255ce4d1ab test-bench-deps: base: '>=4.7 && <5' tasty-discover: -any derive-storable: '>=0.1.2.0 && <0.2' tasty-hunit: -any tasty: -any glpk-headers: -any maintainer: steele.pat@gmail.com synopsis: Low-level Haskell bindings to GLPK. changelog: | # Changelog for GlpkHs ## Unreleased changes basic-deps: base: '>=4.7 && <5' derive-storable: '>=0.1.2.0 && <0.2' all-versions: - 0.3.0 author: Patrick Steele latest: 0.3.0 description-type: markdown description: | # `glpk-headers` Comprehensive Haskell bindings to [GLPK](https://www.gnu.org/software/glpk/). No attempt is made to make these bindings conform to Haskell norms --- they are a direct translation from the GLPK header file. license-name: BSD-3-Clause
homepage: https://github.com/prsteele/glpk-headers-haskell#readme changelog-type: markdown hash: 49f35aa4f9df18b28efcd8ea408a8b6a40dd398d60f90c6ee4ba21e597e693d7 test-bench-deps: base: '>=4.7 && <5' tasty-discover: -any derive-storable: '>=0.1.2.0 && <0.2' tasty-hunit: -any tasty: -any glpk-headers: -any maintainer: steele.pat@gmail.com synopsis: Low-level Haskell bindings to GLPK. changelog: | # Changelog for GlpkHs ## Unreleased changes basic-deps: base: '>=4.7 && <5' derive-storable: '>=0.1.2.0 && <0.2' all-versions: - 0.3.0 - 0.4.0 author: Patrick Steele latest: 0.4.0 description-type: markdown description: | # `glpk-headers` Comprehensive Haskell bindings to [GLPK](https://www.gnu.org/software/glpk/). No attempt is made to make these bindings conform to Haskell norms --- they are a direct translation from the GLPK header file. license-name: BSD-3-Clause
Update NuGet manual publish gh action
name: Marten NuGet Manual Publish on: [workflow_dispatch] env: config: Release DOTNET_CLI_TELEMETRY_OPTOUT: 1 DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 dotnet_core_version: 5.0.100-rc.2.20479.15 jobs: publish_job: runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v2 - name: Install .NET Core uses: actions/setup-dotnet@v1 with: dotnet-version: ${{ env.dotnet_core_version }} - name: Run Pack run: ./build.sh --no-color pack shell: bash - name: Publish to NuGet run: | find . -name '*.nupkg' -exec dotnet nuget push "{}" -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_DEPLOY_KEY }} \; # find . -name '*.snupkg' -exec dotnet nuget push "{}" -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_DEPLOY_KEY }} \; shell: bash
name: Marten NuGet Manual Publish on: [workflow_dispatch] env: config: Release DOTNET_CLI_TELEMETRY_OPTOUT: 1 DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 dotnet_core_version: 5.0.x jobs: publish_job: runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v2 - name: Install .NET Core 3.1.x uses: actions/setup-dotnet@v1 with: dotnet-version: 3.1.x - name: Install .NET 5 uses: actions/setup-dotnet@v1 with: dotnet-version: ${{ env.dotnet_core_version }} - name: Run Pack run: ./build.sh --no-color pack shell: bash - name: Publish to NuGet run: | find . -name '*.nupkg' -exec dotnet nuget push "{}" -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_DEPLOY_KEY }} \; # find . -name '*.snupkg' -exec dotnet nuget push "{}" -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_DEPLOY_KEY }} \; shell: bash
Increase memory limit for registry app from 128M to 512M
--- applications: - name: registry memory: 128M disk_quota: 32M buildpack: go_buildpack instances: 1 env: GOPACKAGENAME: example-apps/registry
--- applications: - name: registry memory: 512M disk_quota: 32M buildpack: go_buildpack instances: 1 env: GOPACKAGENAME: example-apps/registry
Revert "Compose: use absolute file paths in volumes."
version: '2' services: dmptool: build: context: . args: GIT: https://github.com/der-scheme/dmptool.git RELEASE: build-test JOBS: 4 network_mode: "host" ports: - "80:80" - "443:443" volumes: - ${PWD}/conf/etc/nginx/custom.conf:/etc/nginx/custom.conf - ${PWD}/conf/etc/nginx/ssl.conf:/etc/nginx/ssl.conf - ${PWD}/conf/etc/shibboleth/attribute-map.xml:/etc/shibboleth/attribute-map.xml - ${PWD}/conf/etc/shibboleth/shibboleth2.xml:/etc/shibboleth/shibboleth2.xml - ${PWD}/conf/etc/ssl/extern/:/etc/ssl/extern/ - ${PWD}/conf/var/www/app/config/app_config.yml:/var/www/app/config/app_config.yml - ${PWD}/conf/var/www/app/config/layout.rb:/var/www/app/config/layout.rb - ${PWD}/conf/var/www/app/config/database.yml:/var/www/app/config/database.yml - ${PWD}/conf/var/www/app/config/shibboleth.yml:/var/www/app/config/shibboleth.yml
version: '2' services: dmptool: build: context: . args: GIT: https://github.com/der-scheme/dmptool.git RELEASE: build-test JOBS: 4 network_mode: "host" ports: - "80:80" - "443:443" volumes: - ./conf/etc/nginx/custom.conf:/etc/nginx/custom.conf - ./conf/etc/nginx/ssl.conf:/etc/nginx/ssl.conf - ./conf/etc/shibboleth/attribute-map.xml:/etc/shibboleth/attribute-map.xml - ./conf/etc/shibboleth/shibboleth2.xml:/etc/shibboleth/shibboleth2.xml - ./conf/etc/ssl/extern/:/etc/ssl/extern/ - ./conf/var/www/app/config/app_config.yml:/var/www/app/config/app_config.yml - ./conf/var/www/app/config/layout.rb:/var/www/app/config/layout.rb - ./conf/var/www/app/config/database.yml:/var/www/app/config/database.yml - ./conf/var/www/app/config/shibboleth.yml:/var/www/app/config/shibboleth.yml
Add wordpress dependency for nginx service
version: "2" services: mysql: image: mysql:5.7 volumes: - mysql-data:/var/lib/mysql environment: MYSQL_ROOT_PASSWORD: root wiki: build: wiki/docker-mediawiki depends_on: - mysql ports: - "8080:80" volumes: - ./wiki/conf:/var/www-shared/html links: - mysql environment: DOCKER_HOST: $DOCKER_HOST parsoid: build: wiki/docker-parsoid ports: - "8142:8142" volumes: - ./wiki/parsoid-data:/data environment: MW_HOST: wiki PORT: 8142 wordpress: build: wordpress/docker-wordpress depends_on: - mysql ports: - "8081:80" volumes: - ./wordpress/conf:/var/www-shared/html links: - mysql environment: WORDPRESS_DB_HOST: mysql WORDPRESS_DB_USER: root WORDPRESS_DB_PASSWORD: root nginx: image: nginx:1.11.4 depends_on: - wiki ports: - "8090:80" volumes: - ./nginx/nginx.conf:/etc/nginx/nginx.conf:ro volumes: mysql-data: external: true
version: "2" services: mysql: image: mysql:5.7 volumes: - mysql-data:/var/lib/mysql environment: MYSQL_ROOT_PASSWORD: root wiki: build: wiki/docker-mediawiki depends_on: - mysql ports: - "8080:80" volumes: - ./wiki/conf:/var/www-shared/html links: - mysql environment: DOCKER_HOST: $DOCKER_HOST parsoid: build: wiki/docker-parsoid ports: - "8142:8142" volumes: - ./wiki/parsoid-data:/data environment: MW_HOST: wiki PORT: 8142 wordpress: build: wordpress/docker-wordpress depends_on: - mysql ports: - "8081:80" volumes: - ./wordpress/conf:/var/www-shared/html links: - mysql environment: WORDPRESS_DB_HOST: mysql WORDPRESS_DB_USER: root WORDPRESS_DB_PASSWORD: root nginx: image: nginx:1.11.4 depends_on: - wiki - wordpress ports: - "8090:80" volumes: - ./nginx/nginx.conf:/etc/nginx/nginx.conf:ro volumes: mysql-data: external: true
Upgrade backups role to work with new OS version
--- - name: Add the Percona repository key apt_key: id: 8507EFA5 keyserver: keys.gnupg.net - name: Add the Percona sources apt_repository: repo='deb http://repo.percona.com/apt precise main' - name: Install percona xtrabackup apt: pkg=percona-xtrabackup update_cache=yes cache_valid_time=3600 - name: Copy across database backup script copy: src=database-backup.sh dest=/usr/local/bin/database-backup.sh mode=0500 - name: Run database backup at 6:25am cron: name="database backup" hour=6 minute=25 user=root job="/usr/local/bin/database-backup.sh" - name: Install duply apt: pkg=duply - name: Add S3 support to duplicity apt: pkg=python-boto - name: Install ntpd apt: pkg=ntp
--- - name: Add the Percona repository key apt_key: id: 8507EFA5 keyserver: keys.gnupg.net - name: Add the Percona sources apt_repository: repo='deb http://repo.percona.com/apt xenial main' - name: Install percona xtrabackup apt: pkg=percona-xtrabackup update_cache=yes cache_valid_time=3600 - name: Copy across database backup script copy: src=database-backup.sh dest=/usr/local/bin/database-backup.sh mode=0500 - name: Run database backup at 6:25am cron: name="database backup" hour=6 minute=25 user=root job="/usr/local/bin/database-backup.sh" - name: Install duply apt: pkg=duply - name: Add S3 support to duplicity apt: pkg=python-boto - name: Install ntpd apt: pkg=ntp
Update from Forestry.io - Updated Forestry configuration
--- new_page_extension: markdown auto_deploy: false admin_path: webhook_url: sections: - type: directory path: content/pages label: Pages create: all match: "**/*" - type: directory path: content/posts label: Posts create: all match: "**/*" upload_dir: static/images public_path: "/images" front_matter_path: '' use_front_matter_path: false file_template: ":filename:" build: preview_env: - HUGO_ENV=staging - HUGO_VERSION=0.32 preview_output_directory: public preview_docker_image: forestryio/hugo:latest mount_path: "/srv" working_dir: "/srv" instant_preview_command: hugo server -D -E -F --renderToDisk -d public version: '0.32'
--- new_page_extension: md auto_deploy: false admin_path: '' webhook_url: sections: - type: directory path: content/pages label: Pages create: all match: "**/*" - type: directory path: content/posts label: Posts create: all match: "**/*" upload_dir: static/images public_path: "/images" front_matter_path: '' use_front_matter_path: false file_template: ":filename:" build: preview_env: - HUGO_ENV=staging - HUGO_VERSION=0.32 preview_output_directory: public preview_docker_image: forestryio/hugo:latest mount_path: "/srv" working_dir: "/srv" instant_preview_command: hugo server -D -E -F --renderToDisk -d public version: '0.32'