Instruction
stringlengths
14
778
input_code
stringlengths
0
4.24k
output_code
stringlengths
1
5.44k
Install Kibana from the correct repo
--- # RHEL/CentOS specific code for Kibana - name: Add the kibana key to the system command: rpm --import https://packages.kibana.org/GPG-KEY-elasticsearch - name: Add the kibana repo to the system copy: src: kibana.repo dest: /etc/yum.repos.d/kibana.repo owner: root group: root mode: 0644 - name: Install kibana yum: name: kibana state: present
--- # RHEL/CentOS specific code for Kibana - name: Add the elasticsearch key to the system command: rpm --import https://packages.elasticsearch.org/GPG-KEY-elasticsearch - name: Add the Kibana repo to the system copy: src=kibana.repo dest=/etc/yum.repos.d/kibana.repo owner=root group=root mode=0644 - name: Install kibana yum: name: kibana state: present
Add more tasks to AppVeyor
image: Visual Studio 2017 # Fix line endings in Windows. (runs before repo cloning) init: - git config --global core.autocrlf input environment: matrix: - nodejs_version: 8 # Finish on first failed build matrix: fast_finish: true platform: - x64 branches: only: - master # Disable Visual Studio build and deploy build: off deploy: off install: - ps: Install-Product node $env:nodejs_version $env:platform - yarn install test_script: - node --version - yarn build - yarn test cache: - node_modules - "%LOCALAPPDATA%/Yarn"
image: Visual Studio 2017 # Fix line endings in Windows. (runs before repo cloning) init: - git config --global core.autocrlf input environment: matrix: - nodejs_version: 8 # Finish on first failed build matrix: fast_finish: true platform: - x64 branches: only: - master # Disable Visual Studio build and deploy build: off deploy: off install: - ps: Install-Product node $env:nodejs_version $env:platform - yarn install test_script: - node --version - yarn lint - yarn flow - yarn build - yarn test cache: - node_modules - "%LOCALAPPDATA%/Yarn"
Disable MSBuild mode in AppVeyor.
version: 1.0.{build} install: - cmd: git submodule update --init --recursive build_script: - cmd: |- cd c:\projects\cubeb cmake . cmake --build . --config Debug build: verbosity: minimal
version: 1.0.{build} install: - cmd: git submodule update --init --recursive build_script: - cmd: |- cd c:\projects\cubeb cmake . cmake --build . --config Debug
Test with ruby 2.1 on Windows
version: "master-{build}" os: Windows Server 2012 platform: - x64 environment: matrix: - ruby_version: "200" clone_folder: c:\projects\ohai clone_depth: 1 skip_tags: true branches: only: - master - 8-stable - 7.4-stable install: - SET PATH=C:\Ruby%ruby_version%\bin;%PATH% - echo %PATH% - ruby --version - gem --version - gem install bundler --quiet --no-ri --no-rdoc - bundler --version build_script: - bundle install test_script: - bundle exec rspec - bundle exec ohai
version: "master-{build}" os: Windows Server 2012 platform: - x64 environment: matrix: - ruby_version: "200" - ruby_version: "21" clone_folder: c:\projects\ohai clone_depth: 1 skip_tags: true branches: only: - master - 8-stable - 7.4-stable install: - SET PATH=C:\Ruby%ruby_version%\bin;%PATH% - echo %PATH% - ruby --version - gem --version - gem install bundler --quiet --no-ri --no-rdoc - bundler --version build_script: - bundle install test_script: - bundle exec rspec - bundle exec ohai
Change logs sink for spring.io
--- applications: - name: sagan buildpacks: - java_buildpack instances: 2 health-check-type: http health-check-http-endpoint: /actuator/health/liveness timeout: 30 memory: 2048M disk_quota: 1024M routes: - route: spring.io - route: www.spring.io - route: sagan-production.cfapps.io services: - papertrail - sagan-db - sagan-cache
--- applications: - name: sagan buildpacks: - java_buildpack instances: 2 health-check-type: http health-check-http-endpoint: /actuator/health/liveness timeout: 30 memory: 2048M disk_quota: 1024M routes: - route: spring.io - route: www.spring.io - route: sagan-production.cfapps.io services: - logz-springio - sagan-db - sagan-cache
Add back changes and update name to be more clear and change to release event.
name: PyPi Release on: push jobs: release: name: Release pyconll runs-on: ubuntu-18.04 steps: - uses: actions/checkout@v2.3.2 - name: Setup Python 3.8.5 uses: actions/setup-python@v1 with: python-version: 3.8.5 - name: Install dependencies run: | python -m pip install --upgrade pip pip install setuptools==41.6.0 pip install wheel==0.31.1 - name: Build pyconll distributables run: | python setup.py sdist bdist_wheel - name: Publish packages from dist/* uses: pypa/gh-action-pypi-publish@v1.3.1 with: password: ${{ secrets.TEST_PYPI_API_TOKEN }} repository_url: https://test.pypi.org/legacy/
name: Pyconll Release to PyPi on: release: types: - released jobs: release: name: Release pyconll runs-on: ubuntu-18.04 steps: - uses: actions/checkout@v2.3.2 - name: Setup Python 3.8.5 uses: actions/setup-python@v1 with: python-version: 3.8.5 - name: Install dependencies run: | python -m pip install --upgrade pip pip install setuptools==41.6.0 pip install wheel==0.31.1 - name: Build pyconll distributables run: | python setup.py sdist bdist_wheel - name: Publish packages from dist/* # Make sure the current git ref is tagged. if: github.event_name == 'release' && startsWith(github.ref, 'refs/tags') uses: pypa/gh-action-pypi-publish@v1.3.1 with: password: ${{ secrets.TEST_PYPI_API_TOKEN }} repository_url: https://test.pypi.org/legacy/
Make terser run from npx
name: Check build of CookieMonster.js on: pull_request jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Check if CookieMonster.js is built correctly run: | npm install terser ./src/Header.js ./src/Cache.js ./src/Config.js ./src/Data.js ./src/Disp.js ./src/Main.js ./src/Sim.js ./src/Footer.js -o CookieMonsterTest.js if cmp CookieMonster.js CookieMonsterTest.js; then echo '### SUCCESS: CookieMonster is correctly built! ###' else echo '### WARNING: CookieMonster.js does not seem to be correct. Make sure to run "npm run build" after saving all your changes! ###' exit 1 fi
name: Check build of CookieMonster.js on: pull_request jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Check if CookieMonster.js is built correctly run: | npm install npx terser ./src/Header.js ./src/Cache.js ./src/Config.js ./src/Data.js ./src/Disp.js ./src/Main.js ./src/Sim.js ./src/Footer.js -o CookieMonsterTest.js if cmp CookieMonster.js CookieMonsterTest.js; then echo '### SUCCESS: CookieMonster is correctly built! ###' else echo '### WARNING: CookieMonster.js does not seem to be correct. Make sure to run "npm run build" after saving all your changes! ###' exit 1 fi
Deploy to docker only on tags
name: Deploy-To-Docker on: [push] # push: # tags: # - '*' jobs: build: runs-on: ${{ matrix.os }} strategy: max-parallel: 4 matrix: os: [ubuntu-latest] steps: - uses: actions/checkout@v1 - name: Build image run: | docker build -t chrismit7/pyquant:latest . docker tag chrismit7/pyquant:latest chrismit7/pyquant:${GITHUB_REF#refs/heads/} - name: Upload image to Dockerhub env: DOCKERHUB_ACCESS_TOKEN: ${{ secrets.DOCKERHUB_ACCESS_TOKEN }} if: matrix.os == 'ubuntu-latest' run: | docker login --username chrismit7 -p ${{ secrets.DOCKERHUB_ACCESS_TOKEN }} docker push chrismit7/pyquant:latest docker push chrismit7/pyquant:${GITHUB_REF#refs/heads/}
name: Deploy-To-Docker on: push: tags: - '*' jobs: build: runs-on: ${{ matrix.os }} strategy: max-parallel: 4 matrix: os: [ubuntu-latest] steps: - uses: actions/checkout@v1 - name: Build image run: | docker build -t chrismit7/pyquant:latest . docker tag chrismit7/pyquant:latest chrismit7/pyquant:${GITHUB_REF#refs/heads/} - name: Upload image to Dockerhub env: DOCKERHUB_ACCESS_TOKEN: ${{ secrets.DOCKERHUB_ACCESS_TOKEN }} if: matrix.os == 'ubuntu-latest' run: | docker login --username chrismit7 -p ${{ secrets.DOCKERHUB_ACCESS_TOKEN }} docker push chrismit7/pyquant:latest docker push chrismit7/pyquant:${GITHUB_REF#refs/heads/}
Use GitHub App Token instead of GITHUB_TOKEN
name: go-mod-tidy-pr on: schedule: - cron: "0 22 * * 0" # JST 7:00 (Mon) jobs: go-mod-tidy-pr: name: go-mod-tidy-pr runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Run go-mod-tidy-pr uses: sue445/go-mod-tidy-pr@master with: github_token: ${{ secrets.GITHUB_TOKEN }} git_user_name: GitHub Actions git_user_email: github-actions@example.cpm assign: sue445 labels: go-mod-tidy timezone: Asia/Tokyo
name: go-mod-tidy-pr on: schedule: - cron: "0 22 * * 0" # JST 7:00 (Mon) jobs: go-mod-tidy-pr: name: go-mod-tidy-pr runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Generate token id: generate_token uses: tibdex/github-app-token@v1 with: app_id: ${{ secrets.GH_APP_ID }} private_key: ${{ secrets.GH_PRIVATE_KEY }} - name: Run go-mod-tidy-pr uses: sue445/go-mod-tidy-pr@master with: github_token: ${{ steps.generate_token.outputs.token }} git_user_name: GitHub Actions git_user_email: github-actions@example.cpm assign: sue445 labels: go-mod-tidy timezone: Asia/Tokyo
Update formatting given forestry's feedbacl
Australia: name: Australia short: AUS continent: Oceania Hungary: name: Hungary short: HUN continent: Europe Croatia: name: Croatia short: HRV continent: Europe
--- countries: - name: Australia short: AUS continent: Oceania - name: Hungary short: HUN continent: Europe - name: Croatia short: HRV continent: Europe
Add Travis CI Slack token for Slack notifications
language: go
language: go notifications: slack: secure: VJ2Dcr54N9VHUrUGaw8nRnaPko/o2U0cBK+zbMsDtKKiJ0/hMgD1kvnXcMcVWTXVdOAFzeDqKC9xGeuyD8ScZ9RLGlSWQGuF12igDpA4OBbhzhcsvFCfdf6oEhc1/Dd9FRU+KiXbF/UDm9l0rRSjNYRPRttM21KA0MNaoMdo4ONeGOwf1UKhJXLLX1qfeYecQCAwGftlCyLTHkQSWt/VIu6ZFCS4CMKN70b6w9JXcKUZeFU3iUG+KwHOtvwwxb8fEkF4XdN5Q+kcNGLBOQYk4ONoAvWLgGGy2hK2KW6LorhOMBdELDyMD/EFq+0DRk+RPeJ7euTzN7xDI4D8vmc0joehc12ky1/1gEy00spYR9wcajFofBEcHB4TnOaFyxQq/Y+T3m6J8906KGVsUxoIzSjf1/mr8vU8k7daprKS2AXu9ZGgkZ0p0txrXQFIY0zerBWYbtzlbydO3/EPflCCPFazJSv93qR/rpNy/W7XgqZhYrlsHA7u1zlbgHH5eeZ7/7B0u/gZm1ugFKCeanLpKvZJz0eiNwrVYgT4iPoETAn9vydhEV2l5FTns08Hes6IJjPmgS5ltjH1UfBX2aTlp6C7EMMtMlZNYmrX0uCMIpDPlijfpoajxGDhZARpGfGT5yopqo9ih7FKhkNmEx6KB7T8D1M8rRp9S2jqxjt/+kA=
Update Xcode image of Travis CI
# ref. http://docs.travis-ci.com/user/languages/objective-c/ language: objective-c osx_image: xcode8.1 xcode_workspace: CotEditor.xcworkspace xcode_scheme: CotEditor before_install: - gem install xcpretty - gem install xcpretty-travis-formatter - carthage update --platform macOS script: set -o pipefail && xcodebuild clean test -workspace "$TRAVIS_XCODE_WORKSPACE" -scheme "$TRAVIS_XCODE_SCHEME" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcpretty -f `xcpretty-travis-formatter`
# ref. http://docs.travis-ci.com/user/languages/objective-c/ language: objective-c osx_image: xcode8.2 xcode_workspace: CotEditor.xcworkspace xcode_scheme: CotEditor before_install: - gem install xcpretty - gem install xcpretty-travis-formatter - carthage update --platform macOS script: set -o pipefail && xcodebuild clean test -workspace "$TRAVIS_XCODE_WORKSPACE" -scheme "$TRAVIS_XCODE_SCHEME" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcpretty -f `xcpretty-travis-formatter`
Add Golang 1.8beta2 to Travis builds
language: go sudo: true go_import_path: gobot.io/x/gobot go: - 1.5 - 1.6 - 1.7 - 1.8beta1 - tip matrix: allow_failures: - go: 1.5 - go: 1.8beta1 - go: tip before_install: - sudo add-apt-repository -y ppa:kubuntu-ppa/backports - sudo add-apt-repository -y ppa:zoogie/sdl2-snapshots - sudo apt-get update - sudo apt-get install --force-yes libcv-dev libcvaux-dev libhighgui-dev libopencv-dev libsdl2-dev libsdl2-image-dev libsdl2 libusb-dev xvfb unzip libgtk2.0-0 - cd $HOME/gopath/src/gobot.io/x/gobot - go get github.com/axw/gocov/gocov - go get github.com/mattn/goveralls - if ! go get github.com/golang/tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi install: - make deps before_script: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start script: - ./ci/travis.sh branches: except: - gobot.io - /^gobot-.*$/
language: go sudo: true go_import_path: gobot.io/x/gobot go: - 1.5 - 1.6 - 1.7 - 1.8beta2 - tip matrix: allow_failures: - go: 1.5 - go: tip before_install: - sudo add-apt-repository -y ppa:kubuntu-ppa/backports - sudo add-apt-repository -y ppa:zoogie/sdl2-snapshots - sudo apt-get update - sudo apt-get install --force-yes libcv-dev libcvaux-dev libhighgui-dev libopencv-dev libsdl2-dev libsdl2-image-dev libsdl2 libusb-dev xvfb unzip libgtk2.0-0 - cd $HOME/gopath/src/gobot.io/x/gobot - go get github.com/axw/gocov/gocov - go get github.com/mattn/goveralls - if ! go get github.com/golang/tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi install: - make deps before_script: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start script: - ./ci/travis.sh branches: except: - gobot.io - /^gobot-.*$/
Update what we test :)
before_install: - sudo apt-get install libicu-dev # Workaround for a permissions issue with Travis virtual machine images # that breaks Python's multiprocessing: # https://github.com/travis-ci/travis-cookbooks/issues/155 - sudo rm -rf /dev/shm - sudo ln -s /run/shm /dev/shm - npm i -g npm language: node_js node_js: - "0.11" - "0.10" - 0.8
before_install: - sudo apt-get install libicu-dev # Workaround for a permissions issue with Travis virtual machine images # that breaks Python's multiprocessing: # https://github.com/travis-ci/travis-cookbooks/issues/155 - sudo rm -rf /dev/shm - sudo ln -s /run/shm /dev/shm - npm i -g npm language: node_js node_js: - "0.11" - "0.10" - "0.12" - "iojs"
Exclude error 501 (line too long)
language: python python: - "2.7" sudo: - required before_install: - pip install pep8 install: - sudo python setup.py install script: # Run pep8 on all .py files in all subfolders # (I ignore "E402: module level import not at top of file" # because of use case sys.path.append('..'); import <module>) - find . -name \*.py -exec pep8 --ignore=E402 {} +
language: python python: - "2.7" sudo: - required before_install: - pip install pep8 install: - sudo python setup.py install script: # Run pep8 on all .py files in all subfolders # (I ignore "E402: module level import not at top of file" # because of use case sys.path.append('..'); import <module>) # E501 : line too ling (max 79 characters) - find . -name \*.py -exec pep8 --ignore=E402,E501 {} +
Build on Travis CI without `sudo`.
language: node_js node_js: - '0.10' branches: only: - master - travis-ci # Not using `npm install --dev` because it is recursive. It will pull in the all # development dependencies for CoffeeScript. Way too much spew in the Travis CI # build output. before_install: - npm install - npm install istanbul coveralls
sudo: false language: node_js node_js: - '0.10' branches: only: - master - travis-ci # Not using `npm install --dev` because it is recursive. It will pull in the all # development dependencies for CoffeeScript. Way too much spew in the Travis CI # build output. before_install: - npm install - npm install istanbul coveralls
Fix pip install key for dateutil
language: python sudo: false python: - "2.7" - "3.3" install: - pip install codecov coverage catkin_pkg catkin_tools futures dateutil requests rosdep yaml script: - nosetests --verbose --with-coverage --cover-erase --cover-package=rosrepo test after_success: - codecov
language: python sudo: false python: - "2.7" - "3.3" install: - pip install codecov coverage catkin_pkg catkin_tools futures python-dateutil requests rosdep yaml script: - nosetests --verbose --with-coverage --cover-erase --cover-package=rosrepo test after_success: - codecov
Test lowest version of dependencies
language: php php: - 5.3 - 5.4 - 5.5 script: - composer self-update - composer update -n --prefer-source - ./bin/phpspec run -f progress
language: php matrix: include: - php: 5.3 env: DEPENDENCIES='low' - php: 5.3 - php: 5.4 - php: 5.5 - php: 5.6 - php: hhvm - php: hhvm-nightly allow_failures: - php: hhvm-nightly - env: DEPENDENCIES='low' before_install: - composer self-update install: - export COMPOSER_ROOT_VERSION=dev-master - if [ "$DEPENDENCIES" != "low" ]; then composer update; fi; - if [ "$DEPENDENCIES" == "low" ]; then composer update --prefer-lowest; fi; script: - ./bin/phpspec run --format=pretty
Revert "no longer necessary, Travis handles it", turns out Travis uses an old version
language: objective-c xcode_project: CCListViewExample.xcworkspace xcode_scheme: CCListViewExample xcode_sdk: iphonesimulator script: xctool -workspace CCListViewExample.xcworkspace -scheme "All Tests" -sdk iphonesimulator build
language: objective-c xcode_project: CCListViewExample.xcworkspace xcode_scheme: CCListViewExample before_install: gem install cocoapods xcode_sdk: iphonesimulator script: xctool -workspace CCListViewExample.xcworkspace -scheme "All Tests" -sdk iphonesimulator build
Move reporting to after main build
branches: except: - travis language: java jdk: - oraclejdk8 script: - mvn jacoco:report coveralls:report deploy --settings settings.xml -P $TRAVIS_BRANCH notifications: slack: cloudfoundry:xvgjKLNQTyqAFMnsTywVHik9 after_success: - mvn scm-publish:publish-scm #- mkdir -p /tmp/spring-content-docs/refs/current #- mv spring-content-fs/target/generated-docs/*.html /tmp/spring-content-docs/refs/current/ #- cd .. #- git clone --depth=50 --branch=gh-pages https://github.com/paulcwarren/spring-content.git gh-pages #- cd gh-pages #- git branch #- git branch -r #- git config --global user.email $GITHUB_EMAIL #- git config --global user.name $GITHUB_NAME #- mkdir -p refs/current #- mv /tmp/spring-content-docs/refs/current/*.html refs/current/ #- git add refs/current/ #- git commit --message "SpringContentCI Publishing References" #- git remote add origin-pages $GITHUB_LINK > /dev/null 2>&1 #- git push --quiet --set-upstream origin-pages gh-pages
branches: except: - travis language: java jdk: - oraclejdk8 script: - mvn deploy --settings settings.xml -P $TRAVIS_BRANCH jacoco:report coveralls:report notifications: slack: cloudfoundry:xvgjKLNQTyqAFMnsTywVHik9 after_success: - mvn scm-publish:publish-scm #- mkdir -p /tmp/spring-content-docs/refs/current #- mv spring-content-fs/target/generated-docs/*.html /tmp/spring-content-docs/refs/current/ #- cd .. #- git clone --depth=50 --branch=gh-pages https://github.com/paulcwarren/spring-content.git gh-pages #- cd gh-pages #- git branch #- git branch -r #- git config --global user.email $GITHUB_EMAIL #- git config --global user.name $GITHUB_NAME #- mkdir -p refs/current #- mv /tmp/spring-content-docs/refs/current/*.html refs/current/ #- git add refs/current/ #- git commit --message "SpringContentCI Publishing References" #- git remote add origin-pages $GITHUB_LINK > /dev/null 2>&1 #- git push --quiet --set-upstream origin-pages gh-pages
Switch to only build against master
language: node_js node_js: - '0.10' notifications: email: false cache: directories: - node_modules branches: except: - release - /^release_\d+$/ after_success: - ./.travis_scripts/push_release_tag.sh env: global: # NOTE: contains GH_TOKEN=xxx from github user gds-pp-ci secure: d1Tfvm/1yMjp7XEkQ2PcMQ6jA38tb8vUktuxLI8aiSkySLrCoM2atlgWEQYYXBmY266bZa6dsmuc7Twtl3n2ihmwYMDb66iQlB9aPrnmxp/ebOagoX8mQgciZ6crzwDUaCpHmyYkkHcCHTaqHWjGepuP/faawl4mC9JXGR6soYY=
language: node_js node_js: - '0.10' notifications: email: false cache: directories: - node_modules branches: only: - master after_success: - ./.travis_scripts/push_release_tag.sh env: global: # NOTE: contains GH_TOKEN=xxx from github user gds-pp-ci secure: d1Tfvm/1yMjp7XEkQ2PcMQ6jA38tb8vUktuxLI8aiSkySLrCoM2atlgWEQYYXBmY266bZa6dsmuc7Twtl3n2ihmwYMDb66iQlB9aPrnmxp/ebOagoX8mQgciZ6crzwDUaCpHmyYkkHcCHTaqHWjGepuP/faawl4mC9JXGR6soYY=
Fix build error with Rails 5
rvm: - 2.0 - 2.1 - 2.2 - 2.3.1 gemfile: - gemfiles/4.0.gemfile - gemfiles/4.1.gemfile - gemfiles/4.2.gemfile - gemfiles/5.0.gemfile before_install: - gem install bundler matrix: exclude: - rvm: 2.0 gemfile: gemfiles/5.0.gemfile - rvm: 2.1 gemfile: gemfiles/5.0.gemfile notifications: recipients: - weppos@weppos.net
rvm: - 2.0 - 2.1 - 2.2.5 - 2.3.1 gemfile: - gemfiles/4.0.gemfile - gemfiles/4.1.gemfile - gemfiles/4.2.gemfile - gemfiles/5.0.gemfile before_install: - gem install bundler matrix: exclude: - rvm: 2.0 gemfile: gemfiles/5.0.gemfile - rvm: 2.1 gemfile: gemfiles/5.0.gemfile notifications: recipients: - weppos@weppos.net
Add boot specific test runner script to Travis
sudo: false language: clojure after_script: - bash -ex test/coveralls.sh
sudo: false language: clojure install: - wget -O boot https://github.com/boot-clj/boot-bin/releases/download/latest/boot.sh - chmod 755 boot - ./boot -V script: ./boot test after_script: - bash -ex test/coveralls.sh
Build rocksdb and run tests.
language: rust rust: - nightly - 1.1.0 os: - linux - osx script: - cargo build
language: rust sudo: true before_install: - wget https://github.com/facebook/rocksdb/archive/rocksdb-3.8.tar.gz; tar xvf rocksdb-3.8.tar.gz && cd rocksdb-rocksdb-3.8 && make shared_lib; make install rust: - nightly - 1.1.0 os: - linux - osx script: - cargo build
Remove JDK7 from TravisCI builds
script: ./gradlew clean build jdk: - oraclejdk8 - oraclejdk7 script: - ./gradlew clean build -PspockVersion=0.7-groovy-2.0 && ./gradlew clean build -PspockVersion=1.0-groovy-2.3 notifications: webhooks: urls: - https://webhooks.gitter.im/e/0c47152ec0b752e481c8 on_success: change # options: [always|never|change] default: always on_failure: always # options: [always|never|change] default: always on_start: false # default: false
script: ./gradlew clean build jdk: - oraclejdk8 script: - ./gradlew clean build -PspockVersion=0.7-groovy-2.0 && ./gradlew clean build -PspockVersion=1.0-groovy-2.3 notifications: webhooks: urls: - https://webhooks.gitter.im/e/0c47152ec0b752e481c8 on_success: change # options: [always|never|change] default: always on_failure: always # options: [always|never|change] default: always on_start: false # default: false
Revert "remove email from docker login"
language: go sudo: required services: - docker go: - 1.6 install: - go get github.com/Masterminds/glide - glide install script: - go test `go list ./... | grep -v '/vendor/'` after_success: - if [ "$TRAVIS_BRANCH" == "master" ]; then GOOS=linux GOARCH=amd64 go build; docker build -t tpbowden/ingress-router:latest .; docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"; docker push tpbowden/ingress-router:latest; fi
language: go sudo: required services: - docker go: - 1.6 install: - go get github.com/Masterminds/glide - glide install script: - go test `go list ./... | grep -v '/vendor/'` after_success: - if [ "$TRAVIS_BRANCH" == "master" ]; then GOOS=linux GOARCH=amd64 go build; docker build -t tpbowden/ingress-router:latest .; docker login -e="$DOCKER_EMAIL" -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"; docker push tpbowden/ingress-router:latest; fi
Remove typings install from Travis CI config
sudo: false language: node_js node_js: - '6' - '5' - '4' before_install: - git submodule update --init - npm install -g npm - npm install -g gulp typings install: - npm run pretest - typings install - npm install script: - npm run test - gulp tslint
sudo: false language: node_js node_js: - '6' - '5' - '4' before_install: - git submodule update --init - npm install -g npm - npm install -g gulp typings install: - npm run pretest - npm install script: - npm run test - gulp tslint
Downgrade Firefox to 62 until webdriver behaves
language: node_js node_js: - 8 - 9 - 10 cache: yarn: true directories: - open-zwave-master sudo: required env: global: - CC=gcc-4.9 - CXX=g++-4.9 - MOZIOT_HOME=/home/travis/.mozilla-iot/test addons: firefox: latest apt: sources: - ubuntu-toolchain-r-test packages: - gcc-4.9 - g++-4.9 - libudev-dev before_install: - pyenv global system 3.6 install: - git clone https://github.com/mozilla-iot/intent-parser - pip3.6 install --user -e git+https://github.com/mycroftai/adapt#egg=adapt-parser - python3.6 intent-parser/intent-parser-server.py & - ./tools/compile-openzwave.sh before_script: - pyenv global system 2.7 script: - yarn - node ./node_modules/webpack/bin/webpack.js - npm run lint - ./tools/make-self-signed-cert.sh - ./node_modules/.bin/jest --runInBand --coverage - npm run yarn-check - npm run dependencies-check after_script: - ./node_modules/.bin/codecov
language: node_js node_js: - 8 - 9 - 10 cache: yarn: true directories: - open-zwave-master sudo: required env: global: - CC=gcc-4.9 - CXX=g++-4.9 - MOZIOT_HOME=/home/travis/.mozilla-iot/test addons: firefox: "62.0" apt: sources: - ubuntu-toolchain-r-test packages: - gcc-4.9 - g++-4.9 - libudev-dev before_install: - pyenv global system 3.6 install: - git clone https://github.com/mozilla-iot/intent-parser - pip3.6 install --user -e git+https://github.com/mycroftai/adapt#egg=adapt-parser - python3.6 intent-parser/intent-parser-server.py & - ./tools/compile-openzwave.sh before_script: - pyenv global system 2.7 script: - yarn - node ./node_modules/webpack/bin/webpack.js - npm run lint - ./tools/make-self-signed-cert.sh - ./node_modules/.bin/jest --runInBand --coverage - npm run yarn-check - npm run dependencies-check after_script: - ./node_modules/.bin/codecov
Build is failing due because request dependency can't be downloaded for Python 2.7. Use mirrors to install.
language: python python: - "2.6" - "2.7" env: - DJANGO_VERSION=1.3.1 - DJANGO_VERSION=1.4 install: - pip install -q Django==$DJANGO_VERSION script: python setup.py test
language: python python: - "2.6" - "2.7" env: - DJANGO_VERSION=1.3.1 - DJANGO_VERSION=1.4 install: - pip install -q Django==$DJANGO_VERSION - pip install . --use-mirrors script: python setup.py test
Test against latest Ruby versions
language: ruby cache: bundler sudo: false script: - bundle exec danger - bundle exec rake before_install: - gem update --system - gem install bundler rvm: - 2.3.7 - 2.4.4 - 2.5.1 - ruby-head - jruby-9.1.16.0 - jruby-head gemfile: - gemfiles/rails_42.gemfile - gemfiles/rails_50.gemfile - gemfiles/rails_51.gemfile - gemfiles/rails_52.gemfile - gemfiles/rails_edge.gemfile matrix: exclude: - rvm: 2.3.7 gemfile: gemfiles/rails_edge.gemfile allow_failures: - rvm: ruby-head - rvm: jruby-9.1.16.0 - rvm: jruby-head - gemfile: gemfiles/rails_edge.gemfile
language: ruby cache: bundler sudo: false script: - bundle exec danger - bundle exec rake before_install: - gem update --system - gem install bundler rvm: - 2.3.8 - 2.4.5 - 2.5.3 - ruby-head - jruby-9.2.3.0 - jruby-head gemfile: - gemfiles/rails_42.gemfile - gemfiles/rails_50.gemfile - gemfiles/rails_51.gemfile - gemfiles/rails_52.gemfile - gemfiles/rails_edge.gemfile matrix: exclude: - rvm: 2.3.8 gemfile: gemfiles/rails_edge.gemfile allow_failures: - rvm: ruby-head - rvm: jruby-9.2.3.0 - rvm: jruby-head - gemfile: gemfiles/rails_edge.gemfile
Fix allow failure syntax in TravisCI config
language: python python: - "2.7" - "3.5" - "3.6" - "pypy" before_install: pip install codecov matrix: allow_failures: - python: - "3.5" - "3.6" - "pypy" include: - python: 2.7 install: pip install -U flake8 script: flake8 --ignore E501,W191,C901,E265,E402 after_success: # - python: 2.7 # install: pip install -U isort # script: isort -c --diff # after_success: install: - pip install six - pip install pytest - pip install coveralls - pip install pytest-cov - python setup.py install script: python setup.py test after_success: - codecov - coveralls notifications: irc: "chat.freenode.net#httoop"
language: python python: - "2.7" - "3.5" - "3.6" - "pypy" before_install: pip install codecov matrix: allow_failures: - python: "3.5" - python: "3.6" - python: "pypy" include: - python: 2.7 install: pip install -U flake8 script: flake8 --ignore E501,W191,C901,E265,E402 after_success: # - python: 2.7 # install: pip install -U isort # script: isort -c --diff # after_success: install: - pip install six - pip install pytest - pip install coveralls - pip install pytest-cov - python setup.py install script: python setup.py test after_success: - codecov - coveralls notifications: irc: "chat.freenode.net#httoop"
Add Redis to Travis-CI configuration
dist: bionic sudo: required language: python cache: pip python: # After upgrading to Ubuntu 18.04 we lost ability to test against Py3.5 # - 3.5 - 3.6 - 3.7 env: - AMY_ENABLE_PYDATA=true AMY_PYDATA_USERNAME=username AMY_PYDATA_PASSWORD=password # With PyData enabled, there's always one migration missing, # so let's not check migrations. # CHECK_MIGRATION=true - CHECK_MIGRATION=true install: - pip install -r requirements.txt before_script: - if [[ $CHECK_MIGRATION == true ]]; then python manage.py makemigrations --dry-run --check; export STATUS_CODE=$?; if [[ "$STATUS_CODE" != "0" ]]; then exit 1; fi; fi; script: - python manage.py test -v 2
dist: bionic sudo: required language: python cache: pip # used for caching purposes services: - redis-server python: # After upgrading to Ubuntu 18.04 we lost ability to test against Py3.5 # - 3.5 - 3.6 - 3.7 env: - AMY_ENABLE_PYDATA=true AMY_PYDATA_USERNAME=username AMY_PYDATA_PASSWORD=password # With PyData enabled, there's always one migration missing, # so let's not check migrations. # CHECK_MIGRATION=true - CHECK_MIGRATION=true install: - pip install -r requirements.txt before_script: - if [[ $CHECK_MIGRATION == true ]]; then python manage.py makemigrations --dry-run --check; export STATUS_CODE=$?; if [[ "$STATUS_CODE" != "0" ]]; then exit 1; fi; fi; script: - python manage.py test -v 2
Update node version of Travis to the latest
language: node_js node_js: - 6 # https://github.com/electron/electron/blob/master/docs/tutorial/testing-on-headless-ci.md addons: apt: packages: - xvfb before_install: - export DISPLAY=':99.0' - Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 & before_script: - bash bin/before_script.sh script: - npm run build:production - npm test after_success: - npm run coveralls - bash bin/after_success.sh branches: except: - /^v\d+\.\d+\.\d+$/ - gh-pages notifications: webhooks: http://webhook.hakatashi.com/travis
language: node_js node_js: - node # https://github.com/electron/electron/blob/master/docs/tutorial/testing-on-headless-ci.md addons: apt: packages: - xvfb before_install: - export DISPLAY=':99.0' - Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 & before_script: - bash bin/before_script.sh script: - npm run build:production - npm test after_success: - npm run coveralls - bash bin/after_success.sh branches: except: - /^v\d+\.\d+\.\d+$/ - gh-pages notifications: webhooks: http://webhook.hakatashi.com/travis
Update Travis test Ruby versions
before_install: - sudo apt-get update -qq - sudo apt-get install -qq libfftw3-dev - gem install bundler language: ruby rvm: - "2.1.4" - "2.2.0" - "2.3.1" - "2.4.1"
before_install: - sudo apt-get update -qq - sudo apt-get install -qq libfftw3-dev - gem install bundler language: ruby rvm: - "2.2.10" - "2.3.8" - "2.4.5" - "2.5.3"
Replace Python 3.1 with Python 3.3
language: python python: - 2.5 - 2.6 - 2.7 - 3.1 - 3.2 script: make test
language: python python: - 2.5 - 2.6 - 2.7 - 3.2 - 3.3 script: make test
Add scipy to conda deps
sudo: false language: python python: - "2.7" addons: apt: packages: - liblapack-dev - gfortran before_install: - wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh - bash miniconda.sh -b -p $HOME/miniconda - export PATH="$HOME/miniconda/bin:$PATH" - conda update --yes conda install: - conda install --yes python=$TRAVIS_PYTHON_VERSION pip numpy - pip install coverage - python setup.py install script: coverage run -m unittest discover Mariana/tests/ after_success: bash <(curl -s https://codecov.io/bash)
sudo: false language: python python: - "2.7" addons: apt: packages: - liblapack-dev - gfortran before_install: - wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh - bash miniconda.sh -b -p $HOME/miniconda - export PATH="$HOME/miniconda/bin:$PATH" - conda update --yes conda install: - conda install --yes python=$TRAVIS_PYTHON_VERSION pip numpy scipy - pip install coverage - python setup.py install script: coverage run -m unittest discover Mariana/tests/ after_success: bash <(curl -s https://codecov.io/bash)
Remove trailing slash (possible Windows fix)
package: name: conda-env version: 1.1.0 build: number: {{ environ.get('GIT_DESCRIBE_NUMBER', 0) }} string: {{ environ.get('GIT_BUILD_STR', 'GIT_STUB') }} preserve_egg_dir: yes source: git_url: ../ requirements: build: - python - setuptools run: - python - setuptools test: commands: - conda env -h - conda env list -h - conda env create -h - conda env export -h - conda env remove -h about: home: https://github.com/conda/conda-env/
package: name: conda-env version: 1.1.0 build: number: {{ environ.get('GIT_DESCRIBE_NUMBER', 0) }} string: {{ environ.get('GIT_BUILD_STR', 'GIT_STUB') }} preserve_egg_dir: yes source: git_url: .. requirements: build: - python - setuptools run: - python - setuptools test: commands: - conda env -h - conda env list -h - conda env create -h - conda env export -h - conda env remove -h about: home: https://github.com/conda/conda-env/
Set production port to 80
--- service: zoomhub description: ZoomHub let’s you make your images zoomable. app_user: root apps_root: /var/apps app_repo: https://github.com/zoomhub/zoomhub.git app_root: '{{ apps_root }}/{{ service }}' app_version: master app_command: 'NODE_ENV=production {{ app_root }}/node_modules/.bin/_coffee --fibers --cache {{ app_root }}/app' log_root: '/var/log/{{ service }}' log_path: '/var/log/{{ service }}/{{ service }}.log'
--- service: zoomhub description: ZoomHub let’s you make your images zoomable. app_user: root apps_root: /var/apps app_repo: https://github.com/zoomhub/zoomhub.git app_root: '{{ apps_root }}/{{ service }}' app_version: master app_command: 'NODE_ENV=production PORT=80 {{ app_root }}/node_modules/.bin/_coffee --fibers --cache {{ app_root }}/app' log_root: '/var/log/{{ service }}' log_path: '/var/log/{{ service }}/{{ service }}.log'
Update from Hackage at 2022-07-17T14:43:59Z
homepage: https://github.com/albertprz/bookhound#readme changelog-type: '' hash: ac23d88b8f37b166a4d6fb0e5587d510d2a575d8aa2d3fcfec0252d485e32c5b test-bench-deps: {} maintainer: albertoperez1994@gmail.com synopsis: Simple Parser Combinators & Parsers changelog: '' basic-deps: base: '>=4.7 && <5' time: '>=1.9 && <2' text: '>=2.0 && <3' containers: '>=0.6 && <1' all-versions: - 0.1.0.0 - 0.1.1.0 - 0.1.2.0 - 0.1.3.0 - 0.1.4.0 - 0.1.5.0 - 0.1.6.0 - 0.1.7.0 - 0.1.8.0 - 0.1.9.0 - 0.1.10.0 author: Alberto Perez Lopez latest: 0.1.10.0 description-type: markdown description: | # bookhound license-name: LicenseRef-LGPL
homepage: https://github.com/albertprz/bookhound#readme changelog-type: '' hash: 1d06bd86cef9acfc56e46722833df2b5605c1ff65b5d9256b0ef776e90c7a54e test-bench-deps: {} maintainer: albertoperez1994@gmail.com synopsis: Simple Parser Combinators changelog: '' basic-deps: base: '>=4.7 && <5' time: '>=1.9 && <2' text: '>=2.0 && <3' containers: '>=0.6 && <1' all-versions: - 0.1.0.0 - 0.1.1.0 - 0.1.2.0 - 0.1.3.0 - 0.1.4.0 - 0.1.5.0 - 0.1.6.0 - 0.1.7.0 - 0.1.8.0 - 0.1.9.0 - 0.1.10.0 - 0.1.11.0 author: Alberto Perez Lopez latest: 0.1.11.0 description-type: markdown description: | # bookhound license-name: LicenseRef-LGPL
Add c compiler to build
{% set name = "robyn" %} {% set version = "0.6.1" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/robyn-{{ version }}.tar.gz sha256: af192a8fe409edbbcdc89fdce35cc577a543dffce09a76a8b5a14814897752ab patches: - 0001-add-maturin.patch build: skip: true # [py<38] number: 0 script: {{ PYTHON }} -m pip install . -vv requirements: build: - {{ compiler('rust') }} - maturin host: - maturin - poetry - pip - python - rust run: - python - watchdog >=2.1.3,<3 test: imports: - robyn commands: - pip check requires: - pip about: home: https://github.com/sansyrox/robyn summary: Async Python backend server with a runtime written in Rust. license: BSD-2-Clause license_file: LICENSE doc_url: https://sansyrox.github.io/robyn/ extra: recipe-maintainers: - thewchan
{% set name = "robyn" %} {% set version = "0.6.1" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/robyn-{{ version }}.tar.gz sha256: af192a8fe409edbbcdc89fdce35cc577a543dffce09a76a8b5a14814897752ab patches: - 0001-add-maturin.patch build: skip: true # [py<38] number: 0 script: {{ PYTHON }} -m pip install . -vv requirements: build: - {{ compliler('c') }} - {{ compiler('rust') }} - maturin host: - maturin - poetry - pip - python - rust run: - python - watchdog >=2.1.3,<3 test: imports: - robyn commands: - pip check requires: - pip about: home: https://github.com/sansyrox/robyn summary: Async Python backend server with a runtime written in Rust. license: BSD-2-Clause license_file: LICENSE doc_url: https://sansyrox.github.io/robyn/ extra: recipe-maintainers: - thewchan
Switch to 2023.1 Python3 unit tests and generic template name
- job: name: ceilometermiddleware-integration parent: telemetry-dsvm-integration required-projects: - openstack/ceilometermiddleware - project: templates: - openstack-python3-zed-jobs - publish-openstack-docs-pti - release-notes-jobs-python3 check: jobs: - ceilometermiddleware-integration gate: jobs: - ceilometermiddleware-integration
- job: name: ceilometermiddleware-integration parent: telemetry-dsvm-integration required-projects: - openstack/ceilometermiddleware - project: templates: - openstack-python3-jobs - publish-openstack-docs-pti - release-notes-jobs-python3 check: jobs: - ceilometermiddleware-integration gate: jobs: - ceilometermiddleware-integration
Enable HSTS preload for bisq.network domain name
title: Bisq url: "https://bisq.network" markdown: kramdown permalink: /blog/:title/ livereload: true plugins: - jekyll-redirect-from - jekyll-feed - jekyll-sitemap - jekyll-paginate feed: path: blog/feed.atom include: - _redirects - _headers exclude: - CNAME - README - Gemfile paginate: 10 paginate_path: "/blog/page/:num/" client_version: "1.1.5" description: "Bisq is an open-source desktop application that allows you to buy and sell bitcoins in exchange for national currencies, or alternative crypto currencies." sass: style: compressed webrick: headers: Strict-Transport-Security: "max-age=31536000" X-XSS-Protection: "1; mode=block" X-Content-Type-Options: "nosniff" X-Frame-Options: "SAMEORIGIN"
title: Bisq url: "https://bisq.network" markdown: kramdown permalink: /blog/:title/ livereload: true plugins: - jekyll-redirect-from - jekyll-feed - jekyll-sitemap - jekyll-paginate feed: path: blog/feed.atom include: - _redirects - _headers exclude: - CNAME - README - Gemfile paginate: 10 paginate_path: "/blog/page/:num/" client_version: "1.1.5" description: "Bisq is an open-source desktop application that allows you to buy and sell bitcoins in exchange for national currencies, or alternative crypto currencies." sass: style: compressed webrick: headers: Strict-Transport-Security: "max-age=63072000; includeSubDomains; preload" X-XSS-Protection: "1; mode=block" X-Content-Type-Options: "nosniff" X-Frame-Options: "SAMEORIGIN"
Revert to a working state
version: '{branch}-rev{build}' shallow_clone: true os: - Visual Studio 2015 environment: matrix: - TOOLSET: vs2015 install: - cd build && "./premake5.exe" %TOOLSET% && cd .. configuration: - DebugDynamic - ReleaseDynamic platform: - Win32 - x64 build: project: build/$(TOOLSET)/NazaraEngine.sln #after_build: # - cd tests && "./NazaraUnitTests" after_build: - cd build && "./premake5.exe" package && cd .. - 7z a 'NazaraEngine-%CONFIGURATION%-%PLATFORM%-%APPVEYOR_REPO_COMMIT%.7z' package/* artifacts: - path: NazaraEngine-$(CONFIGURATION)-$(PLATFORM)-$(APPVEYOR_REPO_COMMIT).7z name: NazaraEngine
version: '{branch}-rev{build}' shallow_clone: true os: - Visual Studio 2015 environment: matrix: - TOOLSET: vs2015 install: - cd build && "./premake5.exe" %TOOLSET% && cd .. configuration: - DebugDynamic - ReleaseDynamic platform: - Win32 - x64 build: project: build/$(TOOLSET)/NazaraEngine.sln #after_build: # - cd tests && "./NazaraUnitTests" after_build: - cd build && "./premake5.exe" package && cd ../package - 7z a NazaraEngine.7z * artifacts: - path: package/NazaraEngine.7z name: 'NazaraEngine-$(CONFIGURATION)-$(PLATFORM)-$(APPVEYOR_REPO_COMMIT)'
Change license text. Add library author as maintainer
{% set version = "1.1.0" %} package: name: mongoquery version: {{ version }} source: url: https://github.com/kapouille/mongoquery/archive/v{{ version }}.tar.gz fn: mongoquery-v{{ version }}.tar.gz sha256: d1e87f6038ea074273610b6258e5af7477de61c782f6424fc7ecf3416df3e645 build: number: 0 script: python setup.py install --single-version-externally-managed --record=record.txt requirements: build: - setuptools - python run: - python test: imports: - mongoquery requires: - pytest commands: - py.test {{ environ.SRC_DIR }}/tests -vrsx about: home: https://github.com/kapouille/mongoquery license: The Unlicense summary: > A utility library that provides a MongoDB-like query language for querying python collections. It's mainly intended to parse objects structured as fundamental types in a similar fashion to what is produced by JSON or YAML parsers. extra: recipe-maintainers: - ericdill - licode - tacaswell
{% set version = "1.1.0" %} package: name: mongoquery version: {{ version }} source: url: https://github.com/kapouille/mongoquery/archive/v{{ version }}.tar.gz fn: mongoquery-v{{ version }}.tar.gz sha256: d1e87f6038ea074273610b6258e5af7477de61c782f6424fc7ecf3416df3e645 build: number: 0 script: python setup.py install --single-version-externally-managed --record=record.txt requirements: build: - setuptools - python run: - python test: imports: - mongoquery requires: - pytest commands: - py.test {{ environ.SRC_DIR }}/tests -vrsx about: home: https://github.com/kapouille/mongoquery license: Public Domain summary: > A utility library that provides a MongoDB-like query language for querying python collections. It's mainly intended to parse objects structured as fundamental types in a similar fashion to what is produced by JSON or YAML parsers. extra: recipe-maintainers: - ericdill - kapouille - licode - tacaswell
Update Dark theme to 2.4 (6)
Categories: - Theming License: GPL-3.0-only AuthorName: PH studio AuthorEmail: phstudio@pm.me AuthorWebSite: https://phstudio2.webnode.com WebSite: https://phstudio2.webnode.com/dark-theme SourceCode: https://github.com/phstudio2/Darktheme IssueTracker: https://github.com/phstudio2/Darktheme/issues Changelog: https://github.com/phstudio2/Darktheme/releases Donate: https://phstudio2.webnode.com/donate AutoName: Dark theme RepoType: git Repo: https://github.com/phstudio2/Darktheme.git Builds: - versionName: '2.3' versionCode: 5 commit: 2.3x subdir: app sudo: - apt-get update || apt-get update - apt-get install -y openjdk-11-jdk-headless - update-alternatives --auto java gradle: - yes AutoUpdateMode: Version UpdateCheckMode: Tags CurrentVersion: '2.3' CurrentVersionCode: 5
Categories: - Theming License: GPL-3.0-only AuthorName: PH studio AuthorEmail: phstudio@pm.me AuthorWebSite: https://phstudio2.webnode.com WebSite: https://phstudio2.webnode.com/dark-theme SourceCode: https://github.com/phstudio2/Darktheme IssueTracker: https://github.com/phstudio2/Darktheme/issues Changelog: https://github.com/phstudio2/Darktheme/releases Donate: https://phstudio2.webnode.com/donate AutoName: Dark theme RepoType: git Repo: https://github.com/phstudio2/Darktheme.git Builds: - versionName: '2.3' versionCode: 5 commit: 2.3x subdir: app sudo: - apt-get update || apt-get update - apt-get install -y openjdk-11-jdk-headless - update-alternatives --auto java gradle: - yes - versionName: '2.4' versionCode: 6 commit: b47fbabd3408539e147c1b562dc46bd698b005e6 subdir: app sudo: - apt-get update || apt-get update - apt-get install -y openjdk-11-jdk-headless - update-alternatives --auto java gradle: - yes AutoUpdateMode: Version UpdateCheckMode: Tags CurrentVersion: '2.4' CurrentVersionCode: 6
Define separate steps for testing and packaging
machine: java: version: oraclejdk8 environment: SBT_VERSION: 0.13.9 dependencies: # Cache the resolution-cache and build streams to speed things up cache_directories: - "~/.sbt" - "target/resolution-cache" - "target/streams" - "project/target/resolution-cache" - "project/target/streams" test: override: - sbt coverage test post: - mkdir -p $CIRCLE_TEST_REPORTS/junit/ - find . -type f -regex ".*/target/test-reports/.*xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \; - sbt clean test debian:packageBin - sbt coverageAggregate - sbt codacyCoverage
machine: java: version: oraclejdk8 environment: SBT_VERSION: 0.13.9 dependencies: # Cache the resolution-cache and build streams to speed things up cache_directories: - "~/.sbt" - "target/resolution-cache" - "target/streams" - "project/target/resolution-cache" - "project/target/streams" test: override: - sbt coverage test post: - mkdir -p $CIRCLE_TEST_REPORTS/junit/ - find . -type f -regex ".*/target/test-reports/.*xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \; - sbt clean test - sbt coverageAggregate - sbt codacyCoverage - sbt debian:packageBin
Update webhook url for api
machine: python: version: 3.5.0 services: - mysql environment: MYSQL_DATABASE: circle_test MYSQL_USER: ubuntu MYSQL_HOST: 127.0.0.1 MYSQL_PORT: 3306 notify: webhooks: - url: https://rocketchat.catalyst-au.net/hooks/ae8CYLLs9cYR5PZTe/bkAXoCavHHAF53wwh3rd6pR98BHHihyAg97Yyk3pZMwrcivy
machine: python: version: 3.5.0 services: - mysql environment: MYSQL_DATABASE: circle_test MYSQL_USER: ubuntu MYSQL_HOST: 127.0.0.1 MYSQL_PORT: 3306 notify: webhooks: - url: https://rocketchat.catalyst.net.nz/hooks/oxWrnGe2tru8o9ANM/9zhwrE42QEdFM9BuCDDegKCsRoYGGhRXDFjQLeNSeSCWggag
Update from Hackage at 2017-01-19T18:28:40Z
homepage: http://github.com/aloiscochard/machines-directory changelog-type: '' hash: 7318938cc83542f0fe579c1e604017606a60876496cbbb995e487cec0848c0f6 test-bench-deps: {} maintainer: alois.cochard@gmail.com synopsis: Directory (system) utilities for the machines library changelog: '' basic-deps: base: ! '>=4.6 && <5' filepath: ! '>=1.3 && <1.5' machines-io: ! '>=0.1 && <0.3' transformers: ! '>=0.3 && <0.6' machines: ! '>=0.2.4 && <0.7' directory: ! '>=1.2 && <1.3' all-versions: - '0.0.0.1' - '0.0.0.2' - '0.2.0.0' - '0.2.0.2' - '0.2.0.4' - '0.2.0.6' - '0.2.0.8' - '0.2.0.9' author: Alois Cochard latest: '0.2.0.9' description-type: haddock description: '' license-name: Apache-2.0
homepage: http://github.com/aloiscochard/machines-directory changelog-type: '' hash: 0e85e707bdd315d83fe7cfc6f1823a9ffe9bc3892a783672cdd067d66768beae test-bench-deps: {} maintainer: alois.cochard@gmail.com synopsis: Directory (system) utilities for the machines library changelog: '' basic-deps: base: ! '>=4.6 && <5' filepath: ! '>=1.3 && <1.5' machines-io: ! '>=0.1 && <0.3' transformers: ! '>=0.3 && <0.6' machines: ! '>=0.2.4 && <0.7' directory: ! '>=1.2 && <1.4' all-versions: - '0.0.0.1' - '0.0.0.2' - '0.2.0.0' - '0.2.0.2' - '0.2.0.4' - '0.2.0.6' - '0.2.0.8' - '0.2.0.9' - '0.2.0.10' author: Alois Cochard latest: '0.2.0.10' description-type: haddock description: '' license-name: Apache-2.0
Update actions/setup-node action to v2
name: ci on: pull_request: jobs: docker: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - uses: docker/setup-qemu-action@v1 - uses: docker/setup-buildx-action@v1 - uses: docker/build-push-action@v2 with: platforms: linux/amd64 tags: windyakin/kosen-website-crawler:latest push: false eslint: runs-on: ubuntu-latest strategy: matrix: node-version: [12.x] steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - run: npm install - run: npm run lint
name: ci on: pull_request: jobs: docker: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - uses: docker/setup-qemu-action@v1 - uses: docker/setup-buildx-action@v1 - uses: docker/build-push-action@v2 with: platforms: linux/amd64 tags: windyakin/kosen-website-crawler:latest push: false eslint: runs-on: ubuntu-latest strategy: matrix: node-version: [12.x] steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} - run: npm install - run: npm run lint
Improve conda recipe. Don't test since we already test in CI.
package: name: pocean-core version: "1.3.0" source: path: ../ build: number: 0 script: python setup.py install --single-version-externally-managed --record=record.txt requirements: build: - python - setuptools run: - python - netcdf4 - numpy - pandas - pygc >=1.2.0 - python-dateutil - pytz - shapely - simplejson - six test: source_files: - pocean requires: - pytest imports: - pocean - pocean.dsg - pocean.grid - pocean.tests commands: - py.test pocean about: home: https://github.com/pyoceans/pocean-core license: MIT summary: 'A python framework for working with met-ocean data.'
package: name: pocean-core version: "1.3.0" source: path: ../ build: number: 0 noarch: python script: python -m pip install --no-deps --ignore-installed . requirements: build: - python - pip run: - python - netcdf4 - numpy - pandas >=0.21.0 - pygc >=1.2.0 - python-dateutil - pytz - shapely - simplejson - six test: source_files: - pocean requires: - pytest imports: - pocean - pocean.dsg - pocean.grid - pocean.tests commands: - py.test pocean about: home: https://github.com/pyoceans/pocean-core license: MIT summary: 'A python framework for working with met-ocean data.'
Move homebrew cache to /opt
--- - name: Install base packages homebrew: name: - zsh # Changing shell - curl # Installing - luarocks # Spacehammer/fennel - antigen # Shell config state: present - name: Restore all packages command: brew bundle --file=Brewfile tags: [brew, extra] - name: Link emacs become: yes file: state: link src: /usr/local/Cellar/emacs-plus@28/28.0.50/Emacs.app dest: /Applications/Emacs.app # - name: Link openssl # file: # path: /usr/local/lib/{{ item }}.dylib # src: /usr/local/opt/openssl/lib/{{ item }}.dylib # state: link # with_items: # - libssl # - libcrypto - name: Add brew zsh as allowed shell become: yes template: src: templates/shells.j2 dest: /etc/shells tags: [zsh] - name: Set loginshell become: true shell: chsh -s /usr/local/bin/zsh tags: [zsh]
--- - name: Create custom brew cache become: yes file: state: directory path: /opt/HomebrewCache owner: mattias - name: Install base packages homebrew: name: - zsh # Changing shell - curl # Installing - luarocks # Spacehammer/fennel - antigen # Shell config state: present env: HOMEBREW_CACHE: /opt/HomebrewCache - name: Restore all packages command: brew bundle --file=Brewfile tags: [brew, extra] env: HOMEBREW_CACHE: /opt/HomebrewCache - name: Link emacs become: yes file: state: link src: /usr/local/Cellar/emacs-plus@28/28.0.50/Emacs.app dest: /Applications/Emacs.app # - name: Link openssl # file: # path: /usr/local/lib/{{ item }}.dylib # src: /usr/local/opt/openssl/lib/{{ item }}.dylib # state: link # with_items: # - libssl # - libcrypto - name: Add brew zsh as allowed shell become: yes template: src: templates/shells.j2 dest: /etc/shells tags: [zsh] - name: Set loginshell become: true shell: chsh -s /usr/local/bin/zsh tags: [zsh]
Update Redshift JDBC driver to 1003
--- mysql_release_filename: mysql57-community-release-el7-9.noarch.rpm mysql_community_ini_section: mysql57-community oracle_instantclient_basic_filename: oracle-instantclient12.2-basic-12.2.0.1.0-1.x86_64.rpm oracle_instantclient_sqlplus_filename: oracle-instantclient12.2-sqlplus-12.2.0.1.0-1.x86_64.rpm oracle_instantclient_tools_filename: oracle-instantclient12.2-tools-12.2.0.1.0-1.x86_64.rpm postgersql_jdbc_filename: postgresql-42.1.4.jar redshift_jdbc_filename: RedshiftJDBC42-1.2.1.1001.jar sqlcl_filename: sqlcl-17.2.0.184.1230-no-jre.zip swingbench_filename: swingbench25971.zip
--- mysql_release_filename: mysql57-community-release-el7-9.noarch.rpm mysql_community_ini_section: mysql57-community oracle_instantclient_basic_filename: oracle-instantclient12.2-basic-12.2.0.1.0-1.x86_64.rpm oracle_instantclient_sqlplus_filename: oracle-instantclient12.2-sqlplus-12.2.0.1.0-1.x86_64.rpm oracle_instantclient_tools_filename: oracle-instantclient12.2-tools-12.2.0.1.0-1.x86_64.rpm postgersql_jdbc_filename: postgresql-42.1.4.jar redshift_jdbc_filename: RedshiftJDBC42-1.2.1.1003.jar sqlcl_filename: sqlcl-17.2.0.184.1230-no-jre.zip swingbench_filename: swingbench25971.zip
Update Husky version to 1.1.2
Categories: - Internet License: GPL-3.0-only AuthorName: a1batross AuthorEmail: contact@fwgs.ru SourceCode: https://git.mentality.rip/FWGS/Husky IssueTracker: https://git.mentality.rip/FWGS/Husky/issues Translation: https://l10n.mentality.rip/projects/husky/ Changelog: https://git.mentality.rip/FWGS/Husky/releases AutoName: Husky RepoType: git Repo: https://git.mentality.rip/FWGS/Husky Builds: - versionName: 1.0.1 versionCode: 168 commit: v1.0.1 subdir: app gradle: - huskyBlue prebuild: sed -i -e 's/buildnum()/168/g' build.gradle MaintainerNotes: VC is generated on build, no way to check for updates. AutoUpdateMode: None UpdateCheckMode: None CurrentVersion: 1.0.1 CurrentVersionCode: 168
Categories: - Internet License: GPL-3.0-only WebSite: https://husky.adol.pw SourceCode: https://git.sr.ht/~captainepoch/husky IssueTracker: https://todo.sr.ht/~captainepoch/husky Changelog: https://git.sr.ht/~captainepoch/husky/tree/master/item/HISTORY AutoName: Husky RepoType: git Repo: https://git.sr.ht/~captainepoch/husky Builds: - versionName: 1.0.1 versionCode: 168 commit: v1.0.1 subdir: app gradle: - huskyBlue prebuild: sed -i -e 's/buildnum()/168/g' build.gradle - versionName: 1.1.2 versionCode: 178 commit: 1.1.2 subdir: husky/app sudo: - apt-get update || apt-get update - apt-get install -y openjdk-11-jdk-headless - update-alternatives --auto java gradle: - huskyStable MaintainerNotes: VC is generated on build, no way to check for updates. AutoUpdateMode: None UpdateCheckMode: None CurrentVersion: 1.1.2 CurrentVersionCode: 178
Add a better message (also, remove ansible-lint warning)
- name: Create user user: name={{ pusher_username }} generate_ssh_key=yes - name: Deploy the sync script template: src=push_remote_public.sh dest=/usr/local/bin/push_remote_public.sh mode=0755 - name: Add remote repositories to git ini_file: dest={{ git_repositories_dir }}/public/config option=url value={{ item.url}} section="remote \"{{ item.name }}\"" with_items: remotes - name: Deploy hook to push to remote repositories template: dest={{ git_repositories_dir }}/public/hooks/post-receive.d/02_push_remote.sh src=hooks/push_remote.sh mode=0755 - name: Add sudo config for pushing to remote repositories template: dest=/etc/sudoers.d/push_remote_public src=push_remote_public.sudoers validate='visudo -cf %s' when: ansible_admin_group is defined
- name: Create user {{ pusher_username }} to sync repos user: name={{ pusher_username }} generate_ssh_key=yes - name: Deploy the sync script template: src=push_remote_public.sh dest=/usr/local/bin/push_remote_public.sh mode=0755 - name: Add remote repositories to git ini_file: dest={{ git_repositories_dir }}/public/config option=url value={{ item.url}} section="remote \"{{ item.name }}\"" with_items: remotes - name: Deploy hook to push to remote repositories template: dest={{ git_repositories_dir }}/public/hooks/post-receive.d/02_push_remote.sh src=hooks/push_remote.sh mode=0755 - name: Add sudo config for pushing to remote repositories template: dest=/etc/sudoers.d/push_remote_public src=push_remote_public.sudoers validate='visudo -cf %s' when: ansible_admin_group is defined
Update from Hackage at 2018-10-22T03:08:00Z
homepage: https://github.com/typeclasses/ascii changelog-type: '' hash: 4be5c0d0c2d4f65af36f6cabda146c7ec563b85410e36b9c9d098611ed31d44f test-bench-deps: {} maintainer: Chris Martin, Julie Moronuki synopsis: Type-safe, bytestring-based ASCII values. changelog: '' basic-deps: bytestring: ! '>=0.9 && <0.11' case-insensitive: ! '>=0.2 && <1.3' base: ! '>=4 && <5' text: ! '>=0.11 && <1.3' semigroups: -any blaze-builder: ! '>=0.2.1.4 && <0.5' hashable: ! '>=1.0 && <1.3' all-versions: - '0.0.0' - '0.0.1' - '0.0.1.1' - '0.0.2' - '0.0.2.1' - '0.0.2.2' - '0.0.3' - '0.0.4' - '0.0.4.1' - '0.0.5.1' author: Michael Snoyman latest: '0.0.5.1' description-type: haddock description: Type-safe, bytestring-based ASCII values. license-name: BSD3
homepage: https://github.com/typeclasses/ascii changelog-type: '' hash: ef54b90e2c154faca039087cad2930aaf0e67939e15d2384d3841d42e17e17ed test-bench-deps: {} maintainer: Chris Martin, Julie Moronuki synopsis: Type-safe, bytestring-based ASCII values. changelog: '' basic-deps: bytestring: ! '>=0.9 && <0.11' case-insensitive: ! '>=0.2 && <1.3' base: ! '>=4.8 && <5' text: ! '>=0.11 && <1.3' semigroups: -any blaze-builder: ! '>=0.2.1.4 && <0.5' hashable: ! '>=1.0 && <1.3' all-versions: - '0.0.0' - '0.0.1' - '0.0.1.1' - '0.0.2' - '0.0.2.1' - '0.0.2.2' - '0.0.3' - '0.0.4' - '0.0.4.1' - '0.0.5.1' author: Michael Snoyman latest: '0.0.5.1' description-type: haddock description: Type-safe, bytestring-based ASCII values. license-name: BSD3
Comment out master filter for now.
version: 2 jobs: build: docker: # https://circleci.com/docs/2.0/circleci-images/#nodejs - image: circleci/node:latest working_directory: ~/ofreport.com environment: NUXT_BUILD_DIR: ~/ofreport.com/dist PER_PAGE: "10" APP_ENV: "prod" steps: - checkout # Download and cache dependencies - restore_cache: keys: - v1-dependencies-{{ checksum "package.json" }} # fallback to using the latest cache if no exact match is found - v1-dependencies- - run: yarn install - save_cache: paths: - node_modules key: v1-dependencies-{{ checksum "package.json" }} - run: yarn md2json - run: yarn generate deploy: docker: # https://circleci.com/docs/2.0/circleci-images/#nodejs - image: circleci/node:latest working_directory: ~/ofreport.com steps: - run: name: Install Gulp command: sudo npm install -g gulp - run: name: Deploy to S3 command: gulp deploy workflows: version: 2 build-deploy: jobs: - build - deploy: requires: - build filters: branches: only: master
version: 2 jobs: build: docker: # https://circleci.com/docs/2.0/circleci-images/#nodejs - image: circleci/node:latest working_directory: ~/ofreport.com environment: NUXT_BUILD_DIR: ~/ofreport.com/dist PER_PAGE: "10" APP_ENV: "prod" steps: - checkout # Download and cache dependencies - restore_cache: keys: - v1-dependencies-{{ checksum "package.json" }} # fallback to using the latest cache if no exact match is found - v1-dependencies- - run: yarn install - save_cache: paths: - node_modules key: v1-dependencies-{{ checksum "package.json" }} - run: yarn md2json - run: yarn generate deploy: docker: # https://circleci.com/docs/2.0/circleci-images/#nodejs - image: circleci/node:latest working_directory: ~/ofreport.com steps: - run: name: Install Gulp command: sudo npm install -g gulp - run: name: Deploy to S3 command: gulp deploy workflows: version: 2 build-deploy: jobs: - build - deploy: requires: - build # filters: # branches: # only: master
Rename images to the correct names.
containers: database: image: database dockerfile: database run: privileged: true phpmyadmin: image: phpmyadmin dockerfile: phpmyadmin run: privileged: true publish: - "9000:80" link: - "database:database" web: image: web dockerfile: web run: privileged: true link: - "database:database" publish: - "8000:8000" volumes: - "web:/web" cmd: "scripts/run/dev.sh" ftp: image: ftp dockerfile: ftp run: privileged: true publish: - "21:21" haproxy: image: haproxy dockerfile: haproxy run: privileged: true publish: - "80:80" apache: image: apache dockerfile: apache run: privileged: true link: - "database:database" publish: - "8001:8001"
containers: database: image: virtualvulcano/database dockerfile: database run: privileged: true phpmyadmin: image: virtualvulcano/phpmyadmin dockerfile: phpmyadmin run: privileged: true publish: - "9000:80" link: - "database:database" web: image: virtualvulcano/web dockerfile: web run: privileged: true link: - "database:database" publish: - "8000:8000" volumes: - "web:/web" cmd: "scripts/run/dev.sh" ftp: image: virtualvulcano/ftp dockerfile: ftp run: privileged: true publish: - "21:21" haproxy: image: virtualvulcano/haproxy dockerfile: haproxy run: privileged: true publish: - "80:80" apache: image: virtualvulcano/apache dockerfile: apache run: privileged: true link: - "database:database" publish: - "8001:8001"
Make zuul talk to eureka for static path
server: port: 8082 eureka: instance: hostname: edgeservice client: healthcheck: enabled: true registerWithEureka: true fetchRegistry: true serviceUrl: defaultZone: http://discovery:8761/eureka/ endpoints: info: enabled: true zuul: routes: eventservice: path: /eventservice/** url: http://eventservice:8081 simpleprocess: path: /simpleprocess/** url: http://simpleprocess:9998 trivialprocess: path: /trivialprocess/** url: http://trivialprocess:9999
server: port: 8082 eureka: instance: hostname: edgeservice client: healthcheck: enabled: true registerWithEureka: true fetchRegistry: true serviceUrl: defaultZone: http://discovery:8761/eureka/ endpoints: info: enabled: true zuul: routes: eventservice: path: /eventservice/** serviceId: eventService simpleprocess: path: /simpleprocess/** serviceId: simpleEngine trivialprocess: path: /trivialprocess/** serviceId: trivialEngine
Update from Forestry.io - Updated Forestry configuration
--- pages: - _work/tropically-bohemian.markdown - _work/puttin-on-the-ritz.markdown - _work/olivia-joy-photography.markdown hide_body: false is_partial: false fields: - name: title label: Work Title type: text hidden: false default: '' description: e.g. Meals OnCol config: required: true - name: subtitle label: Subtitle type: text hidden: false default: description: e.g. Meals for patients - name: date label: Work Date type: datetime hidden: false default: '' description: When did this project complete? config: time_format: " " - type: tag_list label: Categories name: categories description: Food, Home Decor, etc. - type: image_gallery name: images label: Gallery description: Portfolio of the work done - type: textarea name: testimonial label: Testimonial description: Quote from the client config: wysiwyg: true schema: format: markdown - type: field_group_list name: profiles label: Profiles fields: - type: text name: title label: Title config: required: true - type: text name: url label: URL config: required: true
--- pages: - _work/tropically-bohemian.markdown - _work/puttin-on-the-ritz.markdown - _work/olivia-joy-photography.markdown hide_body: false is_partial: false fields: - name: title label: Work Title type: text hidden: false default: '' description: e.g. Meals OnCol config: required: true - name: subtitle label: Subtitle type: text hidden: false default: description: e.g. Meals for patients - name: date label: Work Date type: datetime hidden: false default: '' description: When did this project complete? config: time_format: " " - type: tag_list label: Categories name: categories description: Food, Home Decor, etc. - type: image_gallery name: images label: Gallery description: Portfolio of the work done - type: textarea name: testimonial label: Testimonial description: Quote from the client config: wysiwyg: true schema: format: markdown - type: field_group_list name: profiles label: Client Profiles fields: - type: text name: title label: Title config: required: true - type: text name: url label: URL config: required: true description: Website, Facebook, etc. config: labelField: title
Add OSX build for Perl Test::NoWarnings
package: name: perl-test-nowarnings version: "1.04" source: fn: Test-NoWarnings-1.04.tar.gz url: http://cpan.metacpan.org/authors/id/A/AD/ADAMK/Test-NoWarnings-1.04.tar.gz md5: 682ed043f7d3e38f3dfd8745fd21c49a build: number: 0 skip: True # [osx] requirements: build: - perl-threaded run: - perl-threaded # When called with 'use', package does an automatic test and exits nonzero. # Use 'require' in run_test.pl instead to get expected behavior for testing. about: home: https://metacpan.org/pod/Test::NoWarnings license: open_source summary: Make sure you didn't emit any warnings while testing
package: name: perl-test-nowarnings version: "1.04" source: fn: Test-NoWarnings-1.04.tar.gz url: http://cpan.metacpan.org/authors/id/A/AD/ADAMK/Test-NoWarnings-1.04.tar.gz md5: 682ed043f7d3e38f3dfd8745fd21c49a build: number: 1 requirements: build: - perl-threaded run: - perl-threaded # When called with 'use', package does an automatic test and exits nonzero. # Use 'require' in run_test.pl instead to get expected behavior for testing. about: home: https://metacpan.org/pod/Test::NoWarnings license: open_source summary: Make sure you didn't emit any warnings while testing
Update from Forestry.io - Updated Forestry configuration
--- new_page_extension: md auto_deploy: false admin_path: webhook_url: sections: - type: jekyll-pages label: Pages create: all - type: jekyll-posts label: Posts create: all upload_dir: uploads public_path: "/uploads" front_matter_path: '' use_front_matter_path: false file_template: ":filename:" build: preview_env: - JEKYLL_ENV=staging preview_output_directory: _site install_dependencies_command: bundle install vendor/bundle preview_docker_image: forestryio/ruby:2.6 mount_path: "/srv" working_dir: "/srv" instant_preview_command: bundle exec jekyll serve --drafts --unpublished --future -d _site
--- new_page_extension: md auto_deploy: false admin_path: webhook_url: sections: - type: jekyll-pages label: Pages create: all - type: jekyll-posts label: Posts create: all upload_dir: uploads public_path: "/uploads" front_matter_path: '' use_front_matter_path: false file_template: ":filename:" build: preview_env: - JEKYLL_ENV=staging preview_output_directory: _site install_dependencies_command: bundle install --path vendor/bundle preview_docker_image: forestryio/ruby:2.6 mount_path: "/srv" working_dir: "/srv" instant_preview_command: bundle exec jekyll serve --drafts --unpublished --future -d _site
Update from Hackage at 2019-01-15T20:45:50Z
homepage: https://github.com/joelburget/symmetric-properties#readme changelog-type: '' hash: d69c4dcac09b483eedd07219daa883fdad98e24292b972a1be794eca9b19a408 test-bench-deps: symmetric-properties: -any base: -any hspec: -any HUnit: -any maintainer: joelburget@gmail.com synopsis: Monoids for sameness and uniqueness. changelog: '' basic-deps: base: ! '>=4.6 && <5' containers: ! '>=0.4' all-versions: - 0.1.0.0 author: Joel Burget latest: 0.1.0.0 description-type: haddock description: ! 'Test whether every element of a ''Foldable'' is the ''Same'' or ''Unique''. > > allSame (replicate 1000 1) > True > > allSame [1..] > False > > allUnique [1..1000] > True > > allUnique (cycle [1..100]) > False' license-name: BSD-3-Clause
homepage: https://github.com/joelburget/symmetric-properties#readme changelog-type: '' hash: c44a0cd2f900b0687b3133d81d619c2a87b48d62ac04d5225b1ac865e43cd60d test-bench-deps: symmetric-properties: -any base: -any hspec: -any HUnit: -any maintainer: joelburget@gmail.com synopsis: Monoids for sameness and uniqueness. changelog: '' basic-deps: base: ! '>=4.6 && <5' containers: ! '>=0.4' all-versions: - 0.1.0.0 - 0.1.0.1 author: Joel Burget latest: 0.1.0.1 description-type: haddock description: |- Test whether every element of a 'Foldable' is the 'Same' or 'Unique'. > > allSame (replicate 1000 1) > True > > allSame [1..] > False > > allUnique [1..1000] > True > > allUnique (cycle [1..100]) > False license-name: BSD-3-Clause
Bump actions/setup-java from 2 to 3
# Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you under the Apache License, Version 2.0 (the # "License"); you may not use this file except in compliance # with the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, # software distributed under the License is distributed on an # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. name: GitHub CI on: [push, pull_request] jobs: build: strategy: matrix: # windows-latest os: [ubuntu-latest, macOS-latest] java: [8] jdk: [temurin, zulu] fail-fast: false runs-on: ${{ matrix.os }} steps: - name: Checkout uses: actions/checkout@v3 - name: Set up JDK uses: actions/setup-java@v2 with: distribution: ${{ matrix.jdk }} java-version: ${{ matrix.java }} cache: 'maven' - name: Build with Maven run: mvn verify -e -B -V -P run-its
# Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you under the Apache License, Version 2.0 (the # "License"); you may not use this file except in compliance # with the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, # software distributed under the License is distributed on an # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. name: GitHub CI on: [push, pull_request] jobs: build: strategy: matrix: # windows-latest os: [ubuntu-latest, macOS-latest] java: [8] jdk: [temurin, zulu] fail-fast: false runs-on: ${{ matrix.os }} steps: - name: Checkout uses: actions/checkout@v3 - name: Set up JDK uses: actions/setup-java@v3 with: distribution: ${{ matrix.jdk }} java-version: ${{ matrix.java }} cache: 'maven' - name: Build with Maven run: mvn verify -e -B -V -P run-its
Add env variables to lapi
version: '3.2' services: rancher: image: rancher/rancher restart: unless-stopped # ports: # - "8080:80" # - "8443:443" lapi: build: context: . dockerfile: lapi.dockerfile restart: unless-stopped caddy: image: abiosoft/caddy restart: unless-stopped volumes: - ./Caddyfile:/etc/Caddyfile:ro ports: - 80:80 - 443:443 links: - lapi - rancher
version: "3.2" services: lapi: build: context: . dockerfile: lapi.dockerfile restart: unless-stopped enviroment: - BROKER_HOST: mqtt.lambdaspace.gr - BROKER_PORT: 1883 - MQTT_TOPIC_HACKERS: "lambdaspace/spacestatus/hackers" - MQTT_TOPIC_STATS: "lambdaspace/spacestatus/stats" caddy: image: abiosoft/caddy restart: unless-stopped volumes: - ./Caddyfile:/etc/Caddyfile:ro ports: - 80:80 - 443:443 links: - lapi - rancher
Remove mysql from homebrew installs
--- downloads: ~/.ansible-downloads/ homebrew_install_script: "{{ downloads }}/homebrew_install" homebrew_install_path: /usr/local/bin homebrew_packages: - autoconf - gcc - gettext - git - go - grep - htop - jq - mysql - node - nvm - python3 - readline - wget homebrew_cask_appdir: /Applications homebrew_cask_apps: - chromedriver - docker - firefox - google-chrome - iterm2 - macvim - slack - spotify - visual-studio-code oh_my_zsh_path: ~/.oh-my-zsh macos_defaults: - domain: com.googlecode.iterm2 key: PrefsCustomFolder type: string value: "{{ playbook_dir }}/files/iterm2" - domain: com.googlecode.iterm2 key: LoadPrefsFromCustomFolder type: bool value: true
--- downloads: ~/.ansible-downloads/ homebrew_install_script: "{{ downloads }}/homebrew_install" homebrew_install_path: /usr/local/bin homebrew_packages: - autoconf - gcc - gettext - git - go - grep - htop - jq - node - nvm - python3 - readline - wget homebrew_cask_appdir: /Applications homebrew_cask_apps: - chromedriver - docker - firefox - google-chrome - iterm2 - macvim - slack - spotify - visual-studio-code oh_my_zsh_path: ~/.oh-my-zsh macos_defaults: - domain: com.googlecode.iterm2 key: PrefsCustomFolder type: string value: "{{ playbook_dir }}/files/iterm2" - domain: com.googlecode.iterm2 key: LoadPrefsFromCustomFolder type: bool value: true
Add pytest as dependency for testing
package: name: exdir version: {{ environ.get("GIT_TAG", "0.0.0_custom")|replace("v", "")|replace("-", "_") }} source: git_url: .. build: # noarch: python # TODO Add back noarch when it works properly on Windows, # we are converting packages manually now script: python setup.py install requirements: build: - python - setuptools - pip - numpy - quantities - pyyaml - pytest run: - python - setuptools - pip - numpy - scipy - quantities - pyyaml test: source_files: - tests imports: - exdir commands: - python -c "import exdir; print(exdir.__version__)" - pytest -s about: home: https://github.com/CINPLA/exdir/ license: MIT license_file: LICENSE
package: name: exdir version: {{ environ.get("GIT_TAG", "0.0.0_custom")|replace("v", "")|replace("-", "_") }} source: git_url: .. build: # noarch: python # TODO Add back noarch when it works properly on Windows, # we are converting packages manually now script: python setup.py install requirements: build: - python - setuptools - pip - numpy - quantities - pyyaml - pytest run: - python - setuptools - pip - numpy - scipy - quantities - pyyaml test: requires: - pytest source_files: - tests imports: - exdir commands: - python -c "import exdir; print(exdir.__version__)" - pytest -s about: home: https://github.com/CINPLA/exdir/ license: MIT license_file: LICENSE
Use latest Firefox on Travis
language: node_js sudo: required dist: trusty node_js: - "6" - "node"
language: node_js sudo: required dist: trusty node_js: - "6" - "node" addons: firefox: latest before_install: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" - sleep 3 # give xvfb some time to start
Update Chubby Click to v1.8.2 (14)
Categories: - Multimedia License: GPL-3.0-or-later WebSite: https://codeberg.org/agrigolo/chubby-click SourceCode: https://codeberg.org/agrigolo/chubby-click IssueTracker: https://codeberg.org/agrigolo/chubby-click/issues AutoName: Chubby Click RepoType: git Repo: https://codeberg.org/agrigolo/chubby-click.git Builds: - versionName: v1.3 versionCode: 6 commit: v1.3 subdir: app gradle: - yes - versionName: v1.5 versionCode: 9 commit: v1.5 subdir: app gradle: - yes - versionName: v1.6 versionCode: 10 commit: v1.6 subdir: app gradle: - yes - versionName: v1.7 versionCode: 11 commit: v1.7 subdir: app gradle: - yes - versionName: v1.8.1 versionCode: 13 commit: v1.8.1 subdir: app gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: v1.8.1 CurrentVersionCode: 13
Categories: - Multimedia License: GPL-3.0-or-later WebSite: https://codeberg.org/agrigolo/chubby-click SourceCode: https://codeberg.org/agrigolo/chubby-click IssueTracker: https://codeberg.org/agrigolo/chubby-click/issues AutoName: Chubby Click RepoType: git Repo: https://codeberg.org/agrigolo/chubby-click.git Builds: - versionName: v1.3 versionCode: 6 commit: v1.3 subdir: app gradle: - yes - versionName: v1.5 versionCode: 9 commit: v1.5 subdir: app gradle: - yes - versionName: v1.6 versionCode: 10 commit: v1.6 subdir: app gradle: - yes - versionName: v1.7 versionCode: 11 commit: v1.7 subdir: app gradle: - yes - versionName: v1.8.1 versionCode: 13 commit: v1.8.1 subdir: app gradle: - yes - versionName: v1.8.2 versionCode: 14 commit: v1.8.2 subdir: app gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: v1.8.2 CurrentVersionCode: 14
Add dry-view to View Objects
name: View Objects description: Framework agnostic gems that implement Decorator / View Object pattern. projects: - cells - hanami-view
name: View Objects description: Framework agnostic gems that implement Decorator / View Object pattern. projects: - cells - dry-view - hanami-view
Add android compatibility to Github action workflow
# See https://docs.github.com/en/actions/language-and-framework-guides/building-and-testing-java-with-maven name: ci on: [push] jobs: build: runs-on: ubuntu-latest strategy: matrix: java: [1.8, 11] steps: - name: Checkout sources uses: actions/checkout@v2 - name: Set up JDK uses: actions/setup-java@v1 with: java-version: ${{ matrix.java }} - name: Build run: mvn -B package javadoc:javadoc coverage: runs-on: ubuntu-latest steps: - name: Checkout sources uses: actions/checkout@v2 - name: Set up JDK uses: actions/setup-java@v1 with: java-version: 1.8 - name: Build with coverage run: mvn -B -Pcoverage clean test jacoco:report-aggregate - name: Publish coverage uses: codecov/codecov-action@v1
# See https://docs.github.com/en/actions/language-and-framework-guides/building-and-testing-java-with-maven name: ci on: [push] jobs: build: runs-on: ubuntu-latest strategy: matrix: java: [1.8, 11] steps: - name: Checkout sources uses: actions/checkout@v2 - name: Set up JDK uses: actions/setup-java@v1 with: java-version: ${{ matrix.java }} - name: Build run: mvn -B package javadoc:javadoc coverage: runs-on: ubuntu-latest steps: - name: Checkout sources uses: actions/checkout@v2 - name: Set up JDK uses: actions/setup-java@v1 with: java-version: 1.8 - name: Build with coverage run: mvn -B -Pcoverage clean test jacoco:report-aggregate - name: Publish coverage uses: codecov/codecov-action@v1 android-compatibility: runs-on: ubuntu-latest steps: - name: Checkout sources uses: actions/checkout@v2 - name: Set up JDK uses: actions/setup-java@v1 with: java-version: 1.8 - name: Android Lint checks run: cd commonmark-android-test && ./gradlew :app:lint
Fix complaints about jekyll-paginate not being in config
# Site settings title: Engineering @TelenorDigital description: A blog from the Telenor Digital engineers baseurl: "" url: github_username: comoyo website: "http://telenordigital.com/" websiteTitle: Telenor Digital image: #default image for all posts feature: sergi_jan.jpg #credit: dargadgetz #creditlink: http://www.dargadgetz.com/ios-7-abstract-wallpaper-pack-for-iphone-5-and-ipod-touch-retina/ gems: - jekyll-redirect-from - jekyll-sitemap sass: sass_dir: _sass style: compressed # Analytics and webmaster tools stuff goes here google_analytics: UA-63649251-1 google_verify: # https://ssl.bing.com/webmaster/configure/verify/ownership Option 2 content= goes here bing_verify: # http://en.wikipedia.org/wiki/List_of_tz_database_time_zones timezone: Europe/Oslo future: true pygments: true markdown: kramdown # Amount of posts to show on home page paginate: 5 owner: name: Telenor Digital bio: "Hacking like crazy in Oslo, Trondheim, Amsterdam and beyond" # Social networking links used in footer. Update and remove as you like. twitter: TelenorDigital facebook: telenordigital github: comoyo stackexchange: linkedin: telenor-digital
# Site settings title: Engineering @TelenorDigital description: A blog from the Telenor Digital engineers baseurl: "" url: github_username: comoyo website: "http://telenordigital.com/" websiteTitle: Telenor Digital image: #default image for all posts feature: sergi_jan.jpg #credit: dargadgetz #creditlink: http://www.dargadgetz.com/ios-7-abstract-wallpaper-pack-for-iphone-5-and-ipod-touch-retina/ gems: - jekyll-redirect-from - jekyll-sitemap - jekyll-paginate sass: sass_dir: _sass style: compressed # Analytics and webmaster tools stuff goes here google_analytics: UA-63649251-1 google_verify: # https://ssl.bing.com/webmaster/configure/verify/ownership Option 2 content= goes here bing_verify: # http://en.wikipedia.org/wiki/List_of_tz_database_time_zones timezone: Europe/Oslo future: true pygments: true markdown: kramdown # Amount of posts to show on home page paginate: 5 owner: name: Telenor Digital bio: "Hacking like crazy in Oslo, Trondheim, Amsterdam and beyond" # Social networking links used in footer. Update and remove as you like. twitter: TelenorDigital facebook: telenordigital github: comoyo stackexchange: linkedin: telenor-digital
Use pygments as highligher; not the native one
name: Nasjonal Turbase description: 'Dokumentasjon for Nasjonal Turbase' cdn: https://s3-eu-west-1.amazonaws.com/turistforeningen terms: https://docs.google.com/document/d/13aB_C9CGDYYUvfbVgSwjpHnzoUx2uR2NmeEvk7OGnZU/pub ga_id: UA-45821478-1 encoding: UTF-8 relative_permalinks: false permalink: /nyheter/:year/:month/:day/:title/ excerpt_separator: <!--more--> markdown: redcarpet highlighter: true timezone: NO safe: true gems: - jekyll-mentions - jemoji - jekyll-redirect-from - jekyll-sitemap
name: Nasjonal Turbase description: 'Dokumentasjon for Nasjonal Turbase' cdn: https://s3-eu-west-1.amazonaws.com/turistforeningen terms: https://docs.google.com/document/d/13aB_C9CGDYYUvfbVgSwjpHnzoUx2uR2NmeEvk7OGnZU/pub ga_id: UA-45821478-1 encoding: UTF-8 relative_permalinks: false permalink: /nyheter/:year/:month/:day/:title/ excerpt_separator: <!--more--> markdown: redcarpet highlighter: pygments timezone: NO safe: true gems: - jekyll-mentions - jemoji - jekyll-redirect-from - jekyll-sitemap
Add Tidelift as a way to support project financially
# These are supported funding model platforms open_collective: yiisoft github: [yiisoft]
# These are supported funding model platforms open_collective: yiisoft github: [yiisoft] tidelift: "packagist/yiisoft/yii2"
Use bundler cache for actions
name: Test and deploy on: - push - workflow_dispatch jobs: test_and_deploy: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up Ruby uses: ruby/setup-ruby@21351ecc0a7c196081abca5dc55b08f085efe09a with: ruby-version: 2.6.3 - name: Install dependencies run: bundle install - name: Pull worker run: bin/pull_worker.sh - name: Run tests run: bundle exec rake - name: Deploy if: ${{ startsWith(github.ref, 'refs/tags/v') }} run: | mkdir -p $HOME/.gem touch $HOME/.gem/credentials chmod 0600 $HOME/.gem/credentials printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials gem build *.gemspec gem push *.gem env: GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}"
name: Test and deploy on: - push - workflow_dispatch jobs: test_and_deploy: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up Ruby uses: ruby/setup-ruby@21351ecc0a7c196081abca5dc55b08f085efe09a with: ruby-version: 2.6.3 bundler: 2.1.4 bundler-cache: true - name: Pull worker run: bin/pull_worker.sh - name: Run tests run: bundle exec rake - name: Deploy if: ${{ startsWith(github.ref, 'refs/tags/v') }} run: | mkdir -p $HOME/.gem touch $HOME/.gem/credentials chmod 0600 $HOME/.gem/credentials printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials gem build *.gemspec gem push *.gem env: GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}"
Update plugin list, duplicate entry, maybe because of merge...
plugins: - name: add-to-any config: !include add-to-any/v1/config-plugin.yml - name: simple-sitemap config: !include simple-sitemap/v1/config-plugin.yml - name: tinymce-advanced config: !include tinymce-advanced/v1/config-plugin.yml - name: black-studio-tinymce-widget config: !include black-studio-tinymce-widget/v1/config-plugin.yml - name: akismet config: !include akismet/config-plugin.yml - name: hello config: !include hello/config-plugin.yml - name: mainwp-child config: !include mainwp-child/v1/plugin-config.yml - name: miniorange-saml-20-single-sign-on config: !include miniorange-saml-20-single-sign-on/v1/config-plugin.yml - name: mainwp-child config: !include mainwp-child/v1/config-plugin.yml
plugins: - name: add-to-any config: !include add-to-any/v1/config-plugin.yml - name: simple-sitemap config: !include simple-sitemap/v1/config-plugin.yml - name: tinymce-advanced config: !include tinymce-advanced/v1/config-plugin.yml - name: black-studio-tinymce-widget config: !include black-studio-tinymce-widget/v1/config-plugin.yml - name: akismet config: !include akismet/config-plugin.yml - name: hello config: !include hello/config-plugin.yml - name: miniorange-saml-20-single-sign-on config: !include miniorange-saml-20-single-sign-on/v1/config-plugin.yml - name: mainwp-child config: !include mainwp-child/v1/config-plugin.yml
Test with Ruby 3.0 on CI for now for prebuilt grpc
name: build on: [push, pull_request] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: ruby-version: 3.1 bundler-cache: true - run: bundle exec rake test
name: build on: [push, pull_request] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: ruby-version: "3.0" # for pre-built grpc bundler-cache: true - run: bundle exec rake test
Make CI sequence easier to follow
name: Tests on: push: branches: - master - ci pull_request: branches: - master jobs: test: runs-on: ${{ matrix.os }} strategy: max-parallel: 4 matrix: node-version: ["10", "12", "13"] os: [ubuntu-latest] steps: - uses: actions/checkout@v1 with: fetch-depth: 50 - name: Install EdgeDB env: OS_NAME: ${{ matrix.os }} SLOT: 1-alpha2 run: | .github/workflows/install-edgedb.sh - name: Set up Node ${{ matrix.node-version }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - name: Test run: | yarn yarn lint yarn test
name: Tests on: push: branches: - master - ci pull_request: branches: - master jobs: test: runs-on: ${{ matrix.os }} strategy: max-parallel: 4 matrix: node-version: ["10", "12", "13"] os: [ubuntu-latest] steps: - uses: actions/checkout@v1 with: fetch-depth: 50 - name: Set up Node ${{ matrix.node-version }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - name: Install dev deps run: | yarn install - name: Lint run: | yarn lint - name: Install EdgeDB env: OS_NAME: ${{ matrix.os }} SLOT: 1-alpha2 run: | .github/workflows/install-edgedb.sh - name: Run functional tests run: | yarn test
Add missing bind option to accept all connections
version: '2' services: api: container_name: doubtfire-api build: . command: bash -c "if [ -f /doubtfire-api/tmp/pids/server.pid ]; then rm /doubtfire-api/tmp/pids/server.pid; fi && rails server" ports: - "3000:3000" volumes: - ../doubtfire-api:/doubtfire-api links: - web depends_on: - db environment: DATABASE_URL: 'postgresql://itig:d872$$dh@db:5432/doubtfire_dev' RAILS_ENV: 'development' db: container_name: doubtfire-db image: postgres ports: - "5432:5432" environment: POSTGRES_PASSWORD: d872$$dh POSTGRES_USER: itig web: container_name: doubtfire-web build: ../doubtfire-web command: npm start environment: DOUBTFIRE_DOCKER_MACHINE_IP: $DOUBTFIRE_DOCKER_MACHINE_IP ports: - "8000:8000" - "8080:8080" volumes: - ../doubtfire-web:/doubtfire-web
version: '2' services: api: container_name: doubtfire-api build: . command: bash -c "if [ -f /doubtfire-api/tmp/pids/server.pid ]; then rm /doubtfire-api/tmp/pids/server.pid; fi && rails server -b 0.0.0.0" ports: - "3000:3000" volumes: - ../doubtfire-api:/doubtfire-api links: - web depends_on: - db environment: DATABASE_URL: 'postgresql://itig:d872$$dh@db:5432/doubtfire_dev' RAILS_ENV: 'development' db: container_name: doubtfire-db image: postgres ports: - "5432:5432" environment: POSTGRES_PASSWORD: d872$$dh POSTGRES_USER: itig web: container_name: doubtfire-web build: ../doubtfire-web command: npm start environment: DOUBTFIRE_DOCKER_MACHINE_IP: $DOUBTFIRE_DOCKER_MACHINE_IP ports: - "8000:8000" - "8080:8080" volumes: - ../doubtfire-web:/doubtfire-web
Remove ruby head from test matrix
name: CI on: [push, pull_request] jobs: test: name: >- Test (${{ matrix.gemfile }} ${{ matrix.ruby }}) runs-on: ubuntu-latest strategy: fail-fast: false matrix: gemfile: - gemfiles/rails_5.2.gemfile - gemfiles/rails_6.0.gemfile - Gemfile ruby: - 2.5 - 2.6 - 2.7 - 3.0 - jruby include: - ruby: 3.0 gemfile: gemfiles/rails_head.gemfile env: BUNDLE_GEMFILE: ${{ matrix.gemfile }} steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - run: bundle exec rake test rubocop: name: Rubocop runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: ruby-version: 3.0 bundler-cache: true - run: bundle exec rubocop --format github
name: CI on: [push, pull_request] jobs: test: name: >- Test (${{ matrix.gemfile }} ${{ matrix.ruby }}) runs-on: ubuntu-latest strategy: fail-fast: false matrix: gemfile: - gemfiles/rails_5.2.gemfile - gemfiles/rails_6.0.gemfile - Gemfile ruby: - 2.5 - 2.6 - 2.7 - 3.0 - jruby env: BUNDLE_GEMFILE: ${{ matrix.gemfile }} steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - run: bundle exec rake test rubocop: name: Rubocop runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: ruby-version: 3.0 bundler-cache: true - run: bundle exec rubocop --format github
Set haproxy 1.8 repo file permissions
--- - name: Install haproxy 1.8 yum repo copy: src=haproxy18.repo dest=/etc/yum.repos.d/ owner=root mode=0544 when: haproxy_18 - include: multiple-instances.yml when: haproxy_multi_instance is defined - include: single-instance.yml when: haproxy_multi_instance is not defined - name: disable health checks for development envs command: 'echo "disable health {{item.name}}" | socat /var/lib/haproxy/stats stdio' with_items: - "{{ haproxy_applications }}" when: develop
--- - name: Install haproxy 1.8 yum repo copy: src=haproxy18.repo dest=/etc/yum.repos.d/ owner=root mode=0644 when: haproxy_18 - include: multiple-instances.yml when: haproxy_multi_instance is defined - include: single-instance.yml when: haproxy_multi_instance is not defined - name: disable health checks for development envs command: 'echo "disable health {{item.name}}" | socat /var/lib/haproxy/stats stdio' with_items: - "{{ haproxy_applications }}" when: develop
Revert "172.17.0.1 doesn't work from within minishift, using the old 192.168.42.1 again"
apiVersion: mariadb.amazee.io/v1 kind: MariaDBProvider metadata: name: mariadbprovider-development spec: environment: development hostname: 192.168.42.1.xip.io readReplicaHostnames: - 192.168.42.1.xip.io password: password port: '3306' user: root --- apiVersion: mariadb.amazee.io/v1 kind: MariaDBProvider metadata: name: mariadbprovider-production spec: environment: production hostname: 192.168.42.1.xip.io readReplicaHostnames: - 192.168.42.1.xip.io password: password port: '3306' user: root
apiVersion: mariadb.amazee.io/v1 kind: MariaDBProvider metadata: name: mariadbprovider-development spec: environment: development hostname: 172.17.0.1.xip.io readReplicaHostnames: - 172.17.0.1.xip.io password: password port: '3306' user: root --- apiVersion: mariadb.amazee.io/v1 kind: MariaDBProvider metadata: name: mariadbprovider-production spec: environment: production hostname: 172.17.0.1.xip.io readReplicaHostnames: - 172.17.0.1.xip.io password: password port: '3306' user: root
Change location of store file. Default to verbose
udp_server: address: '127.0.0.1' port: 1234 tcp_client: host: '127.0.0.1' port: 4567 pass: "/green" fail: "/red" store: filename: "out/build_result.yml" mask: regex: ".*master.*" policy: "include"
udp_server: address: '127.0.0.1' port: 1234 tcp_client: host: '127.0.0.1' port: 4567 pass: "/green" fail: "/red" store: filename: "/tmp/build_result.yml" mask: regex: ".*master.*" policy: "include" verbose: true
Bump ridedott/merge-me-action from 2.9.56 to 2.9.58
name: Merge me test dependencies! on: workflow_run: types: - completed workflows: # List all required workflow names here. - 'Run tests' - 'MySQL tests' - 'PostgreSQL tests' - 'Test build package' - 'Run linters' jobs: merge-me: name: Merge me! runs-on: ubuntu-latest steps: - # It is often a desired behavior to merge only when a workflow execution # succeeds. This can be changed as needed. if: ${{ github.event.workflow_run.conclusion == 'success' }} name: Merge me! uses: ridedott/merge-me-action@v2.9.56 with: # Depending on branch protection rules, a manually populated # `GITHUB_TOKEN_WORKAROUND` secret with permissions to push to # a protected branch must be used. This secret can have an arbitrary # name, as an example, this repository uses `DOTTBOTT_TOKEN`. # # When using a custom token, it is recommended to leave the following # comment for other developers to be aware of the reasoning behind it: # # This must be used as GitHub Actions token does not support pushing # to protected branches. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} MERGE_METHOD: MERGE PRESET: DEPENDABOT_MINOR ENABLED_FOR_MANUAL_CHANGES: 'true'
name: Merge me test dependencies! on: workflow_run: types: - completed workflows: # List all required workflow names here. - 'Run tests' - 'MySQL tests' - 'PostgreSQL tests' - 'Test build package' - 'Run linters' jobs: merge-me: name: Merge me! runs-on: ubuntu-latest steps: - # It is often a desired behavior to merge only when a workflow execution # succeeds. This can be changed as needed. if: ${{ github.event.workflow_run.conclusion == 'success' }} name: Merge me! uses: ridedott/merge-me-action@v2.9.58 with: # Depending on branch protection rules, a manually populated # `GITHUB_TOKEN_WORKAROUND` secret with permissions to push to # a protected branch must be used. This secret can have an arbitrary # name, as an example, this repository uses `DOTTBOTT_TOKEN`. # # When using a custom token, it is recommended to leave the following # comment for other developers to be aware of the reasoning behind it: # # This must be used as GitHub Actions token does not support pushing # to protected branches. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} MERGE_METHOD: MERGE PRESET: DEPENDABOT_MINOR ENABLED_FOR_MANUAL_CHANGES: 'true'
Switch docker image to Arm
web: image: node:onbuild volumes: - .:/usr/src/app ports: - "5000:5000"
web: # For x86: #image: node:onbuild # For Arm / Raspberry: hypriot/rpi-node:onbuild volumes: - .:/usr/src/app ports: - "5000:5000"
Fix CI for bundler v2
language: ruby sudo: required services: - docker rvm: - 2.5 env: - IMAGE=centos:6 - IMAGE=centos:7 - IMAGE=debian:wheezy - IMAGE=debian:jessie - IMAGE=debian:stretch bundler_args: "--jobs=4" cache: bundler before_install: - gem update --system --no-document - gem install bundler --no-document script: - bundle exec itamae docker --node-yaml=spec/node.yml spec/recipes/bootstrap.rb --image=$IMAGE --tag local:latest - DOCKER_IMAGE=local:latest bundle exec rspec branches: only: - master notifications: email: false slack: secure: AP3A/R0LPAJ4es8RYbS3/uOYOvA1Sfx6NrMDBtHkmok+30XnC5m06t764OnnVTwql+v94vPLcUznoSn9NA/pLi/+0HRMn6be+ykhHhc3w3BYez5htAUrP73K4dEOABCNAXgFjOuZ3UC+BhibjOx6wj1TWJHFNsdZ1RBsOjzjNhU=
language: ruby sudo: required services: - docker rvm: - 2.5 env: - IMAGE=centos:6 - IMAGE=centos:7 - IMAGE=debian:wheezy - IMAGE=debian:jessie - IMAGE=debian:stretch bundler_args: "--jobs=4" cache: bundler before_install: - travis_retry gem update --system || travis_retry gem update --system 2.7.8 - travis_retry gem install bundler --no-document || travis_retry gem install bundler --no-document -v 1.17.3 script: - bundle exec itamae docker --node-yaml=spec/node.yml spec/recipes/bootstrap.rb --image=$IMAGE --tag local:latest - DOCKER_IMAGE=local:latest bundle exec rspec branches: only: - master notifications: email: false slack: secure: AP3A/R0LPAJ4es8RYbS3/uOYOvA1Sfx6NrMDBtHkmok+30XnC5m06t764OnnVTwql+v94vPLcUznoSn9NA/pLi/+0HRMn6be+ykhHhc3w3BYez5htAUrP73K4dEOABCNAXgFjOuZ3UC+BhibjOx6wj1TWJHFNsdZ1RBsOjzjNhU=
Switch to Ubuntu Focal to get Python 3 scons
sudo: false language: python dist: xenial python: - 2.7 - 3.6 - 3.7 - 3.8 addons: apt: packages: - scons - libdbi-perl 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 - 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 Test::MockModule 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 && touch $PYTHONPATH/saliweb/frontend/config.py) script: - scons coverage=true python=$(which python) test after_success: - bash <(curl -s https://codecov.io/bash) - cover -report codecov
sudo: false language: python dist: focal python: - 3.6 - 3.7 - 3.8 addons: apt: packages: - scons - libdbi-perl 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 - 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 Test::MockModule 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 && touch $PYTHONPATH/saliweb/frontend/config.py) script: - scons coverage=true python=$(which python) test after_success: - bash <(curl -s https://codecov.io/bash) - cover -report codecov
Print Gradle warnings in the build log.
language: java install: true before_install: - chmod +x gradlew - sudo apt-get -y install at-spi2-core jdk: openjdk11 git: depth: false addons: sonarcloud: organization: "gurkenlabs-github" services: - xvfb script: - ./gradlew fullbuild - if [ $TRAVIS_PULL_REQUEST = 'false' ]; then sonar-scanner; fi cache: directories: - '$HOME/.m2/repository' - '$HOME/.sonar/cache' - '$HOME/.gradle/caches/' - '$HOME/.gradle/wrapper/'
language: java install: true before_install: - chmod +x gradlew - sudo apt-get -y install at-spi2-core jdk: openjdk11 git: depth: false addons: sonarcloud: organization: "gurkenlabs-github" services: - xvfb script: - ./gradlew fullbuild --warning-mode all - if [ $TRAVIS_PULL_REQUEST = 'false' ]; then sonar-scanner; fi cache: directories: - '$HOME/.m2/repository' - '$HOME/.sonar/cache' - '$HOME/.gradle/caches/' - '$HOME/.gradle/wrapper/'
Revert "tweak command logic for checking for php-cs-fixer output. If more than 2 lines, exit with non 0 status code."
language: php php: - 5.4 - 5.5 - 5.6 - 7 - hhvm matrix: allow_failures: - php: 7 - php: hhvm before_install: - wget http://get.sensiolabs.org/php-cs-fixer.phar before_script: - composer self-update - composer install --dev - mkdir -p build/cov - mkdir -p build/logs script: - ./vendor/bin/phpunit --coverage-clover build/cov/clover.xml - output=$(php php-cs-fixer.phar fix -v --dry-run); i=0; if [[ $output ]]; then while read -r line; do i=$((i+1)); done <<< "$output"; if [ $i -gt 2 ]; then exit 42; fi; false; fi; after_script: - ./vendor/bin/coveralls -v - CODECLIMATE_REPO_TOKEN=8c4056b715faa506631045ecbc23b1d92f8a04ab8d9ee39b43110afeaa232328 ./vendor/bin/test-reporter --coverage-report=build/cov/clover.xml
language: php php: - 5.4 - 5.5 - 5.6 - 7 - hhvm matrix: allow_failures: - php: 7 - php: hhvm before_install: - wget http://get.sensiolabs.org/php-cs-fixer.phar before_script: - composer self-update - composer install --dev - mkdir -p build/cov - mkdir -p build/logs script: - ./vendor/bin/phpunit --coverage-clover build/cov/clover.xml - output=$(php php-cs-fixer.phar fix -v --dry-run); if [[ $output ]]; then while read -r line; do echo -e "$line"; done <<< "$output"; false; fi; after_script: - ./vendor/bin/coveralls -v - CODECLIMATE_REPO_TOKEN=8c4056b715faa506631045ecbc23b1d92f8a04ab8d9ee39b43110afeaa232328 ./vendor/bin/test-reporter --coverage-report=build/cov/clover.xml
Remove use mirrors from pip
language: python python: - "2.7" - "3.4" - "3.5" env: matrix: - DJANGO_VERSION=">=1.5,<1.6" - DJANGO_VERSION=">=1.6,<1.7" - DJANGO_VERSION=">=1.7,<1.8" - DJANGO_VERSION=">=1.8,<1.9" install: pip install -r requirements_test.txt Django$DJANGO_VERSION python-binary-memcached --use-mirrors script: ./.travis-runs-tests.sh
language: python python: - "2.7" - "3.4" - "3.5" env: matrix: - DJANGO_VERSION=">=1.5,<1.6" - DJANGO_VERSION=">=1.6,<1.7" - DJANGO_VERSION=">=1.7,<1.8" - DJANGO_VERSION=">=1.8,<1.9" install: pip install -r requirements_test.txt Django$DJANGO_VERSION python-binary-memcached script: ./.travis-runs-tests.sh
FIX Remove comment in smallfiles and build.
# Note that mongo container is started before Orion, as Orion needs it # as dependency and reserve the order has been found problematic in some # low resource hosts # Uncomment the --smallfiles line if you host doesn't have too much free space mongo: image: mongo:2.6 #command: --smallfiles orion: build: . links: - mongo ports: - "1026:1026" command: -dbhost mongo
# Note that mongo container is started before Orion, as Orion needs it # as dependency and reserve the order has been found problematic in some # low resource hosts mongo: image: mongo:2.6 command: --smallfiles --nojournal orion: image: fiware/orion links: - mongo ports: - "1026:1026" command: -dbhost mongo
Disable testing with Node 0.8
language: node_js before_install: "npm install -g npm" node_js: - "0.8" - "0.10" - "0.11"
language: node_js before_install: "npm install -g npm" node_js: - "0.10" - "0.11"
Reduce CPU request for kopeio vxlan
apiVersion: extensions/v1beta1 kind: DaemonSet metadata: name: kopeio-networking-agent namespace: kube-system labels: k8s-addon: networking.addons.k8s.io spec: template: metadata: labels: name: kopeio-networking-agent spec: hostPID: true hostIPC: true hostNetwork: true containers: - resources: requests: cpu: 0.20 securityContext: privileged: true image: kopeio/networking-agent:1.0.20161116 name: networking-agent volumeMounts: - name: lib-modules mountPath: /lib/modules readOnly: true volumes: - name: lib-modules hostPath: path: /lib/modules
apiVersion: extensions/v1beta1 kind: DaemonSet metadata: name: kopeio-networking-agent namespace: kube-system labels: k8s-addon: networking.addons.k8s.io spec: template: metadata: labels: name: kopeio-networking-agent spec: hostPID: true hostIPC: true hostNetwork: true containers: - resources: requests: cpu: 20m securityContext: privileged: true image: kopeio/networking-agent:1.0.20161116 name: networking-agent volumeMounts: - name: lib-modules mountPath: /lib/modules readOnly: true volumes: - name: lib-modules hostPath: path: /lib/modules
Update from Hackage at 2018-03-09T10:47:54Z
homepage: https://github.com/peti/distribution-nixpkgs#readme changelog-type: '' hash: c59fafc52c45cd5d8f72ec98123806c80b82f4e52fc0a9c03b8e481570a0b795 test-bench-deps: base: -any hspec: -any doctest: -any lens: -any distribution-nixpkgs: -any deepseq: -any maintainer: Peter Simons <simons@cryp.to> synopsis: Types and functions to manipulate the Nixpkgs distribution changelog: '' basic-deps: bytestring: -any split: -any Cabal: ! '>1.24' base: ! '>4.2 && <5' language-nix: ! '>2' process: -any containers: -any lens: -any deepseq: ! '>=1.4' pretty: ! '>=1.1.2' aeson: -any all-versions: - '1' - '1.0.0.1' - '1.1' author: '' latest: '1.1' description-type: haddock description: Types and functions to represent, query, and manipulate the Nixpkgs distribution. license-name: BSD3
homepage: https://github.com/peti/distribution-nixpkgs#readme changelog-type: '' hash: 5bb5036828f7353f1ff340795bf3be9a33f3847683638d055e03239f018668cf test-bench-deps: base: -any hspec: -any lens: -any distribution-nixpkgs: -any deepseq: -any maintainer: Peter Simons <simons@cryp.to> synopsis: Types and functions to manipulate the Nixpkgs distribution changelog: '' basic-deps: bytestring: -any split: -any Cabal: ! '>2.2' base: ! '>4.2 && <5' language-nix: ! '>2' process: -any containers: -any lens: -any deepseq: ! '>=1.4' pretty: ! '>=1.1.2' aeson: -any all-versions: - '1' - '1.0.0.1' - '1.1' - '1.1.1' author: '' latest: '1.1.1' description-type: haddock description: Types and functions to represent, query, and manipulate the Nixpkgs distribution. license-name: BSD3
Allow node 11 to fail.
language: node_js node_js: - '8' - '10' - 'node' before_script: - curl -o- -L https://yarnpkg.com/install.sh | bash - export PATH=$HOME/.yarn/bin:$PATH - yarn install --frozen-lockfile # Workspaces only - yarn run build script: yarn test notifications: email: false cache: yarn: true
language: node_js node_js: - '8' - '10' - 'node' matrix: allow_failures: # Different snapshot output - node_js: 'node' before_script: - curl -o- -L https://yarnpkg.com/install.sh | bash - export PATH=$HOME/.yarn/bin:$PATH - yarn install --frozen-lockfile # Workspaces only - yarn run build script: yarn test notifications: email: false cache: yarn: true
Add REUSE lint to Travis
# SPDX-FileCopyrightText: 2014, microg Project Team # SPDX-License-Identifier: CC0-1.0 language: android sudo: false before_script: - echo sdk.dir $ANDROID_HOME > local.properties script: - jdk_switcher use oraclejdk8 - export TERM=dumb - export JAVA_OPTS="-XX:+CMSClassUnloadingEnabled -XX:+HeapDumpOnOutOfMemoryError -Xmx2048m" - ./gradlew build android: components: - tools - platform-tools - build-tools-29.0.3 - android-29 - extra-android-m2repository
# SPDX-FileCopyrightText: 2014, microg Project Team # SPDX-License-Identifier: CC0-1.0 jobs: include: - name: "Build" language: android android: components: - tools - build-tools-29.0.3 - android-29 script: - export JAVA_OPTS="-XX:+CMSClassUnloadingEnabled -XX:+HeapDumpOnOutOfMemoryError -Xmx2048m" - export TERM=dumb - echo sdk.dir $ANDROID_HOME > local.properties - jdk_switcher use oraclejdk8 - ./gradlew build - name: "REUSE lint" language: minimal script: - docker pull fsfe/reuse:latest - docker run -v ${TRAVIS_BUILD_DIR}:/data fsfe/reuse:latest lint
Use --location to support redirect
language: c compiler: - gcc - clang notifications: recipients: - kenhys@gmail.com branches: only: - master - develop env: - USE_WEBKITGTK=yes - USE_GTKHTML=yes - USE_WEBKITGTK=yes USE_DEBUG=yes - USE_GTKHTML=yes USE_DEBUG=yes before_script: - curl https://raw.github.com/kenhys/sylpheed-plugin-factory/master/misc/setup-travis.sh | sh - git submodule update --init --recursive - ./autogen.sh script: - curl https://raw.github.com/kenhys/sylpheed-plugin-factory/master/misc/configure.sh | sh - make
language: c compiler: - gcc - clang notifications: recipients: - kenhys@gmail.com branches: only: - master - develop env: - USE_WEBKITGTK=yes - USE_GTKHTML=yes - USE_WEBKITGTK=yes USE_DEBUG=yes - USE_GTKHTML=yes USE_DEBUG=yes before_script: - curl --location https://raw.github.com/kenhys/sylpheed-plugin-factory/master/misc/setup-travis.sh | sh - git submodule update --init --recursive - ./autogen.sh script: - curl https://raw.github.com/kenhys/sylpheed-plugin-factory/master/misc/configure.sh | sh - make
Add external dependencies (waiting maven native plugin release)
language: java
language: java addons: apt: sources: - george-edison55-precise-backports - ubuntu-toolchain-r-test packages: - cmake - cmake-data - gcc-mingw-w64-base - binutils-mingw-w64-x86-64 - gcc-mingw-w64-x86-64 - gcc-mingw-w64 - libc6-dev-i386
Install dev deps to deploy
language: node_js node_js: - "8" - "9" - "10" dist: trusty addons: chrome: stable deploy: - provider: npm api_key: $NPM_TOKEN on: tags: true repo: Cox-Automotive/alks.js email: $NPM_EMAIL
language: node_js node_js: - "8" - "9" - "10" dist: trusty addons: chrome: stable before_deploy: - npm install deploy: - provider: npm api_key: $NPM_TOKEN on: tags: true repo: Cox-Automotive/alks.js email: $NPM_EMAIL
Update actions/checkout action to v3
on: [push, pull_request] name: Ansible Lint jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Lint Ansible Playbook uses: ansible/ansible-lint-action@main
on: [push, pull_request] name: Ansible Lint jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Lint Ansible Playbook uses: ansible/ansible-lint-action@main
Add PHP 5.6 as a testing environment on Travis CI.
language: php php: - 5.3 - 5.4 - 5.5 services: - redis-server env: global: - TEST_PHP_ARGS=-q install: - | git clone https://github.com/redis/hiredis.git \ && pushd hiredis \ && make \ && sudo make install \ && popd script: - phpize - ./configure --enable-phpiredis - make - make test
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 services: - redis-server env: global: - TEST_PHP_ARGS=-q install: - | git clone https://github.com/redis/hiredis.git \ && pushd hiredis \ && make \ && sudo make install \ && popd script: - phpize - ./configure --enable-phpiredis - make - make test