Instruction
stringlengths
14
778
input_code
stringlengths
0
4.24k
output_code
stringlengths
1
5.44k
Add CentOS 7, Debian 6.0.10 and Debian 7.7 to Test Kitchen
driver: name: vagrant provisioner: name: chef_zero platforms: - name: centos-5.10 - name: centos-6.5 - name: fedora-19 - name: fedora-20 - name: ubuntu-12.04 - name: ubuntu-14.04 suites: - name: default run_list: - recipe[rsyslog::default] - name: relp run_list: - recipe[rsyslog::default] attributes: rsyslog: use_relp: true # CentOS and OmniOS do not support relp excludes: - centos-5.8 - omnios-r151006c - name: client run_list: - recipe[rsyslog::client] attributes: rsyslog: server_ip: 10.0.0.50 - name: server run_list: - recipe[rsyslog::server]
driver: name: vagrant provisioner: name: chef_zero platforms: - name: centos-5.10 - name: centos-6.5 - name: centos-7.0 - name: debian-6.0.10 - name: debian-7.7 - name: fedora-19 - name: fedora-20 - name: ubuntu-12.04 - name: ubuntu-14.04 suites: - name: default run_list: - recipe[rsyslog::default] - name: relp run_list: - recipe[rsyslog::default] attributes: rsyslog: use_relp: true # CentOS and OmniOS do not support relp excludes: - centos-5.8 - omnios-r151006c - name: client run_list: - recipe[rsyslog::client] attributes: rsyslog: server_ip: 10.0.0.50 - name: server run_list: - recipe[rsyslog::server]
Stop aligning assignments and enforcing it in our style guides
preset: recommended risky: false linting: true enabled: - not_operator_with_successor_space - no_short_echo_tag - align_equals disabled: - ordered_imports - phpdoc_no_package - unalign_equals
preset: recommended risky: false linting: true enabled: - not_operator_with_successor_space - no_short_echo_tag disabled: - ordered_imports - phpdoc_no_package
Move Pypi publisher to release side...
steps: - script: | pip install robotframework pip install pythonnet displayName: Install needed compoments from PyPi - task: NuGetCommand@2 - task: VSBuild@1 - script: | run_tests.cmd --exclude no_ci --xunit xunit.xml continueOnError: true displayName: Execute Acceptance tests - task: PublishTestResults@2 inputs: testRunner: JUnit testResultsFiles: output/xunit.xml - task: PublishBuildArtifacts@1 displayName: Publish Robot Framework logs and results inputs: PathtoPublish: output ArtifactType: container TargetPath: "" ArtifactName: Robot Test results - task: PublishBuildArtifacts@1 displayName: Publish whitelibrary inputs: ArtifactType: container TargetPath: "" ArtifactName: WhiteLibrary - task: PyPIPublisher@0 inputs: pypiConnection: 'TestPypi' packageDirectory: PythonWhiteLibrary
steps: - script: | pip install robotframework pip install pythonnet displayName: Install needed compoments from PyPi - task: NuGetCommand@2 - task: VSBuild@1 - script: | run_tests.cmd --exclude no_ci --xunit xunit.xml continueOnError: true displayName: Execute Acceptance tests - task: PublishTestResults@2 inputs: testRunner: JUnit testResultsFiles: output/xunit.xml - task: PublishBuildArtifacts@1 displayName: Publish Robot Framework logs and results inputs: PathtoPublish: output ArtifactType: container TargetPath: "" ArtifactName: Robot Test results - task: PublishBuildArtifacts@1 displayName: Publish whitelibrary inputs: ArtifactType: container TargetPath: "" ArtifactName: WhiteLibrary
Update centos test setup to use yum::epel
driver_plugin: vagrant driver_config: require_chef_omnibus: true customize: memory: 2048 platforms: - name: ubuntu-10.04 run_list: - recipe[apt] - name: ubuntu-12.04 run_list: - recipe[apt] - name: centos-5.11 - name: centos-6.4 suites: - name: package run_list: - recipe[tmux::default] attributes: tmux: install_method: package - name: source run_list: - recipe[tmux::default] attributes: tmux: install_method: source
driver_plugin: vagrant driver_config: require_chef_omnibus: true customize: memory: 2048 platforms: - name: ubuntu-10.04 run_list: - recipe[apt] - name: ubuntu-12.04 run_list: - recipe[apt] - name: centos-5.11 run_list: - recipe[yum::epel] - name: centos-6.4 run_list: - recipe[yum::epel] suites: - name: package run_list: - recipe[tmux::default] attributes: tmux: install_method: package - name: source run_list: - recipe[tmux::default] attributes: tmux: install_method: source
Add missing android SDK set up step
name: Continuous Integration on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: macos-10.15 steps: - uses: actions/checkout@v2 - name: Set up JDK 1.8 uses: actions/setup-java@v1 with: java-version: 1.8 - name: Grant execute permission for gradlew run: chmod +x gradlew - name: Build with Gradle uses: malinskiy/action-android/emulator-run-cmd@release/0.0.7 with: cmd: ./gradlew build api: 21 tag: default abi: x86
name: Continuous Integration on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: macos-10.15 steps: - uses: actions/checkout@v2 - name: Set up JDK 1.8 uses: actions/setup-java@v1 with: java-version: 1.8 - name: Set up Android SDK uses: malinskiy/action-android/install-sdk@release/0.0.7 - name: Grant execute permission for gradlew run: chmod +x gradlew - name: Build with Gradle uses: malinskiy/action-android/emulator-run-cmd@release/0.0.7 with: cmd: ./gradlew build api: 21 tag: default abi: x86
Remove branch from the version in AppVeyor 💥
# http://www.appveyor.com/docs/appveyor-yml version: "{build}-{branch}" environment: matrix: - nodejs_version: "6.2.0" install: # Update Node to the specified version - ps: Install-Product node $env:nodejs_version # Install dependencies - npm install test_script: - npm test # Disable automatic builds build: off matrix: # Immediately finish build once one of the jobs fails. fast_finish: true
# http://www.appveyor.com/docs/appveyor-yml version: "{build}" environment: matrix: - nodejs_version: "6.2.0" install: # Update Node to the specified version - ps: Install-Product node $env:nodejs_version # Install dependencies - npm install test_script: - npm test # Disable automatic builds build: off matrix: # Immediately finish build once one of the jobs fails. fast_finish: true
Add a 'gate' for config repository
- job: name: config builders: - gerrit-git-prep - shell: | mkdir build jenkins-jobs test jobs/ -o build/ jenkins-jobs update --delete-old jobs/ triggers: - gerrit: trigger-on-change-merged-event: true projects: - project-compare-type: 'PLAIN' project-pattern: 'config' branch-compare-type: 'ANT' branch-pattern: '**'
- job: name: config-update builders: - gerrit-git-prep - shell: | mkdir build jenkins-jobs test jobs/ -o build/ jenkins-jobs update --delete-old jobs/ triggers: - gerrit: trigger-on-change-merged-event: true projects: - project-compare-type: 'PLAIN' project-pattern: 'config' branch-compare-type: 'ANT' branch-pattern: '**' - job: name: config-check builders: - gerrit-git-prep - shell: | mkdir build jenkins-jobs test jobs/ -o build/ triggers: - gerrit: trigger-on-change-created-event: true projects: - project-compare-type: 'PLAIN' project-pattern: 'config' branch-compare-type: 'ANT' branch-pattern: '**'
Remove record flag from kubectl command
# Docker image # Build a Docker image to deploy, run, or push to a container registry. # Add steps that use Docker Compose, tag images, push to a registry, run an image, and more: # https://docs.microsoft.com/azure/devops/pipelines/languages/docker pool: vmImage: 'ubuntu-latest' variables: tagName: '$(Build.BuildNumber)' repoName: 'sparktodo-api' stableImageName: '$(dockerId)/$(repoName):stable' latestImageName: '$(dockerId)/$(repoName):latest' branchImageName: '$(dockerId)/$(repoName):$(Build.SourceBranchName)' imageName: '$(dockerId)/$(repoName):$(tagName)' steps: - task: UseDotNet@2 displayName: 'Use .NET Core sdk' inputs: packageType: sdk version: 6.0.x includePreviewVersions: true # Required for preview versions - script: dotnet build -c Release displayName: 'dotnet build' - script: docker build -f Dockerfile -t $(imageName) -t $(latestImageName) . displayName: 'Docker build Script' - script: | docker login -u $(dockerId) -p $(pswd) docker push $(imageName) docker push $(latestImageName) displayName: 'Push docker image' - task: SSH@0 displayName: 'Run shell inline on remote machine' inputs: sshEndpoint: 'weihanli-vm' runOptions: inline inline: | kubectl set image deployment/sparktodo-api sparktodo-api=$(imageName) --record=true
# Docker image # Build a Docker image to deploy, run, or push to a container registry. # Add steps that use Docker Compose, tag images, push to a registry, run an image, and more: # https://docs.microsoft.com/azure/devops/pipelines/languages/docker pool: vmImage: 'ubuntu-latest' variables: tagName: '$(Build.BuildNumber)' repoName: 'sparktodo-api' stableImageName: '$(dockerId)/$(repoName):stable' latestImageName: '$(dockerId)/$(repoName):latest' branchImageName: '$(dockerId)/$(repoName):$(Build.SourceBranchName)' imageName: '$(dockerId)/$(repoName):$(tagName)' steps: - task: UseDotNet@2 displayName: 'Use .NET Core sdk' inputs: packageType: sdk version: 6.0.x includePreviewVersions: true # Required for preview versions - script: dotnet build -c Release displayName: 'dotnet build' - script: docker build -f Dockerfile -t $(imageName) -t $(latestImageName) . displayName: 'Docker build Script' - script: | docker login -u $(dockerId) -p $(pswd) docker push $(imageName) docker push $(latestImageName) displayName: 'Push docker image' - task: SSH@0 displayName: 'Run shell inline on remote machine' inputs: sshEndpoint: 'weihanli-vm' runOptions: inline inline: | kubectl set image deployment/sparktodo-api sparktodo-api=$(imageName)
Remove old allow failures builds, not needed
# In order to install old Rubies, we need to use old Ubuntu distibution. dist: trusty language: ruby email: false cache: directories: - ../bundle before_install: - "script/update_rubygems_and_install_bundler" - unset _JAVA_OPTIONS - "script/clone_all_rspec_repos" bundler_args: "--binstubs --standalone --without documentation --path ../bundle" script: "script/run_build" rvm: - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - ree - rbx-3 - jruby-head - jruby-1.7 env: - JRUBY_OPTS='--dev' matrix: include: - rvm: jruby-1.7 env: JRUBY_OPTS='--dev --1.8' allow_failures: - rvm: jruby-head - rvm: ruby-head - rvm: rbx-3 fast_finish: true branches: only: - main - /^\d+-\d+-maintenance$/ - /^\d+-\d+-dev$/
# In order to install old Rubies, we need to use old Ubuntu distibution. dist: trusty language: ruby email: false cache: directories: - ../bundle before_install: - "script/update_rubygems_and_install_bundler" - unset _JAVA_OPTIONS - "script/clone_all_rspec_repos" bundler_args: "--binstubs --standalone --without documentation --path ../bundle" script: "script/run_build" rvm: - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - ree - jruby-1.7 env: - JRUBY_OPTS='--dev' matrix: include: - rvm: jruby-1.7 env: JRUBY_OPTS='--dev --1.8' fast_finish: true branches: only: - main - /^\d+-\d+-maintenance$/ - /^\d+-\d+-dev$/
Deploy builds of master to MyGet
branches: except: - /travis-.*/ install: ps: | Import-Module '.\appveyor-tool.ps1' Bootstrap build_script: - ps: .\build.ps1 -Target "Appveyor" artifacts: - path: package\*.nupkg # - path: package\*.msi # AppVeyor defaults to just its build number version: '{build}' # disable built-in tests. test: off
branches: except: - /travis-.*/ install: ps: | Import-Module '.\appveyor-tool.ps1' Bootstrap build_script: - ps: .\build.ps1 -Target "Appveyor" # disable built-in tests. test: off artifacts: - path: package\*.nupkg # - path: package\*.msi deploy: - provider: NuGet server: https://www.myget.org/F/nunit/api/v2 api_key: secure: wtAvJDVl2tfwiVcyLExFHLvZVfUWiQRHsfdHBFCNEATeCHo1Nd8JP642PfY8xhji skip_symbols: true on: branch: master
Use official AppVeyor builder w/ Docker
version: 1.0.{build} image: Windows Server 2016 environment: DOCKER_USER: secure: LjNiW/ZWrfVIJn3Mc9foeg== DOCKER_PASS: secure: 4gsl5WiqIztEWhL5fuhp9X0qT/mKg9fYzKYUUPf5WStIuNddv0fvIKGmvvyuFzzd install: - docker version build_script: - ps: .\build.ps1 test_script: - ps: .\test.ps1 deploy_script: - ps: .\deploy.ps1
version: 1.0.{build} image: Visual Studio 2017 environment: DOCKER_USER: secure: LjNiW/ZWrfVIJn3Mc9foeg== DOCKER_PASS: secure: 4gsl5WiqIztEWhL5fuhp9X0qT/mKg9fYzKYUUPf5WStIuNddv0fvIKGmvvyuFzzd install: - docker version build_script: - ps: .\build.ps1 test_script: - ps: .\test.ps1 deploy_script: - ps: .\deploy.ps1
Replace regex with artifact name
version: 1.0.0.{build} os: Visual Studio 2015 configuration: Release platform: Any CPU assembly_info: patch: true file: AssemblyInfo.* assembly_version: '{version}' assembly_file_version: '{version}' assembly_informational_version: '{version}-$(APPVEYOR_REPO_COMMIT)' before_build: - ps: nuget restore build: project: Tabster.Printing.sln after_test: - ps: >- .\nuget_pack.ps1 artifacts: - path: '*.nupkg' name: nuget_package deploy: provider: NuGet api_key: secure: QzhmxS67d/XC1o4iPuKUv4+m4DxLtf5xXivDgokPK3kkMRP586YrbNDWZIPF09+R skip_symbols: false artifact: /.*\.nupkg/ on: branch: master
version: 1.0.0.{build} os: Visual Studio 2015 configuration: Release platform: Any CPU assembly_info: patch: true file: AssemblyInfo.* assembly_version: '{version}' assembly_file_version: '{version}' assembly_informational_version: '{version}-$(APPVEYOR_REPO_COMMIT)' before_build: - ps: nuget restore build: project: Tabster.Printing.sln after_test: - ps: >- .\nuget_pack.ps1 artifacts: - path: '*.nupkg' name: nuget_package deploy: provider: NuGet api_key: secure: QzhmxS67d/XC1o4iPuKUv4+m4DxLtf5xXivDgokPK3kkMRP586YrbNDWZIPF09+R skip_symbols: false artifact: nuget_package on: branch: master
Fix Appveyor build string format
version: {build} build: false environment: matrix: - PYTHON: "C:\\Python26" - PYTHON: "C:\\Python27" - PYTHON: "C:\\Python33" - PYTHON: "C:\\Python34" - PYTHON: "C:\\Python35" init: - "ECHO %PYTHON%" - ps: "ls C:/Python*" install: - "%PYTHON%/Scripts/pip.exe install -e ." - "%PYTHON%/Scripts/pip.exe install -r requirements-test.txt" test_script: - "%PYTHON%/Scripts/pip.exe --version" - "%PYTHON%/Scripts/http.exe --debug" - "%PYTHON%/Scripts/py.test.exe"
version: "#{build}" build: false environment: matrix: - PYTHON: "C:\\Python26" - PYTHON: "C:\\Python27" - PYTHON: "C:\\Python33" - PYTHON: "C:\\Python34" - PYTHON: "C:\\Python35" init: - "ECHO %PYTHON%" - ps: "ls C:/Python*" install: - "%PYTHON%/Scripts/pip.exe install -e ." - "%PYTHON%/Scripts/pip.exe install -r requirements-test.txt" test_script: - "%PYTHON%/Scripts/pip.exe --version" - "%PYTHON%/Scripts/http.exe --debug" - "%PYTHON%/Scripts/py.test.exe"
Remove k8s liveness probe (k8s says it is failing)
fullnameOverride: "web" replicaCount: 3 service: port: 3000 containers: - name: web image: cyberdojo/web securityContext: runAsUser: 65534 # nobody fsGroup: 65534 # nobody allowPrivilegeEscalation: false resources: requests: cpu: 100m memory: 128Mi limits: cpu: 200m memory: 256Mi livenessProbe: path: /alive? port: 3000 #readinessProbe: # path: /ready? # port: 3000 envFromSecret: {} nodeSelector: {} affinity: {} tolerations: []
fullnameOverride: "web" replicaCount: 3 service: port: 3000 containers: - name: web image: cyberdojo/web securityContext: runAsUser: 65534 # nobody fsGroup: 65534 # nobody allowPrivilegeEscalation: false resources: requests: cpu: 100m memory: 128Mi limits: cpu: 200m memory: 256Mi #livenessProbe: # path: /alive? # port: 3000 #readinessProbe: # path: /ready? # port: 3000 envFromSecret: {} nodeSelector: {} affinity: {} tolerations: []
Update from Hackage at 2015-08-22T10:18:25+0000
homepage: http://www.fpcomplete.com/user/agocorona changelog-type: '' hash: 6d5c85cce22d9e02bec25aa662fddc518691b80e3fe93649eea9c72420ca9795 test-bench-deps: {} maintainer: agocorona@gmail.com synopsis: A monad for extensible effects and primitives for unrestricted composability of applications changelog: '' basic-deps: stm: -any base: ! '>4 && <5' filepath: -any process: -any network: -any containers: -any transient: -any mtl: -any network-info: -any HTTP: -any transformers: -any random: -any directory: -any all-versions: - '0.1.0.0' - '0.1.0.1' author: Alberto G. Corona latest: '0.1.0.1' description-type: haddock description: see <http://github.com/agocorona/transient> license-name: GPL-3
homepage: http://www.fpcomplete.com/user/agocorona changelog-type: '' hash: 6ea0eed1cfdedb94f6f826e4256ca57bfa769d36ce386c622d8e3d17e1221462 test-bench-deps: {} maintainer: agocorona@gmail.com synopsis: A monad for extensible effects and primitives for unrestricted composability of applications changelog: '' basic-deps: stm: -any base: ! '>4 && <5' filepath: -any process: -any network: -any containers: -any transient: -any mtl: -any network-info: -any HTTP: -any transformers: -any random: -any directory: -any all-versions: - '0.1.0.0' - '0.1.0.1' - '0.1.0.2' author: Alberto G. Corona latest: '0.1.0.2' description-type: haddock description: see <http://github.com/agocorona/transient> license-name: GPL-3
Update Bundler install command, rvm 'gem' binary is deprecated
--- - name: install bundler sudo_user: "{{ rvm_user }}" command: /home/{{ rvm_user }}/.rvm/bin/gem install bundler creates=/home/{{ rvm_user }}/.rvm/gems/ruby-{{ ruby_version }}/bin/bundle - name: Bundler install gems (first run is slow) sudo_user: "{{ rvm_user }}" command: /home/{{ rvm_user }}/.rvm/bin/rvm {{ ruby_version }} exec bundle install --deployment --without test chdir={{ bundler_path }}
--- - name: install bundler sudo_user: "{{ rvm_user }}" command: /home/{{ rvm_user }}/.rvm/bin/rvm {{ ruby_version }} exec gem install bundler creates=/home/{{ rvm_user }}/.rvm/gems/ruby-{{ ruby_version }}/bin/bundle - name: Bundler install gems (first run is slow) sudo_user: "{{ rvm_user }}" command: /home/{{ rvm_user }}/.rvm/bin/rvm {{ ruby_version }} exec bundle install --deployment --without test chdir={{ bundler_path }}
Remove theme setup link from nav (merge junk)
# Site navigation links - title: Home url: / - title: Quick Start url: /docs/getting-started - title: Documentation url: /docs/ - title: Blog url: /blog/ - title: Github url: https://github.com/metrophp - title: Theme Setup url: /theme-setup/
# Site navigation links - title: Home url: / - title: Quick Start url: /docs/getting-started - title: Documentation url: /docs/ - title: Blog url: /blog/ - title: Github url: https://github.com/metrophp
Create privileged LXD containers for testing
--- - hosts: localhost connection: local gather_facts: no tasks: - name: Create ubuntu bionic test container lxd_container: name: ubuntu-bionic-ansible state: started wait_for_ipv4_addresses: true source: type: image mode: pull server: https://images.linuxcontainers.org protocol: lxd alias: ubuntu/bionic/amd64 profiles: ["default"] ephemeral: true # LXD snap doesn't expose default unix socket url: https://127.0.0.1:8443 timeout: 300 ...
--- - hosts: localhost connection: local gather_facts: no tasks: - name: Create ubuntu bionic test container lxd_container: name: ubuntu-bionic-ansible state: started wait_for_ipv4_addresses: true source: type: image mode: pull server: https://images.linuxcontainers.org protocol: lxd alias: ubuntu/bionic/amd64 profiles: ["default"] ephemeral: true config: security.privileged: "true" security.nesting: "true" # LXD snap doesn't expose default unix socket url: https://127.0.0.1:8443 timeout: 300 ...
Make buildpacks.cloudfoundry.org the default url for buildpack dependencies
--- language: staticfile exclude_files: - .git/ - .gitignore - .gitmodules - .rspec - cf_spec/ - log/ - test/ - buildpack-packager/ - staticfile_buildpack-*v*.zip url_to_dependency_map: - match: nginx.tgz name: nginx version: 1.11.1 dependencies: - name: nginx version: 1.11.1 uri: https://pivotal-buildpacks.s3.amazonaws.com/concourse-binaries/nginx/nginx-1.11.1-linux-x64.tgz cf_stacks: - cflinuxfs2 md5: 7d28497395b62221f3380e82f89cd197
--- language: staticfile exclude_files: - .git/ - .gitignore - .gitmodules - .rspec - cf_spec/ - log/ - test/ - buildpack-packager/ - staticfile_buildpack-*v*.zip url_to_dependency_map: - match: nginx.tgz name: nginx version: 1.11.1 dependencies: - name: nginx version: 1.11.1 uri: https://buildpacks.cloudfoundry.org/concourse-binaries/nginx/nginx-1.11.1-linux-x64.tgz cf_stacks: - cflinuxfs2 md5: 7d28497395b62221f3380e82f89cd197
Change repo to pelias org
site_name: Mapzen Search docs_dir: src/search site_dir: dist/search pages: - Home: index.md - 'Get started': 'get-started.md' - 'Add search to a map': 'add-search-to-a-map.md' - 'API keys and rate limits': 'api-keys-rate-limits.md' - 'Search': 'search.md' - 'Reverse geocoding': 'reverse.md' - 'Autocomplete': 'autocomplete.md' - 'Place': 'place.md' - 'API responses': 'response.md' - 'Data sources': 'data-sources.md' - 'Load data from the browser': 'use-cors.md' - 'Terminology': 'glossary.md' - 'HTTP status codes': 'http-status-codes.md' - 'Transition from Pelias beta': 'transition-from-beta.md' extra: site_subtitle: 'Find places and addresses with this geographic search service built on open tools and open data.' #'High-performance geocoding and place search service' project_repo_url: https://github.com/pelias/ docs_base_url: https://github.com/mapzen/mapzen-docs/tree/master/search
site_name: Mapzen Search docs_dir: src/search site_dir: dist/search pages: - Home: index.md - 'Get started': 'get-started.md' - 'Add search to a map': 'add-search-to-a-map.md' - 'API keys and rate limits': 'api-keys-rate-limits.md' - 'Search': 'search.md' - 'Reverse geocoding': 'reverse.md' - 'Autocomplete': 'autocomplete.md' - 'Place': 'place.md' - 'API responses': 'response.md' - 'Data sources': 'data-sources.md' - 'Load data from the browser': 'use-cors.md' - 'Terminology': 'glossary.md' - 'HTTP status codes': 'http-status-codes.md' - 'Transition from Pelias beta': 'transition-from-beta.md' extra: site_subtitle: 'Find places and addresses with this geographic search service built on open tools and open data.' #'High-performance geocoding and place search service' project_repo_url: https://github.com/pelias/ docs_base_url: https://github.com/pelias/pelias-doc
Test in 7.1 -> 8.0
on: - pull_request - push name: CI jobs: run: name: Tests strategy: matrix: operating-system: [ubuntu-latest] php-versions: ['5.3', '5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0'] runs-on: ${{ matrix.operating-system }} steps: - name: Checkout uses: actions/checkout@v2 - name: Install PHP uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php-versions }} extensions: json, dom - name: Install dependencies with composer run: composer install - name: Run tests run: make test
on: - pull_request - push name: CI jobs: run: name: Tests strategy: matrix: operating-system: [ubuntu-latest] php-versions: ['7.1', '7.2', '7.3', '7.4', '8.0'] runs-on: ${{ matrix.operating-system }} steps: - name: Checkout uses: actions/checkout@v2 - name: Install PHP uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php-versions }} extensions: json, dom - name: Install dependencies with composer run: composer install - name: Run tests run: make test
Change dir to find requirements.txt
name: lovelace-website CI on: - push - pull_request jobs: build: runs-on: ubuntu-latest strategy: matrix: python-version: [3.7, 3.8] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Install Python dependencies run: | pip install --upgrade pip pip install -r requirements.txt - name: Build Docker container run: | cd src/ docker-compose build - name: Run Docker container run: | cd src/ docker-compose up
name: lovelace-website CI on: - push - pull_request jobs: build: runs-on: ubuntu-latest strategy: matrix: python-version: [3.7, 3.8] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Install Python dependencies run: | cd src/ pip install --upgrade pip pip install -r requirements.txt - name: Build Docker container run: | cd src/ docker-compose build - name: Run Docker container run: | cd src/ docker-compose up
Add SQL driver to dependencies
package: github.com/NAExpire/API import: - package: github.com/gorilla/mux version: ~1.3.0
package: github.com/NAExpire/API import: - package: github.com/gorilla/mux version: ~1.3.0 - package: github.com/go-sql-driver/mysql version: ^1.3.0
Update from Hackage at 2017-01-15T05:34:48Z
homepage: https://github.com/denisenkom/hspkcs11 changelog-type: '' hash: 7aefc4833b77ed50154daa8d6cf6692bf739d6ac92c17689f428146a36600be1 test-bench-deps: {} maintainer: denisenkom@gmail.com synopsis: ! 'Wrapper for PKCS #11 interface' changelog: '' basic-deps: bytestring: -any unix: -any base: <4.10 crypto-api: -any utf8-string: -any cipher-aes: -any testpack: -any cprng-aes: -any RSA: -any all-versions: - '0.1' author: Mikhail Denisenko latest: '0.1' description-type: haddock description: This package allows to call PKCS#11 provider libraries. PKCS#11 is a C interface specification for cryptography providers, such as crypto tokens and HSMs license-name: MIT
homepage: https://github.com/denisenkom/hspkcs11 changelog-type: '' hash: 5887047a0e4e8c99f34eb072ff4cb299b2b840f5c39e22dc8c09fc8ed2c4671a test-bench-deps: {} maintainer: denisenkom@gmail.com synopsis: ! 'Wrapper for PKCS #11 interface' changelog: '' basic-deps: bytestring: -any unix: -any base: <4.10 crypto-api: -any utf8-string: -any cipher-aes: -any testpack: -any cprng-aes: -any RSA: -any all-versions: - '0.1' - '0.2' author: Mikhail Denisenko latest: '0.2' description-type: haddock description: This package allows to call PKCS#11 provider libraries. PKCS#11 is a C interface specification for cryptography providers, such as crypto tokens and HSMs license-name: MIT
Update from Forestry.io - Updated Forestry configuration
--- new_page_extension: md auto_deploy: false admin_path: redac webhook_url: '' sections: - type: directory path: content/post label: Articles create: all match: "**/*" templates: - post - type: document path: config.yaml label: Configuration upload_dir: '' public_path: '' front_matter_path: https://res.cloudinary.com/jamstatic/image/upload/c_scale,f_auto,q_auto,w_1200 use_front_matter_path: true file_template: 'https://res.cloudinary.com/jamstatic/image/upload/c_scale,f_auto,q_auto,w_1028/:filename:' build: preview_command: hugo -E -F -D -b $DEPLOY_URL -d public publish_command: hugo -d public preview_env: - HUGO_ENV=staging - HUGO_VERSION=0.55.6 publish_env: - HUGO_ENV=production - HUGO_VERSION=0.55.6 preview_output_directory: public output_directory: public instant_preview_command: hugo server -D -E -F --port 8080 --bind 0.0.0.0 --renderToDisk -d public preview_docker_image: forestryio/hugo:latest mount_path: "/srv" version: 0.55.6
--- new_page_extension: md auto_deploy: false admin_path: redac webhook_url: '' sections: - type: directory path: content/post label: Articles create: all match: "**/*" templates: - post - type: document path: config.yaml label: Configuration upload_dir: '' public_path: '' front_matter_path: https://res.cloudinary.com/jamstatic/image/upload/c_scale,f_auto,q_auto,w_1200 use_front_matter_path: true file_template: 'https://res.cloudinary.com/jamstatic/image/upload/c_scale,f_auto,q_auto,w_1028/:filename:' instant_preview: true build: preview_command: hugo -E -F -D -b $DEPLOY_URL -d public publish_command: hugo -d public preview_env: - HUGO_ENV=staging - HUGO_VERSION=0.55.6 publish_env: - HUGO_ENV=production - HUGO_VERSION=0.55.6 preview_output_directory: public output_directory: public instant_preview_command: hugo server -D -E -F --port 8080 --bind 0.0.0.0 --renderToDisk -d public preview_docker_image: forestryio/hugo:latest mount_path: "/srv" version: 0.55.6
Update from Forestry.io - Updated Forestry configuration
--- new_page_extension: md auto_deploy: false admin_path: '' webhook_url: sections: - type: jekyll-posts label: Posts create: all upload_dir: assets public_path: "/assets" front_matter_path: '' use_front_matter_path: false file_template: ":filename:" instant_preview: true build: preview_env: - JEKYLL_ENV=staging preview_output_directory: "/srv/jekyll/_site" preview_docker_image: jekyll/builder mount_path: "/srv/jekyll" instant_preview_command: jekyll serve --drafts --unpublished --future --port 8080 --host 0.0.0.0 -d _site preview_command: jekyll build --drafts --unpublished --future -d _site
--- new_page_extension: md auto_deploy: false admin_path: '' webhook_url: sections: - type: jekyll-pages label: Pages create: all match: "**/*" - type: jekyll-posts label: Posts create: all upload_dir: assets public_path: "/assets" front_matter_path: '' use_front_matter_path: false file_template: ":filename:" instant_preview: true build: preview_env: - JEKYLL_ENV=staging preview_output_directory: "/srv/jekyll/_site" preview_docker_image: jekyll/builder mount_path: "/srv/jekyll" instant_preview_command: jekyll serve --drafts --unpublished --future --port 8080 --host 0.0.0.0 -d _site preview_command: jekyll build --drafts --unpublished --future -d _site
Update AppVeyor to match travis conan invokation
build: false environment: PYTHON: "C:\\Python27" PYTHON_VERSION: "2.7.8" PYTHON_ARCH: "32" configuration: Release platform: - x86 - x64 #We install nasm in case libjpeg-turbo has to be built from source install: - curl -L -o nasminst.exe http://libgd.blob.core.windows.net/nasm/nasm-2.07-installer.exe - start /wait nasminst.exe /S - ps: $env:path="C:\Program Files (x86)\nasm;$($env:path)" - set PATH=%PATH%;%PYTHON%/Scripts/;C:\Program Files (x86)\nasm - pip.exe install conan - conan user # It creates the conan data directory test_script: - mkdir build - cd build - if "%PLATFORM%"=="x86" conan install --file ../conanfile.py -o build_tests=True --build missing -s build_type=Release -s arch=x86 - if "%PLATFORM%"=="x64" conan install --file ../conanfile.py -o build_tests=True --build missing -s build_type=Release -s arch=x86_64 - conan build --file ../conanfile.py && ctest -V -C Release
build: false environment: PYTHON: "C:\\Python27" PYTHON_VERSION: "2.7.8" PYTHON_ARCH: "32" configuration: Release platform: - x86 - x64 #We install nasm in case libjpeg-turbo has to be built from source install: - curl -L -o nasminst.exe http://libgd.blob.core.windows.net/nasm/nasm-2.07-installer.exe - start /wait nasminst.exe /S - ps: $env:path="C:\Program Files (x86)\nasm;$($env:path)" - set PATH=%PATH%;%PYTHON%/Scripts/;C:\Program Files (x86)\nasm - pip.exe install conan - conan user # It creates the conan data directory test_script: - mkdir build - cd build - if "%PLATFORM%"=="x86" conan install -o build_tests=True --build missing -s build_type=Release -s arch=x86 -u ../ - if "%PLATFORM%"=="x64" conan install -o build_tests=True --build missing -s build_type=Release -s arch=x86_64 -u ../ - conan build ../
Change from Debug to Release
- version: 2.2.0.{build} pull_requests: do_not_increment_build_number: true branches: only: - dev configuration: Debug assembly_info: patch: true file: '**\AssemblyInfo.*' assembly_version: '{version}' assembly_file_version: '{version}' assembly_informational_version: '{version}-pre' build: publish_nuget: true verbosity: minimal deploy: provider: NuGet api_key: secure: odKiOePzrS9/UvtZ91bU0Bo/yacIwsDZiNCZ88TOyepk8AY5JexNOKvnd1WzuODP skip_symbols: false artifact: /.*\.nupkg/ - pull_requests: do_not_increment_build_number: true branches: only: - master configuration: Release assembly_info: patch: false build: publish_nuget: true verbosity: minimal deploy: provider: NuGet api_key: secure: odKiOePzrS9/UvtZ91bU0Bo/yacIwsDZiNCZ88TOyepk8AY5JexNOKvnd1WzuODP skip_symbols: false artifact: /.*\.nupkg/
- version: 2.2.0.{build} pull_requests: do_not_increment_build_number: true branches: only: - dev configuration: Release assembly_info: patch: true file: '**\AssemblyInfo.*' assembly_version: '{version}' assembly_file_version: '{version}' assembly_informational_version: '{version}-pre' build: publish_nuget: true verbosity: minimal deploy: provider: NuGet api_key: secure: odKiOePzrS9/UvtZ91bU0Bo/yacIwsDZiNCZ88TOyepk8AY5JexNOKvnd1WzuODP skip_symbols: false artifact: /.*\.nupkg/ - pull_requests: do_not_increment_build_number: true branches: only: - master configuration: Release assembly_info: patch: false build: publish_nuget: true verbosity: minimal deploy: provider: NuGet api_key: secure: odKiOePzrS9/UvtZ91bU0Bo/yacIwsDZiNCZ88TOyepk8AY5JexNOKvnd1WzuODP skip_symbols: false artifact: /.*\.nupkg/
Clean up Travis CI config
language: node_js cache: yarn node_js: - node - "12" - "10" matrix: include: os: windows cache: false node_js: node env: - YARN_GPG=no deploy: provider: pages skip-cleanup: true github-token: $GITHUB_TOKEN local-dir: api on: branch: master node_js: node os: linux
language: node_js cache: yarn node_js: - node - "12" - "10" matrix: include: os: windows cache: false node_js: node env: "YARN_GPG=no" deploy: provider: pages skip-cleanup: true github-token: $GITHUB_TOKEN local-dir: api on: branch: master node_js: node os: linux
Build and deploy all platforms to Github on tag
sudo: required language: go go: - 1.7.x install: - echo "Please don't go get" services: - docker before_script: - curl -sSL test.docker.com | sudo -E sh script: - go get -d -v - ./build.sh - ./build_samples.sh - ./test/version.sh ./faas-cli # - ./deploy_samples.sh # requires a deployed FaaS
sudo: required language: go go: - 1.7.x install: - echo "Please don't go get" services: - docker before_script: - curl -sSL test.docker.com | sudo -E sh script: - go get -d -v - ./build.sh - ./build_samples.sh - ./test/version.sh ./faas-cli # - ./deploy_samples.sh # requires a deployed FaaS before_deploy: - ./build_redist.sh deploy: provider: releases api_key: secure: "ADD SECURE TOKEN HERE" file: - faas-cli - faas-cli-darwin - faas-cli-armhf - faas-cli.exe skip_cleanup: true on: tags: true
Allow failures on jruby for now
language: ruby dist: xenial cache: bundler services: - postgresql - mysql bundler_args: --without yard guard benchmarks tools before_script: - psql -c 'create database rom_sql;' -U postgres - mysql -u root -e 'create database rom_sql;' - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter - chmod +x ./cc-test-reporter - ./cc-test-reporter before-build after_script: - "[ -d coverage ] && ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT" script: - bundle exec rake rvm: - 2.6.2 - 2.5.5 - 2.4.6 - jruby-9.2.7.0 env: global: - COVERAGE='true' notifications: webhooks: urls: - https://rom-rb.zulipchat.com/api/v1/external/travis?api_key=S1S2GRkXHlzlaCGyUwm7o4lg50IZrwCH&stream=notifications&topic=ci on_success: change on_failure: always on_start: false
language: ruby dist: xenial cache: bundler services: - postgresql - mysql bundler_args: --without yard guard benchmarks tools before_script: - psql -c 'create database rom_sql;' -U postgres - mysql -u root -e 'create database rom_sql;' - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter - chmod +x ./cc-test-reporter - ./cc-test-reporter before-build after_script: - "[ -d coverage ] && ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT" script: - bundle exec rake rvm: - 2.6.2 - 2.5.5 - 2.4.6 - jruby-9.2.7.0 env: global: - COVERAGE='true' matrix: allow_failures: - rvm: jruby notifications: webhooks: urls: - https://rom-rb.zulipchat.com/api/v1/external/travis?api_key=S1S2GRkXHlzlaCGyUwm7o4lg50IZrwCH&stream=notifications&topic=ci on_success: change on_failure: always on_start: false
Revert "fixed the scheme name"
# references: # * http://www.objc.io/issue-6/travis-ci.html # * https://github.com/supermarin/xcpretty#usage language: objective-c podfile: Example/Podfile before_install: - pod install --project-directory=Example install: - gem install xcpretty --no-rdoc --no-ri --no-document --quiet script: - set -o pipefail && xcodebuild test -workspace Example/Swizzler.xcworkspace -scheme Swizzler -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO | xcpretty -c - pod lib lint --quick
# references: # * http://www.objc.io/issue-6/travis-ci.html # * https://github.com/supermarin/xcpretty#usage language: objective-c podfile: Example/Podfile before_install: - pod install --project-directory=Example install: - gem install xcpretty --no-rdoc --no-ri --no-document --quiet script: - set -o pipefail && xcodebuild test -workspace Example/Swizzler.xcworkspace -scheme Swizzler-Example -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO | xcpretty -c - pod lib lint --quick
Revert "update to py36 in blog env yml"
name: blog channels: - conda-forge dependencies: - beautifulsoup4 - flake8 - feedparser - ipython - ipywidgets - jupyter - lxml - markdown - mkdocs - nbdime - pelican - python=3.6 - requests
name: blog channels: - conda-forge dependencies: - beautifulsoup4 - flake8 - feedparser - ipython - ipywidgets - jupyter - lxml - markdown - mkdocs - nbdime - pelican - python=3.5 - requests
Fix standards inside of yml file
exclude_paths: - "/vendor/*" engines: phpcodesniffer: enabled: true config: file_extensions: "php" standard: "PSR1, PSR2" ratings: paths: - "**.php"
exclude_paths: - "/vendor/*" engines: phpcodesniffer: enabled: true config: file_extensions: "php" standard: "PSR1,PSR2" ratings: paths: - "**.php"
Use python job template for Zed
- project: templates: - tripleo-buildimage-jobs - openstack-python3-yoga-jobs - release-notes-jobs-python3
- project: templates: - tripleo-buildimage-jobs - openstack-python3-zed-jobs - release-notes-jobs-python3
Use Bundler 1.17.3 for Rubies
environment: matrix: - ruby_version: "21" - ruby_version: "22" install: - SET PATH=C:\Ruby%ruby_version%\bin;%PATH% - ruby --version - ruby -e 'p([:engine, RUBY_ENGINE, :platform, RUBY_PLATFORM])' - gem --version - gem install bundler --no-document - bundler --version - bundle install --retry=3 test_script: - bundle exec rake build: off
environment: matrix: - ruby_version: "21" - ruby_version: "22" install: - SET PATH=C:\Ruby%ruby_version%\bin;%PATH% - ruby --version - ruby -e 'p([:engine, RUBY_ENGINE, :platform, RUBY_PLATFORM])' - gem --version - gem install bundler:1.17.3 --no-document - bundler --version - bundle install --retry=3 test_script: - bundle exec rake build: off
Update analyzer version constraint, bump version
name: intl version: 0.16.0-dev author: Dart Team <misc@dartlang.org> homepage: https://github.com/dart-lang/intl description: >- Contains code to deal with internationalized/localized messages, date and number formatting and parsing, bi-directional text, and other internationalization issues. environment: sdk: '>=2.0.0-dev.48 <3.0.0' documentation: http://www.dartdocs.org/documentation/intl/latest dependencies: path: '>=0.9.0 <2.0.0' dev_dependencies: fixnum: '>=0.9.0 <0.11.0' test: ^1.2.0
name: intl version: 0.16.0 author: Dart Team <misc@dartlang.org> homepage: https://github.com/dart-lang/intl description: >- Contains code to deal with internationalized/localized messages, date and number formatting and parsing, bi-directional text, and other internationalization issues. environment: sdk: '>=2.0.0 <3.0.0' dependencies: path: '>=0.9.0 <2.0.0' dev_dependencies: fixnum: '>=0.9.0 <0.11.0' test: ^1.2.0
Add ignore section to test data
# Configuration schema version 1. version: 1 functions: test-0.1: runtime: python3.6 build: source: src/hello_world requirements: - file: requirements.txt use_docker: false compile_dependencies: false package: build/hello_world.zip deploy: description: A basic Hello World handler region: eu-west-1 handler: hello.handler memory_size: 128 timeout: 60 # Role, VPC, subnets, security groups and KMS key are all specified by name. role: service-role/NONTF-lambda vpc_config: name: My VPC subnets: - Public subnet - name: Private subnet security_groups: - name: allow_database kms_key: name: aws/lambda tags: wibble: wobble environment: variables: foo: baz bar: # tracing: PassThrough | Active tracing_config: mode: PassThrough # dead_letter: [ARN of SQS queue or SNS topic] dead_letter_config: target_arn: some-dead-letter-arn
# Configuration schema version 1. version: 1 functions: test-0.1: runtime: python3.6 build: source: src/hello_world requirements: - file: requirements.txt use_docker: false compile_dependencies: false package: build/hello_world.zip ignore: - "*.py[cdo]" - __pycache__ - requirements.txt deploy: description: A basic Hello World handler region: eu-west-1 handler: hello.handler memory_size: 128 timeout: 60 # Role, VPC, subnets, security groups and KMS key are all specified by name. role: service-role/NONTF-lambda vpc_config: name: My VPC subnets: - Public subnet - name: Private subnet security_groups: - name: allow_database kms_key: name: aws/lambda tags: wibble: wobble environment: variables: foo: baz bar: # tracing: PassThrough | Active tracing_config: mode: PassThrough # dead_letter: [ARN of SQS queue or SNS topic] dead_letter_config: target_arn: some-dead-letter-arn
Add RTD Python 3.6 support.
formats: - pdf requirements_file: requirements_rtfd.txt python: version: 3 setup_py_install: true
build: image: latest formats: - pdf requirements_file: requirements_rtfd.txt python: version: 3.6 setup_py_install: true
Remove 32bit build option from specfile for leveldb.
# force 32bit compile on 64bit platform. --- fetch: wget https://leveldb.googlecode.com/files/leveldb-1.15.0.tar.gz -O leveldb-1.15.0.tar.gz configure: bash configure --prefix=/usr/local/stow/leveldb-1.15.0 make: make CC="gcc -m32" CXX="g++ -m32" #make: make install: /bin/rm -rf /usr/local/stow/leveldb-1.15.0 ; mkdir -p /usr/local/stow/leveldb-1.15.0/lib ; /bin/cp -r ../leveldb-1.15.0/* /usr/local/stow/leveldb-1.15.0 ; /bin/cp ./libleveldb.a ./*.so* /usr/local/stow/leveldb-1.15.0/lib/ url: https://leveldb.googlecode.com/files/leveldb-1.15.0.tar.gz filename: leveldb-1.15.0.tar.gz projname: leveldb-1.15.0
# force 32bit compile on 64bit platform. --- fetch: wget https://leveldb.googlecode.com/files/leveldb-1.15.0.tar.gz -O leveldb-1.15.0.tar.gz configure: bash configure --prefix=/usr/local/stow/leveldb-1.15.0 #make: make CC="gcc -m32" CXX="g++ -m32" make: make install: /bin/rm -rf /usr/local/stow/leveldb-1.15.0 ; mkdir -p /usr/local/stow/leveldb-1.15.0/lib ; /bin/cp -r ../leveldb-1.15.0/* /usr/local/stow/leveldb-1.15.0 ; /bin/cp ./libleveldb.a ./*.so* /usr/local/stow/leveldb-1.15.0/lib/ url: https://leveldb.googlecode.com/files/leveldb-1.15.0.tar.gz filename: leveldb-1.15.0.tar.gz projname: leveldb-1.15.0
Replace deprecated --without flag with bundle config
--- expeditor: cached_folders: - vendor defaults: buildkite: timeout_in_minutes: 30 steps: - label: run-lint-and-specs-ruby-2.4 command: - .expeditor/run_linux_tests.sh rake expeditor: executor: docker: image: ruby:2.4-buster - label: run-lint-and-specs-ruby-2.5 command: - .expeditor/run_linux_tests.sh rake expeditor: executor: docker: image: ruby:2.5-buster - label: run-lint-and-specs-ruby-2.6 command: - .expeditor/run_linux_tests.sh rake expeditor: executor: docker: image: ruby:2.6-buster - label: run-lint-and-specs-ruby-2.7 command: - .expeditor/run_linux_tests.sh rake expeditor: executor: docker: image: ruby:2.7-buster - label: run-lint-and-specs-ruby-3.0 command: - .expeditor/run_linux_tests.sh rake expeditor: executor: docker: image: ruby:3.0-buster - label: run-specs-windows command: - bundle config --local path vendor/bundle - bundle install --jobs=7 --retry=3 --without docs debug - bundle exec rake expeditor: executor: docker: host_os: windows
--- expeditor: cached_folders: - vendor defaults: buildkite: timeout_in_minutes: 30 steps: - label: run-lint-and-specs-ruby-2.4 command: - .expeditor/run_linux_tests.sh rake expeditor: executor: docker: image: ruby:2.4-buster - label: run-lint-and-specs-ruby-2.5 command: - .expeditor/run_linux_tests.sh rake expeditor: executor: docker: image: ruby:2.5-buster - label: run-lint-and-specs-ruby-2.6 command: - .expeditor/run_linux_tests.sh rake expeditor: executor: docker: image: ruby:2.6-buster - label: run-lint-and-specs-ruby-2.7 command: - .expeditor/run_linux_tests.sh rake expeditor: executor: docker: image: ruby:2.7-buster - label: run-lint-and-specs-ruby-3.0 command: - .expeditor/run_linux_tests.sh rake expeditor: executor: docker: image: ruby:3.0-buster - label: run-specs-windows command: - bundle config --local path vendor/bundle - bundle config set --local without docs debug - bundle install --jobs=7 --retry=3 - bundle exec rake expeditor: executor: docker: host_os: windows
Set file permissions as requested by Harbour
Name: harbour-file-browser Summary: File Browser for Sailfish OS Version: 1.1 Release: 0 Group: Qt/Qt License: Public domain Sources: - '%{name}-%{version}.tar.bz2' Description: |- File Browser for Sailfish OS. Browse the local file system. Configure: none Builder: qtc5 PkgConfigBR: - Qt5Core - Qt5Qml - Qt5Quick - sailfishapp Requires: - libsailfishapp Files: # Do not include whole %{_datadir}/applications as that would include tests too - '%{_datadir}/icons/hicolor/86x86/apps/%{name}.png' - '%{_datadir}/applications/%{name}.desktop' - '%{_datadir}/%{name}/qml' - '%{_bindir}/%{name}' PkgBR: []
Name: harbour-file-browser Summary: File Browser for Sailfish OS Version: 1.1 Release: 1 Group: Qt/Qt License: Public domain Sources: - '%{name}-%{version}.tar.bz2' Description: |- File Browser for Sailfish OS. Browse files on the phone. Configure: none Builder: qtc5 PkgConfigBR: - Qt5Core - Qt5Qml - Qt5Quick - sailfishapp NoAutoReqProv: yes Requires: - libsailfishapp Files: # Do not include whole %{_datadir}/applications as that would include tests too # the following defattr will cause two defattrs in .spec file, how to get only one? - '%defattr(644,root,root,755)' # default permissions for all files and folders - '%{_datadir}/icons/hicolor/86x86/apps/%{name}.png' - '%{_datadir}/applications/%{name}.desktop' - '%{_datadir}/%{name}/qml' - '%attr(755,root,root) %{_bindir}/%{name}' # permission to run the exeutable PkgBR: []
Update trivis file to work with mysql 5.7
language: php php: - 7.0 - 7.1 sudo: false before_install: - if [[ $TRAVIS_PHP_VERSION != 7.1 ]] ; then phpenv config-rm xdebug.ini; fi install: travis_retry composer install --no-interaction --prefer-dist --no-suggest script: vendor/bin/phpunit --verbose
language: php php: - 7.0 - 7.1 services: - mysql addons: apt: sources: - mysql-5.7-trusty packages: - mysql-server dist: trusty sudo: required env: - LARAVEL_VERSION=5.4.* before_script: - composer self-update - composer require "laravel/framework:${LARAVEL_VERSION}" - mysql -e 'create database antvel_testing;' before_install: - if [[ $TRAVIS_PHP_VERSION != 7.1 ]] ; then phpenv config-rm xdebug.ini; fi install: travis_retry composer install --no-interaction --prefer-dist --no-suggest script: vendor/bin/phpunit --verbose
Rearrange to allow binaries been kept
parameters: - name: enableDownload type: boolean default: true - name: packages type: object default: - name: name default: "" - name: download_location default: "" - name: unpack_location default: "$(Build.BinariesDirectory)" - name: url default: "" - name: archive default: "zip" - name: clean type: boolean default: true jobs: - job: DownloadBinaries displayName: Download Build Binaries steps: - checkout: none - ${{ each package in parameters.packages }}: - bash: | curl -Lk -o ${{package.download_location}} \ ${{package.url}} displayName: 'Download ${{package.name}}' - ${{ if eq(package.archive,'zip') }}: - bash: | echo Unzipping to ${{package.unpack_location}} unzip -qq -d ${{package.unpack_location}} ${{package.download_location}} chmod -R u+x ${{package.unpack_location}} ls -ltr ${{package.download_location}} displayName: 'Unzip ${{package.name}}' - ${{ if coalesce(package.clean,true) }}: - bash: | rm -rf ${{package.download_location}} displayName: 'Clean ${{package.name}}'
parameters: - name: enableDownload type: boolean default: true - name: packages type: object default: - name: name default: "" - name: download_location default: "" - name: unpack_location default: "$(Build.BinariesDirectory)" - name: url default: "" - name: archive default: "zip" - name: clean type: boolean default: true jobs: - job: DownloadBinaries displayName: Download Build Binaries steps: - checkout: none - ${{ each package in parameters.packages }}: - bash: | curl -Lk -o ${{package.download_location}} \ ${{package.url}} displayName: 'Download ${{package.name}}' - ${{ if eq(package.archive,'zip') }}: - bash: | echo Unzipping to ${{package.unpack_location}} unzip -qq -d ${{package.unpack_location}} ${{package.download_location}} chmod -R u+x ${{package.unpack_location}} ls -ltr ${{package.unpack_location}} displayName: 'Unzip ${{package.name}}' - ${{ if coalesce(package.clean,true) }}: - bash: | rm -rf ${{package.download_location}} displayName: 'Clean ${{package.name}}'
Update GetReview lambda after build
--- version: 0.1 phases: install: commands: - echo Installing as $(whoami) - npm install - $(npm bin)/bower install --allow-root build: commands: - $(npm bin)/gulp build - $(npm bin)/gulp test - $(npm bin)/gulp document post_build: commands: # Update Api - aws lambda update-function-code --function-name "${REKT_CREATE_REVIEW_LAMBDA_ARN}" --zip-file "fileb://$(pwd)/dist/aws/lambda-api-gateway.zip" - aws apigateway put-rest-api --fail-on-warnings --mode overwrite --rest-api-id "${REKT_API_ID}" --body "file://$(pwd)/dist/site/swagger.yml" # TODO deploy api # Update Website - aws s3 sync dist/site "s3://${REKT_WEBSITE_BUCKET}" artifacts: discard-paths: no files: - dist/**/*
--- version: 0.1 phases: install: commands: - echo Installing as $(whoami) - npm install - $(npm bin)/bower install --allow-root build: commands: - $(npm bin)/gulp build - $(npm bin)/gulp test - $(npm bin)/gulp document post_build: commands: # Update Api - aws lambda update-function-code --function-name "${REKT_CREATE_REVIEW_LAMBDA_ARN}" --zip-file "fileb://$(pwd)/dist/aws/lambda-api-gateway.zip" - aws lambda update-function-code --function-name "${REKT_GET_REVIEW_LAMBDA_ARN}" --zip-file "fileb://$(pwd)/dist/aws/lambda-api-gateway.zip" - aws apigateway put-rest-api --fail-on-warnings --mode overwrite --rest-api-id "${REKT_API_ID}" --body "file://$(pwd)/dist/site/swagger.yml" # TODO deploy api # Update Website - aws s3 sync dist/site "s3://${REKT_WEBSITE_BUCKET}" artifacts: discard-paths: no files: - dist/**/*
Test with Maven 3.4.0 SNAPSHOT
variables: MAVEN_OPTS: >- -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=WARN -Dorg.slf4j.simpleLogger.showDateTime=true -Djava.awt.headless=true .test: &test stage: test script: - 'mvn -B -V -e verify site site:stage' except: - gh-pages test:jdk7: <<: *test image: maven:3.3.9-jdk-7 test:jdk8: <<: *test image: maven:3.3.9-jdk-8 artifacts: paths: - target/staging/ono-maven-shared/ pages: image: busybox:latest stage: deploy script: - mv target/staging/ono-maven-shared/ public dependencies: - test:jdk8 artifacts: paths: - public only: - master
variables: MAVEN_OPTS: >- -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=WARN -Dorg.slf4j.simpleLogger.showDateTime=true -Djava.awt.headless=true .test: &test stage: test script: - 'mvn -B -V -e verify site site:stage' except: - gh-pages test:jdk7: <<: *test image: maven:3.3.9-jdk-7 test:jdk8: <<: *test image: maven:3.3.9-jdk-8 artifacts: paths: - target/staging/ono-maven-shared/ test:jdk8:3.4.0-SNAPSHOT: <<: *test image: mfriedenhagen/docker-maven:3.4.0-SNAPSHOT-jdk-8 test:jdk7:3.4.0-SNAPSHOT: <<: *test image: mfriedenhagen/docker-maven:3.4.0-SNAPSHOT-jdk-7 pages: image: busybox:latest stage: deploy script: - mv target/staging/ono-maven-shared/ public dependencies: - test:jdk8 artifacts: paths: - public only: - master
Remove comparer folder from docker build
imager: build: imager/ ports: - "8001:8000" comparer: build: comparer/ links: - postgres - imager volumes: - ./comparer/:/comparer/ environment: - DATABASE_URL=postgres://postgres:mysecretpassword@postgres/postgres frontend: build: frontend/ volumes: - ./frontend/:/frontend/ ports: - "8000:8000" links: - postgres environment: - DATABASE_URL=postgres://postgres:mysecretpassword@postgres/postgres postgres: image: postgres:9.4 environment: - POSTGRES_PASSWORD=mysecretpassword
imager: build: imager/ ports: - "8001:8000" comparer: build: comparer/ links: - postgres - imager environment: - DATABASE_URL=postgres://postgres:mysecretpassword@postgres/postgres frontend: build: frontend/ volumes: - ./frontend/:/frontend/ ports: - "8000:8000" links: - postgres environment: - DATABASE_URL=postgres://postgres:mysecretpassword@postgres/postgres postgres: image: postgres:9.4 environment: - POSTGRES_PASSWORD=mysecretpassword
Move fabric8-tenant to fabric8-services org
services: - hash: fed0f9d4205536998607768d2d8724a7f3ff1ea4 name: f8tenant path: /OpenShiftTemplate.yml url: https://github.com/fabric8io/fabric8-init-tenant/
services: - hash: fed0f9d4205536998607768d2d8724a7f3ff1ea4 name: f8tenant path: /OpenShiftTemplate.yml url: https://github.com/fabric8-services/fabric8-tenant/
Update carto docs with Themes
site_name: Cartography docs_dir: src-cartography site_dir: dist-cartography pages: - Home: index.md - 'Get started': 'get-started.md' - 'API reference': 'api-reference.md' - 'Basemap styles': 'styles.md' - 'Icons': 'icons.md' - 'Versioning': 'versioning.md' extra: site_subtitle: 'Get everything you need to use Mapzen basemaps and icons in your applications.' project_repo_url: https://github.com/tangrams/cartography-docs docs_base_url: https://github.com/tangrams/cartography-docs/tree/master
site_name: Cartography docs_dir: src-cartography site_dir: dist-cartography pages: - Home: index.md - 'Get started': 'get-started.md' - 'Basemap styles': 'styles.md' - 'Themes': 'themes.md' - 'Icons': 'icons.md' - 'API reference': 'api-reference.md' - 'Versioning': 'versioning.md' extra: site_subtitle: 'Get everything you need to use Mapzen basemaps and icons in your applications.' project_repo_url: https://github.com/tangrams/cartography-docs docs_base_url: https://github.com/tangrams/cartography-docs/tree/master
Update from Hackage at 2018-08-26T21:01:28Z
homepage: https://github.com/sergv/emacs-module changelog-type: '' hash: 5ee802b7c0fc7e92ea9641910b3d7657c71db38ffe64c2f191a57a18073ac7af test-bench-deps: {} maintainer: Sergey Vinokurov <serg.foo@gmail.com> synopsis: Utilities to write Emacs dynamic modules changelog: '' basic-deps: exceptions: -any void: -any bytestring: -any base: ! '>=4.7 && <5' text: -any monad-control: -any bifunctors: -any safe-exceptions-checked: -any mtl: -any transformers-base: -any prettyprinter: -any deepseq: -any resourcet: -any template-haskell: -any vector: -any all-versions: - '0.1' author: Sergey Vinokurov latest: '0.1' description-type: haddock description: ! 'This package provides a full set of bindings to emacs-module.h that allows to develop Emacs modules in Haskell.' license-name: BSD3
homepage: https://github.com/sergv/emacs-module changelog-type: '' hash: ef0f970155717bc7cfbccfbaaf9ed38020fcec2085bb2d971a1c79b63fa3a0d7 test-bench-deps: {} maintainer: Sergey Vinokurov <serg.foo@gmail.com> synopsis: Utilities to write Emacs dynamic modules changelog: '' basic-deps: exceptions: -any void: -any bytestring: -any base: ! '>=4.7 && <5' text: -any monad-control: -any bifunctors: -any safe-exceptions-checked: -any mtl: -any transformers-base: -any prettyprinter: -any deepseq: -any resourcet: -any template-haskell: -any vector: -any all-versions: - '0.1' - '0.1.1' author: Sergey Vinokurov latest: '0.1.1' description-type: haddock description: ! 'This package provides a full set of bindings to emacs-module.h that allows to develop Emacs modules in Haskell. Bindings are based on Emacs 25 version of the interface and thus should work in all subsequent versions of Emacs. For pointers on how to write minimal Emacs module, please refer to https://github.com/sergv/emacs-module/blob/master/test/src/Emacs/TestsInit.hs' license-name: BSD3
Fix data migration YAML command args
apiVersion: batch/v1 kind: Job metadata: namespace: default # namespace where the pvc's exist name: volume-migration spec: completions: 1 parallelism: 1 backoffLimit: 3 template: metadata: name: volume-migration labels: name: volume-migration spec: restartPolicy: Never containers: - name: volume-migration image: ubuntu:xenial tty: true command: [ "/bin/sh" ] args: [ "-c", "cp -r -v /mnt/old /mnt/new" ] volumeMounts: - name: old-vol mountPath: /mnt/old - name: new-vol mountPath: /mnt/new volumes: - name: old-vol persistentVolumeClaim: claimName: data-source-pvc # change to data source pvc - name: new-vol persistentVolumeClaim: claimName: data-target-pvc # change to data target pvc
apiVersion: batch/v1 kind: Job metadata: namespace: default # namespace where the pvc's exist name: volume-migration spec: completions: 1 parallelism: 1 backoffLimit: 3 template: metadata: name: volume-migration labels: name: volume-migration spec: restartPolicy: Never containers: - name: volume-migration image: ubuntu:xenial tty: true command: [ "/bin/sh" ] args: [ "-c", "cp -r -v /mnt/old/* /mnt/new" ] volumeMounts: - name: old-vol mountPath: /mnt/old - name: new-vol mountPath: /mnt/new volumes: - name: old-vol persistentVolumeClaim: claimName: data-source-pvc # change to data source pvc - name: new-vol persistentVolumeClaim: claimName: data-target-pvc # change to data target pvc
Revert disabling the grenade job
- project: templates: - check-requirements - openstack-cover-jobs - openstack-lower-constraints-jobs - openstack-python3-ussuri-jobs - publish-openstack-docs-pti - release-notes-jobs-python3 check: jobs: # NOTE (rpittau) sadly temporary disabling grenade and # non-standalone-tempest jobs until we got them fixed - ironic-inspector-grenade: voting: false - ironic-inspector-non-standalone-tempest: voting: false - ironic-inspector-tempest - ironic-inspector-tempest-discovery - ironic-inspector-tempest-managed - openstack-tox-functional-py36 - bifrost-integration-tinyipa-ubuntu-bionic: voting: false - ironic-inspector-tox-bandit: voting: false gate: queue: ironic jobs: # NOTE (rpittau) sadly temporary disabling grenade and # non-standalone-tempest jobs until we got them fixed # - ironic-inspector-grenade # - ironic-inspector-non-standalone-tempest - ironic-inspector-tempest - ironic-inspector-tempest-discovery - ironic-inspector-tempest-managed - openstack-tox-functional-py36
- project: templates: - check-requirements - openstack-cover-jobs - openstack-lower-constraints-jobs - openstack-python3-ussuri-jobs - publish-openstack-docs-pti - release-notes-jobs-python3 check: jobs: - ironic-inspector-grenade - ironic-inspector-tempest - ironic-inspector-tempest-discovery - ironic-inspector-tempest-managed # NOTE (rpittau) sadly temporary disabling the non-standalone-tempest # job until we got it fixed - ironic-inspector-non-standalone-tempest: voting: false - openstack-tox-functional-py36 - bifrost-integration-tinyipa-ubuntu-bionic: voting: false - ironic-inspector-tox-bandit: voting: false gate: queue: ironic jobs: - ironic-inspector-grenade - ironic-inspector-tempest - ironic-inspector-tempest-discovery - ironic-inspector-tempest-managed - openstack-tox-functional-py36
Use latest module-ci, which fixes bugs in upload-github-release-assets
machine: environment: PATH: $PATH:$HOME/glide/linux-amd64 dependencies: override: # Install the gruntwork-module-circleci-helpers and use it to configure the build environment and run tests. - curl -Ls https://raw.githubusercontent.com/gruntwork-io/gruntwork-installer/master/bootstrap-gruntwork-installer.sh | bash /dev/stdin --version 0.0.9 - gruntwork-install --module-name "gruntwork-module-circleci-helpers" --repo "https://github.com/gruntwork-io/module-ci" --tag "v0.0.6" - configure-environment-for-gruntwork-module --terraform-version NONE --packer-version NONE --go-src-path . cache_directories: - ~/glide test: override: - run-go-tests deployment: release: tag: /v.*/ commands: # If a new release is tagged in GitHub, build the binaries and upload them to GitHub. - build-go-binaries --app-name terragrunt --dest-path bin --ld-flags "-X main.VERSION=$CIRCLE_TAG" - upload-github-release-assets bin/*
machine: environment: PATH: $PATH:$HOME/glide/linux-amd64 dependencies: override: # Install the gruntwork-module-circleci-helpers and use it to configure the build environment and run tests. - curl -Ls https://raw.githubusercontent.com/gruntwork-io/gruntwork-installer/master/bootstrap-gruntwork-installer.sh | bash /dev/stdin --version 0.0.9 - gruntwork-install --module-name "gruntwork-module-circleci-helpers" --repo "https://github.com/gruntwork-io/module-ci" --tag "v0.0.10" - configure-environment-for-gruntwork-module --terraform-version NONE --packer-version NONE --go-src-path . cache_directories: - ~/glide test: override: - run-go-tests deployment: release: tag: /v.*/ commands: # If a new release is tagged in GitHub, build the binaries and upload them to GitHub. - build-go-binaries --app-name terragrunt --dest-path bin --ld-flags "-X main.VERSION=$CIRCLE_TAG" - upload-github-release-assets bin/*
Add gfmxr integration for checking examples in README.md
language: go sudo: false go: - 1.1.2 - 1.2.2 - 1.3.3 - 1.4.2 - 1.5.1 - tip matrix: allow_failures: - go: tip script: - go vet ./... - go test -v ./...
language: go sudo: false go: - 1.1.2 - 1.2.2 - 1.3.3 - 1.4.2 - 1.5.1 - tip matrix: allow_failures: - go: tip before_script: - go get github.com/meatballhat/gfmxr/... script: - go vet ./... - go test -v ./... - gfmxr
Enable gem caching in CI build
language: ruby rvm: - 2.2.7 - 2.3.4 - 2.4.1 gemfile: - gemfiles/rails_4.1.gemfile - gemfiles/rails_4.2.gemfile - gemfiles/rails_5.0.gemfile - gemfiles/rails_5.1.gemfile matrix: exclude: - rvm: 2.4.1 gemfile: gemfiles/rails_4.1.gemfile before_install: - gem update bundler before_script: - RAILS_ENV=test bundle exec rake app:db:create app:db:migrate script: - bundle exec rspec after_script: - RAILS_ENV=test bundle exec rake app:db:drop
language: ruby cache: bundler: true rvm: - 2.2.7 - 2.3.4 - 2.4.1 gemfile: - gemfiles/rails_4.1.gemfile - gemfiles/rails_4.2.gemfile - gemfiles/rails_5.0.gemfile - gemfiles/rails_5.1.gemfile matrix: exclude: - rvm: 2.4.1 gemfile: gemfiles/rails_4.1.gemfile before_install: - gem update bundler before_script: - RAILS_ENV=test bundle exec rake app:db:create app:db:migrate script: - bundle exec rspec after_script: - RAILS_ENV=test bundle exec rake app:db:drop
Update from Hackage at 2015-07-03T14:19:43+0000
homepage: '' changelog-type: '' hash: c16973e935950d6dde791d92fb3d463bde992886b4100acf1af66b4e2228772a test-bench-deps: {} maintainer: ropoctl@gmail.com synopsis: Sequence Alignment changelog: '' basic-deps: bytestring: -any base: ! '>=4.6 && <5' vector: -any all-versions: - '0.2.0.0' - '0.2.0.1' - '0.2.0.2' - '0.2.0.3' author: Rob O'Callahan latest: '0.2.0.3' description-type: haddock description: FFI wrappers for global and local string alignment functions license-name: BSD3
homepage: '' changelog-type: '' hash: dbf574ed677f0db7dd023a549ab3ee8c8bdb3559433fd03b098f1f90eae21f25 test-bench-deps: {} maintainer: ropoctl@gmail.com synopsis: Sequence Alignment changelog: '' basic-deps: bytestring: -any base: ! '>=4.6 && <5' vector: -any all-versions: - '0.2.0.0' - '0.2.0.1' - '0.2.0.2' - '0.2.0.3' - '0.2.0.4' author: Rob O'Callahan latest: '0.2.0.4' description-type: haddock description: FFI wrappers for global and local string alignment functions license-name: BSD3
Add GHC 8.0.2 to the Travis build
language: nix sudo: true git: depth: 1 env: global: matrix: - GHCVERSION=ghc822 - GHCVERSION=ghc842 matrix: allow_failures: exclude: script: - nix-build --argstr compiler $GHCVERSION branches: only: - master
language: nix sudo: true git: depth: 1 env: global: matrix: - GHCVERSION=ghc802 - GHCVERSION=ghc822 - GHCVERSION=ghc842 matrix: allow_failures: exclude: script: - nix-build --argstr compiler $GHCVERSION branches: only: - master
Add Horton as a maintainer
{% set name = "chemper" %} {% set version = "1.0.0" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://github.com/mobleylab/chemper/archive/1.0.0.tar.gz sha256: d8e1b0f29d005be6ba617f2dcb484706e4d06db1df1f6f4a26aa826e20472c7b build: noarch: python number: 0 script: "{{ PYTHON }} -m pip install . -vv" requirements: host: - python - pip run: - {{ pin_compatible('numpy') }} - python - rdkit - networkx test: imports: - chemper about: home: https://github.com/mobleylab/chemper license: MIT license_family: MIT license_file: LICENSE summary: Chemical Perception Sampling Tools doc_url: https://chemper.readthedocs.io/ dev_url: https://github.com/mobleylab/chemper extra: recipe-maintainers: - mattwthompson - j-wags - dotsdl - jaimergp
{% set name = "chemper" %} {% set version = "1.0.0" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://github.com/mobleylab/chemper/archive/1.0.0.tar.gz sha256: d8e1b0f29d005be6ba617f2dcb484706e4d06db1df1f6f4a26aa826e20472c7b build: noarch: python number: 0 script: "{{ PYTHON }} -m pip install . -vv" requirements: host: - python - pip run: - {{ pin_compatible('numpy') }} - python - rdkit - networkx test: imports: - chemper about: home: https://github.com/mobleylab/chemper license: MIT license_family: MIT license_file: LICENSE summary: Chemical Perception Sampling Tools doc_url: https://chemper.readthedocs.io/ dev_url: https://github.com/mobleylab/chemper extra: recipe-maintainers: - mattwthompson - j-wags - dotsdl - jaimergp - jhorton
Update setuptools recipe to version 34.1.1
{% set name = "setuptools" %} {% set version = "33.1.1" %} package: name: setuptools version: {{ version }} source: fn: {{ name }}-{{ version }}.zip url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.zip sha256: 6b20352ed60ba08c43b3611bdb502286f7a869fbfcf472f40d7279f1e77de145 patches: # Modify setuptools to fail if used in conda build (encourage people to add all deps in meta.yaml). - nodownload.patch build: number: 0 entry_points: - easy_install = setuptools.command.easy_install:main requirements: build: - python - certifi run: - python - certifi test: commands: - easy_install --help imports: - setuptools - easy_install - pkg_resources about: home: https://github.com/pypa/setuptools license: MIT license_file: LICENSE license_family: MIT summary: Download, build, install, upgrade, and uninstall Python packages description: | Setuptools is a fully-featured, actively-maintained, and stable library designed to facilitate packaging Python projects. doc_url: http://pythonhosted.org/setuptools/ dev_url: https://github.com/pypa/setuptools
{% set name = "setuptools" %} {% set version = "34.1.1" %} package: name: setuptools version: {{ version }} source: fn: {{ name }}-{{ version }}.zip url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.zip sha256: be2108849161624b51b2a5cdba8117e2b3f7a9cf4301cf3839a55afc3a7253e4 patches: # Modify setuptools to fail if used in conda build (encourage people to add all deps in meta.yaml). - nodownload.patch build: number: 0 entry_points: - easy_install = setuptools.command.easy_install:main requirements: build: - python - appdirs - certifi - packaging - six run: - python - appdirs - certifi - packaging - six test: commands: - easy_install --help imports: - setuptools - easy_install - pkg_resources about: home: https://github.com/pypa/setuptools license: MIT license_file: LICENSE license_family: MIT summary: Download, build, install, upgrade, and uninstall Python packages description: | Setuptools is a fully-featured, actively-maintained, and stable library designed to facilitate packaging Python projects. doc_url: http://pythonhosted.org/setuptools/ dev_url: https://github.com/pypa/setuptools
Revert "Protect add action." - doesn't work as expected.
application: search-gonuts-io version: 1 runtime: python27 api_version: 1 threadsafe: yes handlers: - url: /favicon\.ico static_files: public/favicon.ico upload: public/favicon.ico - url: /apple-touch-icon(.*)\.png static_files: public/apple-touch-icon\1.png upload: public/apple-touch-icon(.*).png - url: /robots\.txt static_files: public/robots.txt upload: public/robots.txt mime_type: text/plain - url: /add script: search.add login: admin - url: / script: search.find
application: search-gonuts-io version: 1 runtime: python27 api_version: 1 threadsafe: yes handlers: - url: /favicon\.ico static_files: public/favicon.ico upload: public/favicon.ico - url: /apple-touch-icon(.*)\.png static_files: public/apple-touch-icon\1.png upload: public/apple-touch-icon(.*).png - url: /robots\.txt static_files: public/robots.txt upload: public/robots.txt mime_type: text/plain - url: /add script: search.add - url: / script: search.find
Use the latest version of the archive package
name: sass version: 1.0.0-dev description: A Sass implementation in Dart. author: Dart Team <misc@dartlang.org> homepage: https://github.com/sass/dart-sass executables: dart-sass: sass environment: sdk: '>=1.21.0 <2.0.0' dependencies: args: "^0.13.0" charcode: "^1.1.0" collection: "^1.8.0" convert: "^2.0.1" path: "^1.0.0" source_span: "^1.4.0" string_scanner: ">=0.1.5 <2.0.0" stack_trace: ">=0.9.0 <2.0.0" tuple: "^1.0.0" package_resolver: ^1.0.0 dev_dependencies: # TOOD(nweiz): Remove the upper bound when brendan-duncan/archive#41 is fixed. archive: ">=1.0.0 <1.0.31" dart_style: "^1.0.0" grinder: "^0.8.0" http: "^0.11.0" js: "^0.6.0" node_preamble: "^1.1.0" stream_channel: "^1.0.0" test_descriptor: "^1.0.0" test_process: "^1.0.0-rc.1" test: "^0.12.24" xml: "^2.4.0" yaml: "^2.0.0"
name: sass version: 1.0.0-dev description: A Sass implementation in Dart. author: Dart Team <misc@dartlang.org> homepage: https://github.com/sass/dart-sass executables: dart-sass: sass environment: sdk: '>=1.21.0 <2.0.0' dependencies: args: "^0.13.0" charcode: "^1.1.0" collection: "^1.8.0" convert: "^2.0.1" path: "^1.0.0" source_span: "^1.4.0" string_scanner: ">=0.1.5 <2.0.0" stack_trace: ">=0.9.0 <2.0.0" tuple: "^1.0.0" package_resolver: ^1.0.0 dev_dependencies: archive: "^1.0.0" dart_style: "^1.0.0" grinder: "^0.8.0" http: "^0.11.0" js: "^0.6.0" node_preamble: "^1.1.0" stream_channel: "^1.0.0" test_descriptor: "^1.0.0" test_process: "^1.0.0-rc.1" test: "^0.12.24" xml: "^2.4.0" yaml: "^2.0.0"
Update Aurora Droid to 1.0.5 (5)
Categories: - System License: GPL-3.0-only AuthorName: Rahul Kumar Patel AuthorEmail: whyorean@gmail.com WebSite: https://auroraoss.com SourceCode: https://gitlab.com/AuroraOSS/auroradroid IssueTracker: https://gitlab.com/AuroraOSS/auroradroid/issues Changelog: https://gitlab.com/AuroraOSS/auroradroid/blob/HEAD/CHANGELOG Donate: https://www.paypal.me/whyorean AutoName: Aurora Droid Description: |- An alternative to the default F-Droid app with an intuitive UI and multiple great features, such as * Many repos listed and can be enabled * Beautiful design - Follows latest Material Design guidelines * Powerful download manager - Pause, resume and retry downloading apps * Previous releases - Enables downloading old releases * Lists architectures (arm, arm64 ...) and minimal Android versions RepoType: git Repo: https://gitlab.com/AuroraOSS/auroradroid.git Builds: - versionName: 1.0.3 versionCode: 3 commit: 1.0.3 subdir: app gradle: - yes - versionName: 1.0.4 versionCode: 4 commit: 1.0.4 subdir: app gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: 1.0.4 CurrentVersionCode: 4
Categories: - System License: GPL-3.0-only AuthorName: Rahul Kumar Patel AuthorEmail: whyorean@gmail.com WebSite: https://auroraoss.com SourceCode: https://gitlab.com/AuroraOSS/auroradroid IssueTracker: https://gitlab.com/AuroraOSS/auroradroid/issues Changelog: https://gitlab.com/AuroraOSS/auroradroid/blob/HEAD/CHANGELOG Donate: https://www.paypal.me/whyorean AutoName: Aurora Droid Description: |- An alternative to the default F-Droid app with an intuitive UI and multiple great features, such as * Many repos listed and can be enabled * Beautiful design - Follows latest Material Design guidelines * Powerful download manager - Pause, resume and retry downloading apps * Previous releases - Enables downloading old releases * Lists architectures (arm, arm64 ...) and minimal Android versions RepoType: git Repo: https://gitlab.com/AuroraOSS/auroradroid.git Builds: - versionName: 1.0.3 versionCode: 3 commit: 1.0.3 subdir: app gradle: - yes - versionName: 1.0.4 versionCode: 4 commit: 1.0.4 subdir: app gradle: - yes - versionName: 1.0.5 versionCode: 5 commit: 1.0.5 subdir: app gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: 1.0.5 CurrentVersionCode: 5
Add endpoints to the yaml file
application: neillatitude version: 1 runtime: python27 api_version: 1 threadsafe: true handlers: - url: /favicon.ico static_files: images/favicon.ico upload: images/favicon.ico - url: /stylesheets static_dir: stylesheets - url: /glDatePicker static_dir: glDatePicker - url: /images static_dir: images - url: /js static_dir: js - url: /_ah/spi/.* script: backend.application - url: /.* script: latMain.application secure: always libraries: - name: webapp2 version: 2.5.2 - name: jinja2 version: 2.6 - name: pycrypto version: "2.6" builtins: - remote_api: on - deferred: on
application: neillatitude version: 1 runtime: python27 api_version: 1 threadsafe: true handlers: - url: /favicon.ico static_files: images/favicon.ico upload: images/favicon.ico - url: /stylesheets static_dir: stylesheets - url: /glDatePicker static_dir: glDatePicker - url: /images static_dir: images - url: /js static_dir: js - url: /_ah/spi/.* script: backend.application - url: /.* script: latMain.application secure: always libraries: - name: webapp2 version: 2.5.2 - name: jinja2 version: 2.6 - name: pycrypto version: "2.6" - name: endpoints version: "1.0" builtins: - remote_api: on - deferred: on
Drop Node 14 tests 🦀
name: Node.js CI on: push: branches: - master pull_request: branches: - master jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: - 14.x - 16.x - 18.x steps: - name: Set up Git run: | git config --global user.name "Mrm Bot" git config --global user.email "${BOT_EMAIL}" env: BOT_EMAIL: ${{ secrets.BOT_EMAIL }} - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} - run: npm ci - run: npm run bootstrap - run: npm test
name: Node.js CI on: push: branches: - master pull_request: branches: - master jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: - 16.x - 18.x steps: - name: Set up Git run: | git config --global user.name "Mrm Bot" git config --global user.email "${BOT_EMAIL}" env: BOT_EMAIL: ${{ secrets.BOT_EMAIL }} - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} - run: npm ci - run: npm run bootstrap - run: npm test
Update from Hackage at 2017-11-18T14:09:25Z
homepage: https://bitbucket.org/dpwiz/raven-haskell changelog-type: '' hash: 65bf508adfcd2701932bb81afdd79459002a1b156f2745ab34cd3b92095f57ff test-bench-deps: bytestring: -any base: -any unordered-containers: -any hspec: -any raven-haskell: -any aeson: -any maintainer: aenor.realm@gmail.com synopsis: Haskell client for Sentry logging service. changelog: '' basic-deps: bytestring: ! '>=0.10' base: ==4.* time: ! '>=1.5.0.1' unordered-containers: -any text: -any uuid: -any network: -any mtl: -any random: ! '>=1.0' http-conduit: ! '>=0.4.30' resourcet: -any aeson: -any all-versions: - '0.1.0.0' - '0.1.0.1' - '0.1.1.0' author: Alexander Bondarenko latest: '0.1.1.0' description-type: haddock description: '' license-name: MIT
homepage: https://bitbucket.org/dpwiz/raven-haskell changelog-type: '' hash: f422e185152dc3fea33d744879e29caf5fcfd589438bdcc1c004d4944762f891 test-bench-deps: bytestring: -any base: -any unordered-containers: -any hspec: -any raven-haskell: -any aeson: -any maintainer: aenor.realm@gmail.com synopsis: Haskell client for Sentry logging service. changelog: '' basic-deps: bytestring: ! '>=0.10' base: ==4.* time: ! '>=1.5.0.1' unordered-containers: -any text: -any uuid: -any network: -any mtl: -any random: ! '>=1.0' http-conduit: ! '>=0.4.30' resourcet: -any aeson: -any all-versions: - '0.1.0.0' - '0.1.0.1' - '0.1.1.0' - '0.1.2.0' author: Alexander Bondarenko latest: '0.1.2.0' description-type: haddock description: '' license-name: MIT
Fix Hbase stable to version specific folders
--- #Required... #dfs_namenode_host: #zookeeper_group: #hbase_master_host: # Defaults... hbase_version: 1.1.2 hbase_install_dir: /opt/hbase hbase_exe_dir: "JAVA_HOME={{ java_home }} {{ hbase_install_dir }}/default/bin" hbase_conf_dir: "{{ hbase_install_dir }}/default/conf" hbase_user: hbase hbase_group: hbase hbase_start_secs: 10 hbase_start_retries: 3 hbase_stdout_logfile_maxbytes: 50MB hbase_stderr_logfile_maxbytes: 50MB # runtime opts hbase_heap_size: 1024 hbase_opts: -XX:+UseConcMarkSweepGC hbase_master_enabled: false hbase_regionserver_enabled: false hbase_rest_enabled: false hbase_cluster_name: hbasecluster hbase_root_dir: /hbase hbase_tmp_dir: /data/hbase hbase_master_port: 60000 hbase_master_info_port: 60010 hbase_regionserver_port: 60020 hbase_regionserver_info_port: 60030 hbase_rest_port: 60050 hbase_rest_info_port: 8086 hbase_jmx_remote_port: 10102 repository_infrastructure: "{{ apache_mirror }}/hbase/stable"
--- #Required... #dfs_namenode_host: #zookeeper_group: #hbase_master_host: # Defaults... hbase_version: 1.1.3 hbase_install_dir: /opt/hbase hbase_exe_dir: "JAVA_HOME={{ java_home }} {{ hbase_install_dir }}/default/bin" hbase_conf_dir: "{{ hbase_install_dir }}/default/conf" hbase_user: hbase hbase_group: hbase hbase_start_secs: 10 hbase_start_retries: 3 hbase_stdout_logfile_maxbytes: 50MB hbase_stderr_logfile_maxbytes: 50MB # runtime opts hbase_heap_size: 1024 hbase_opts: -XX:+UseConcMarkSweepGC hbase_master_enabled: false hbase_regionserver_enabled: false hbase_rest_enabled: false hbase_cluster_name: hbasecluster hbase_root_dir: /hbase hbase_tmp_dir: /data/hbase hbase_master_port: 60000 hbase_master_info_port: 60010 hbase_regionserver_port: 60020 hbase_regionserver_info_port: 60030 hbase_rest_port: 60050 hbase_rest_info_port: 8086 hbase_jmx_remote_port: 10102 repository_infrastructure: "{{ apache_mirror }}/hbase/{{ hbase_version }}"
Use NodeJs 12 on build
version: 0.2 phases: install: runtime-versions: nodejs: 10 commands: - mkdir -p layers/nodejs - cp package*.json layers/nodejs - npm install - npm install --production --prefix layers/nodejs build: commands: - npx serverless deploy
version: 0.2 phases: install: runtime-versions: nodejs: 12 commands: - mkdir -p layers/nodejs - cp package*.json layers/nodejs - npm install - npm install --production --prefix layers/nodejs build: commands: - npx serverless deploy
Update from Hackage at 2020-01-22T08:35:32Z
homepage: '' changelog-type: '' hash: 74cd87692a90492171802f25c034ef047f0b68aaa1b53303d4e50ce3ec30e98a test-bench-deps: {} maintainer: none synopsis: A Haskell library for writing FastCGI programs changelog: '' basic-deps: bytestring: ! '>=0.9.1.5' base: ! '>=4 && <5' cgi: ! '>=3000.0.0' all-versions: - 3000.0.0 - 3001.0.1 - 3001.0.2 - 3001.0.2.1 - 3001.0.2.2 - 3001.0.2.3 - 3001.0.2.4 author: '' latest: 3001.0.2.4 description-type: haddock description: ! 'This library lets you write FastCGI programs. This package reuses the cgi package API, making it very easy to port CGI programs to FastCGI. The FastCGI C development kit is required to build this library.' license-name: BSD-3-Clause
homepage: '' changelog-type: '' hash: c83b3c14b176c739e3b1f5ba67c9e63c3fb7fbc1f2c41c65aeab2ee12ba4db4d test-bench-deps: {} maintainer: Krasimir Angelov <kr.angelov@gmail.com> synopsis: A Haskell library for writing FastCGI programs changelog: '' basic-deps: bytestring: ! '>=0.9.1.5' base: ! '>=4 && <5' cgi: ! '>=3000.0.0' all-versions: - 3000.0.0 - 3001.0.1 - 3001.0.2 - 3001.0.2.1 - 3001.0.2.2 - 3001.0.2.3 - 3001.0.2.4 - 3001.0.2.5 author: '' latest: 3001.0.2.5 description-type: haddock description: |- This library lets you write FastCGI programs. The package reuses the cgi package API, making it very easy to port CGI programs to FastCGI. The FastCGI C development kit is required to build this library. license-name: BSD-3-Clause
Add translatable elements for vulnerabilities.xml
projects: - id: 9301 sources: - dir: "src/main/resources/org/zaproxy/zap/resources" outputDir: "src/main/dist/lang" crowdinPath: dir: "/core" filename: "%file_pathname%" exportPattern: dir: "/zaproxy/core" filename: "%file_name%_%locale_with_underscore%%file_extension%" includes: - pattern: "Messages.properties" - pattern: "vulnerabilities.xml"
projects: - id: 9301 sources: - dir: "src/main/resources/org/zaproxy/zap/resources" outputDir: "src/main/dist/lang" crowdinPath: dir: "/core" filename: "%file_pathname%" exportPattern: dir: "/zaproxy/core" filename: "%file_name%_%locale_with_underscore%%file_extension%" includes: - pattern: "Messages.properties" - pattern: "vulnerabilities.xml" translatableElements: - "//alert" - "//desc" - "//reference" - "//solution"
Add athena as the relayhost for this MX, so we can test adding it "in front" of Nike/Athena
--- classes: - apache - pflogsumm - ssl::name::wildcard_apache_org postfix::server::postscreen: 'true' postfix::server::relay_domains: 'apache.org,incubator.apache.org,apachecon.com,apachecon.eu,subversion.com,subversion.net,subversion.org'
--- classes: - apache - pflogsumm - ssl::name::wildcard_apache_org postfix::server::postscreen: 'true' postfix::server::relay_domains: 'apache.org,incubator.apache.org,apachecon.com,apachecon.eu,subversion.com,subversion.net,subversion.org' ## It should be noted that this is a temporary value, that means we can ## place this MX before nike/athena to enable testing postfix::server::relayhost: '[athena.apache.org]:25'
Use fixed version of pypandoc
package: name: pypandoc version: 1.1.0 source: git_url: https://github.com/bebraw/pypandoc.git git_tag: v1.1.0 requirements: build: - python - setuptools run: - python test: imports: - pypandoc about: home: https://github.com/bebraw/pypandoc license: MIT summary: 'Thin wrapper for "pandoc"'
package: name: pypandoc version: 1.1.0 source: git_url: https://github.com/janschulz/pypandoc.git git_tag: upload_tests requirements: build: - python - setuptools run: - python test: imports: - pypandoc about: home: https://github.com/bebraw/pypandoc license: MIT summary: 'Thin wrapper for "pandoc"'
Update nodejs in phoenix and elm project
# ~/.tmuxinator/phoenix_and_elm.yml name: phoenix_and_elm root: ~/elixir/phoenix_and_elm # Runs before everything. Use it to start daemons etc. on_project_first_start: - mix deps.get - mix compile --force # - open --background http://localhost:3000 - open --background http://localhost:4000 # Grip - open --background http://localhost:6419 on_project_start: - brew services start postgresql # - brew services start redis # - mailcatcher on_project_stop: # - brew services stop postgresql # - brew services stop redis on_project_exit: # - brew services stop postgresql # - brew services stop redis # Runs in each window and pane before window/pane specific commands. Useful for setting up interpreter versions. pre_window: - asdf local elixir 1.6.1 - asdf local erlang 20.2.2 - asdf local elm 0.18.0 - asdf local nodejs 9.6.0 # Specifies (by name or index) which window will be selected on project startup. If not set, the first window is used. startup_window: editor windows: - editor: vim - tests: mix test.watch - ex_console: iex -S mix - server: iex -S mix phx.server - elm_console: elm repl - dbconsole: psql phoenix_and_elm_dev - grip: grip
# ~/.tmuxinator/phoenix_and_elm.yml name: phoenix_and_elm root: ~/elixir/phoenix_and_elm # Runs before everything. Use it to start daemons etc. on_project_first_start: - mix deps.get - mix compile --force # - open --background http://localhost:3000 - open --background http://localhost:4000 # Grip - open --background http://localhost:6419 on_project_start: - brew services start postgresql # - brew services start redis # - mailcatcher on_project_stop: # - brew services stop postgresql # - brew services stop redis on_project_exit: # - brew services stop postgresql # - brew services stop redis # Runs in each window and pane before window/pane specific commands. Useful for setting up interpreter versions. pre_window: - asdf local elixir 1.6.1 - asdf local erlang 20.2.2 - asdf local elm 0.18.0 - asdf local nodejs 9.6.1 # Specifies (by name or index) which window will be selected on project startup. If not set, the first window is used. startup_window: editor windows: - editor: vim - tests: mix test.watch - ex_console: iex -S mix - server: iex -S mix phx.server - elm_console: elm repl - dbconsole: psql phoenix_and_elm_dev - grip: grip
Update from Hackage at 2018-07-12T19:19:15Z
homepage: https://github.com/metrix-ai/primitive-extras changelog-type: '' hash: 0fcd60edb662a081bd9e94395329cb58df89e798ef1c4722e049a0fe2edbe1c0 test-bench-deps: {} maintainer: Metrix Ninjas <ninjas@metrix.ai> synopsis: Extras for the "primitive" library changelog: '' basic-deps: base: ! '>=4.7 && <5' deferred-folds: ! '>=0.6 && <0.7' foldl: ! '>=1 && <2' primitive: ! '>=0.6.4 && <0.7' profunctors: ! '>=5 && <6' all-versions: - '0.1' - '0.1.1' - '0.1.2' - '0.1.2.1' - '0.1.2.2' - '0.1.3' - '0.1.3.1' - '0.1.4' - '0.1.5' - '0.1.6' - '0.1.7' author: Metrix Ninjas <ninjas@metrix.ai> latest: '0.1.7' description-type: haddock description: '' license-name: MIT
homepage: https://github.com/metrix-ai/primitive-extras changelog-type: '' hash: 9c0d3317df83602ac03069868e78efb9e48001f0315a2381c8c66835d6904190 test-bench-deps: {} maintainer: Metrix Ninjas <ninjas@metrix.ai> synopsis: Extras for the "primitive" library changelog: '' basic-deps: base: ! '>=4.7 && <5' deferred-folds: ! '>=0.6 && <0.7' foldl: ! '>=1 && <2' primitive: ! '>=0.6.4 && <0.7' profunctors: ! '>=5 && <6' all-versions: - '0.1' - '0.1.1' - '0.1.2' - '0.1.2.1' - '0.1.2.2' - '0.1.3' - '0.1.3.1' - '0.1.4' - '0.1.5' - '0.1.6' - '0.1.7' - '0.1.7.1' author: Metrix Ninjas <ninjas@metrix.ai> latest: '0.1.7.1' description-type: haddock description: '' license-name: MIT
Update from Hackage at 2016-01-15T18:16:05+0000
homepage: https://github.com/kylcarte/type-combinators changelog-type: '' hash: fe1f2af500a8989abaa4645ec6f52c0aaedef6482694360dd0f94fce064ab21b test-bench-deps: {} maintainer: kylcarte@gmail.com synopsis: A collection of data types for type-level programming changelog: '' basic-deps: base: ! '>=4.8 && <4.9' all-versions: - '0.1.0.0' - '0.1.0.1' - '0.1.2.0' - '0.1.2.1' - '0.2.0.0' - '0.2.1.0' author: Kyle Carter latest: '0.2.1.0' description-type: haddock description: '' license-name: BSD3
homepage: https://github.com/kylcarte/type-combinators changelog-type: '' hash: fba30d80af1e5dafe489bac106b008f781fc45f35c35e97be4e3ffbbff0812ed test-bench-deps: {} maintainer: kylcarte@gmail.com synopsis: A collection of data types for type-level programming changelog: '' basic-deps: base: ! '>=4.8 && <4.9' all-versions: - '0.1.0.0' - '0.1.0.1' - '0.1.2.0' - '0.1.2.1' - '0.2.0.0' - '0.2.1.0' - '0.2.2.0' author: Kyle Carter latest: '0.2.2.0' description-type: haddock description: '' license-name: BSD3
Update from Hackage at 2021-04-06T09:34:47Z
homepage: '' changelog-type: '' hash: 16b8e821f41304c7baa60d1036a6693caf2f7104e4983b4c7a000e2f3956b083 test-bench-deps: base: '>=4 && <5' hspec: -any hexpat: '>=0.20 && <0.21' hexpat-streamparser: ==0.1.2 maintainer: kristof@resonata.be synopsis: '' changelog: '' basic-deps: bytestring: '>=0.10 && <0.11' List: '>=0.6 && <0.7' base: '>=4.9 && <5' parser-combinators: '>=1.2 && <1.3' text: '>=1.2 && <1.3' cps-except: '>=0.0.1.0' mtl: '>=2.2 && <2.3' hexpat: '>=0.20 && <0.21' transformers: '>=0.5 && <0.6' all-versions: - 0.0.1 - 0.0.2 - 0.1.0 - 0.1.1 - 0.1.2 author: '' latest: 0.1.2 description-type: haddock description: streaming xml parser combinators using hexpat license-name: BSD-3-Clause
homepage: '' changelog-type: '' hash: 7752484375e8040b23eb80bfce7c335e44573b18958607374f56b7029af0824e test-bench-deps: base: '>=4 && <5' hspec: -any hexpat: '>=0.20 && <0.21' hexpat-streamparser: ==0.1.3 maintainer: kristof@resonata.be synopsis: '' changelog: '' basic-deps: bytestring: '>=0.10 && <0.11' List: '>=0.6 && <0.7' base: '>=4.9 && <5' parser-combinators: '>=1.2 && <1.3' text: '>=1.2 && <1.3' cps-except: '>=0.0.1.2' mtl: '>=2.2 && <2.3' hexpat: '>=0.20 && <0.21' transformers: '>=0.5 && <0.6' all-versions: - 0.0.1 - 0.0.2 - 0.1.0 - 0.1.1 - 0.1.2 - 0.1.3 author: '' latest: 0.1.3 description-type: haddock description: streaming xml parser combinators using hexpat license-name: BSD-3-Clause
Use Apache foundation's archive url for solr zip file. Our version is so old that it has disappeared from mirrors.
--- solr_path: /usr/local/share/solr solr_log_path: /var/log/solr solr_user: solr solr_group: solr cache_path: /tmp/solr-cache # Container folder for solr downloads #solr_url: http://www.nic.funet.fi/pub/mirrors/apache.org/lucene/solr/ solr_url: ftp://ftp.funet.fi/pub/mirrors/apache.org/lucene/solr/ # Version solr_version: 4.10.4 solr_drupal_files: - elevate.xml - mapping-ISOLatin1Accent.txt - protwords.txt - schema_extra_fields.xml - schema_extra_types.xml - schema.xml - solrconfig_extra.xml - solrconfig.xml - solrcore.properties - stopwords.txt - synonyms.txt
--- solr_path: /usr/local/share/solr solr_log_path: /var/log/solr solr_user: solr solr_group: solr cache_path: /tmp/solr-cache # Container folder for solr downloads #solr_url: http://www.nic.funet.fi/pub/mirrors/apache.org/lucene/solr/ solr_url: https://archive.apache.org/dist/lucene/solr/ # Version solr_version: 4.10.4 solr_drupal_files: - elevate.xml - mapping-ISOLatin1Accent.txt - protwords.txt - schema_extra_fields.xml - schema_extra_types.xml - schema.xml - solrconfig_extra.xml - solrconfig.xml - solrcore.properties - stopwords.txt - synonyms.txt
Test utilities before running unit tests
steps: - task: DownloadBuildArtifacts@0 inputs: artifactName: imobiledevice-net - script: | unzip $SYSTEM_ARTIFACTSDIRECTORY/imobiledevice-net/iMobileDevice-net.*.nupkg -d $BUILD_SOURCESDIRECTORY/zip ls -l $BUILD_SOURCESDIRECTORY/zip/runtimes/$RID/native export LD_LIBRARY_PATH=$BUILD_SOURCESDIRECTORY/zip/runtimes/$RID/native:$LD_LIBRARY_PATH dotnet test iMobileDevice.Generator.Tests/iMobileDevice.Generator.Tests.csproj dotnet test iMobileDevice.Tests/iMobileDevice.Tests.csproj displayName: Run unit tests - script: | chmod +x $BUILD_SOURCESDIRECTORY/zip/runtimes/$RID/native/iproxy chmod +x $BUILD_SOURCESDIRECTORY/zip/runtimes/$RID/native/idevice_id $BUILD_SOURCESDIRECTORY/zip/runtimes/$RID/native/iproxy --help $BUILD_SOURCESDIRECTORY/zip/runtimes/$RID/native/idevice_id --help displayName: Test utilities - script: | mkdir packages cp $SYSTEM_ARTIFACTSDIRECTORY/imobiledevice-net/*.nupkg packages/ cp $SYSTEM_ARTIFACTSDIRECTORY/imobiledevice-net/*.props iMobileDevice.IntegrationTest.netcoreapp20/ ls packages/ cd iMobileDevice.IntegrationTest.netcoreapp20 dotnet run displayName: Run integration tests
steps: - task: DownloadBuildArtifacts@0 inputs: artifactName: imobiledevice-net - script: | unzip $SYSTEM_ARTIFACTSDIRECTORY/imobiledevice-net/iMobileDevice-net.*.nupkg -d $BUILD_SOURCESDIRECTORY/zip ls -l $BUILD_SOURCESDIRECTORY/zip/runtimes/$RID/native - script: | chmod +x $BUILD_SOURCESDIRECTORY/zip/runtimes/$RID/native/iproxy chmod +x $BUILD_SOURCESDIRECTORY/zip/runtimes/$RID/native/idevice_id $BUILD_SOURCESDIRECTORY/zip/runtimes/$RID/native/iproxy --help $BUILD_SOURCESDIRECTORY/zip/runtimes/$RID/native/idevice_id --help displayName: Test utilities - script: | export LD_LIBRARY_PATH=$BUILD_SOURCESDIRECTORY/zip/runtimes/$RID/native:$LD_LIBRARY_PATH dotnet test iMobileDevice.Generator.Tests/iMobileDevice.Generator.Tests.csproj dotnet test iMobileDevice.Tests/iMobileDevice.Tests.csproj displayName: Run unit tests - script: | mkdir packages cp $SYSTEM_ARTIFACTSDIRECTORY/imobiledevice-net/*.nupkg packages/ cp $SYSTEM_ARTIFACTSDIRECTORY/imobiledevice-net/*.props iMobileDevice.IntegrationTest.netcoreapp20/ ls packages/ cd iMobileDevice.IntegrationTest.netcoreapp20 dotnet run displayName: Run integration tests
Update mongodb endpoint with new IP
apiVersion: v1 kind: Service metadata: name: mongodb namespace: swosh spec: type: ClusterIP ports: - protocol: TCP port: 27017 --- apiVersion: v1 kind: Endpoints metadata: name: mongodb namespace: swosh subsets: - addresses: - ip: 192.168.1.5 ports: - port: 27017 --- apiVersion: traefik.containo.us/v1alpha1 kind: Middleware metadata: name: security-headers namespace: swosh labels: expose: all spec: headers: # https://scotthelme.co.uk/a-new-security-header-feature-policy/ featurePolicy: "accelerometer 'none';ambient-light-sensor 'none';autoplay 'none';camera 'none';encrypted-media 'none';fullscreen 'self';geolocation 'self';gyroscope 'none';magnetometer 'none';microphone 'none';midi 'none';payment 'self';picture-in-picture 'none';speaker 'self';sync-xhr 'none';usb 'none';vibrate 'none';vr 'none';"
apiVersion: v1 kind: Service metadata: name: mongodb namespace: swosh spec: type: ClusterIP ports: - protocol: TCP port: 27017 --- apiVersion: v1 kind: Endpoints metadata: name: mongodb namespace: swosh subsets: - addresses: - ip: 172.16.16.10 ports: - port: 27017 --- apiVersion: traefik.containo.us/v1alpha1 kind: Middleware metadata: name: security-headers namespace: swosh labels: expose: all spec: headers: # https://scotthelme.co.uk/a-new-security-header-feature-policy/ featurePolicy: "accelerometer 'none';ambient-light-sensor 'none';autoplay 'none';camera 'none';encrypted-media 'none';fullscreen 'self';geolocation 'self';gyroscope 'none';magnetometer 'none';microphone 'none';midi 'none';payment 'self';picture-in-picture 'none';speaker 'self';sync-xhr 'none';usb 'none';vibrate 'none';vr 'none';"
Update repository packages list before run
--- - name : Install packages without specific configuration apt : name : "{{ item }}" state : present with_items : "{{ base_packages_simples_list }}"
--- - name : Install packages without specific configuration apt : name : "{{ item }}" state : present update_cache : True with_items : "{{ base_packages_simples_list }}"
Fix linter for redis chart
description: Chart for Redis engine: gotpl home: http://redis.io/ keywords: - redis - keyvalue - database maintainers: - email: containers@bitnami.com name: Bitnami name: redis sources: - https://github.com/bitnami/bitnami-docker-redis version: 1.1.0
apiVersion: v1 description: Chart for Redis engine: gotpl home: http://redis.io/ keywords: - redis - keyvalue - database maintainers: - email: containers@bitnami.com name: Bitnami name: redis sources: - https://github.com/bitnami/bitnami-docker-redis version: 1.1.0
Allow DATABASE_URL to be used for any enviroment
default: &default adapter: postgresql encoding: utf8 host: localhost port: 5432 pool: <%= ENV['DB_POOL'] || ENV['MAX_THREADS'] || 5 %> timeout: 5000 development: <<: *default database: ohana_api_development # Warning: The database defined as "test" will be erased and # re-generated from your development database when you run "rake". # Do not set this db to the same as development or production. test: <<: *default database: ohana_api_test production: pool: <%= ENV['DB_POOL'] || ENV['MAX_THREADS'] || 5 %> url: <%= ENV['DATABASE_URL'] %>
default: &default adapter: postgresql encoding: utf8 host: localhost port: 5432 pool: <%= ENV['DB_POOL'] || ENV['MAX_THREADS'] || 5 %> url: <%= ENV['DATABASE_URL'] %> timeout: 5000 development: <<: *default database: ohana_api_development # Warning: The database defined as "test" will be erased and # re-generated from your development database when you run "rake". # Do not set this db to the same as development or production. test: <<: *default database: ohana_api_test production: pool: <%= ENV['DB_POOL'] || ENV['MAX_THREADS'] || 5 %> url: <%= ENV['DATABASE_URL'] %>
Exclude windows from testing matrix
name: Testing package on: [push, pull_request] jobs: run: runs-on: ${{ matrix.operating-system }} strategy: matrix: operating-system: [ubuntu-latest, windows-latest, macOS-latest] php-versions: ['7.2', '7.3', '7.4'] name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }} steps: - name: Checkout uses: actions/checkout@v1 - name: Setup PHP uses: shivammathur/setup-php@v1 with: php-version: ${{ matrix.php-versions }} extensions: intl - name: Get composer cache directory id: composer-cache run: echo "::set-output name=dir::$(composer config cache-files-dir)" - name: Cache composer dependencies uses: actions/cache@v1 with: path: ${{ steps.composer-cache.outputs.dir }} # Use composer.json for key, if composer.lock is not committed. # key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} restore-keys: ${{ runner.os }}-composer- - name: Validate composer.json and composer.lock run: composer validate - name: Install dependencies run: composer install --prefer-dist --no-progress --no-suggest --optimize-autoloader - name: Run test suite run: composer run-script test - name: Run style-checking run: composer run-script check-style
name: Testing package on: [push, pull_request] jobs: run: runs-on: ${{ matrix.operating-system }} strategy: matrix: operating-system: [ubuntu-latest, macOS-latest] php-versions: ['7.2', '7.3', '7.4'] name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }} steps: - name: Checkout uses: actions/checkout@v1 - name: Setup PHP uses: shivammathur/setup-php@v1 with: php-version: ${{ matrix.php-versions }} extensions: intl - name: Get composer cache directory id: composer-cache run: echo "::set-output name=dir::$(composer config cache-files-dir)" - name: Cache composer dependencies uses: actions/cache@v1 with: path: ${{ steps.composer-cache.outputs.dir }} # Use composer.json for key, if composer.lock is not committed. # key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} restore-keys: ${{ runner.os }}-composer- - name: Validate composer.json and composer.lock run: composer validate - name: Install dependencies run: composer install --prefer-dist --no-progress --no-suggest --optimize-autoloader - name: Run test suite run: composer run-script test - name: Run style-checking run: composer run-script check-style
Fix PRs target to only run in upstream repo
name: Add bugs to bugs project on: issues: types: - opened pull_request_target: types: - opened jobs: add-to-project: name: Add issue to project runs-on: ubuntu-latest steps: - name: Generate token id: generate_token uses: tibdex/github-app-token@v1.5.2 with: app_id: ${{ secrets.APP_ID }} private_key: ${{ secrets.APP_PEM }} - uses: actions/add-to-project@v0.0.3 with: project-url: https://github.com/orgs/erlang/projects/13 github-token: ${{ steps.generate_token.outputs.token }}
name: Add bugs to bugs project on: issues: types: - opened pull_request_target: types: - opened jobs: add-to-project: name: Add issue to project runs-on: ubuntu-latest if: github.repository == 'erlang/otp' steps: - name: Generate token id: generate_token uses: tibdex/github-app-token@v1.5.2 with: app_id: ${{ secrets.APP_ID }} private_key: ${{ secrets.APP_PEM }} - uses: actions/add-to-project@v0.0.3 with: project-url: https://github.com/orgs/erlang/projects/13 github-token: ${{ steps.generate_token.outputs.token }}
Send the CODENAME ENV to the image.
agent: build: . volumes: - ./:/go/src/github.com/buildkite/agent
agent: build: . volumes: - ./:/go/src/github.com/buildkite/agent environment: - CODENAME
Bump actions/checkout from 2 to 2.3.4
name: Tests on: [pull_request] jobs: phpunit: name: PHP ${{ matrix.php }} runs-on: ubuntu-latest strategy: fail-fast: false matrix: php: ['7.1', '7.2', '7.3', '7.4', '8.0'] steps: - name: Checkout uses: actions/checkout@v2 - name: Install PHP uses: shivammathur/setup-php@2.11.0 with: php-version: ${{ matrix.php }} env: COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Get composer cache directory id: composer-cache run: echo "::set-output name=dir::$(composer config cache-files-dir)" - name: Cache composer dependencies uses: actions/cache@v2.1.5 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} restore-keys: ${{ runner.os }}-composer- - name: Install dependencies run: composer update --prefer-dist --no-interaction --no-progress --optimize-autoloader - name: PHP Unit tests run: vendor/bin/phpunit --verbose
name: Tests on: [pull_request] jobs: phpunit: name: PHP ${{ matrix.php }} runs-on: ubuntu-latest strategy: fail-fast: false matrix: php: ['7.1', '7.2', '7.3', '7.4', '8.0'] steps: - name: Checkout uses: actions/checkout@v2.3.4 - name: Install PHP uses: shivammathur/setup-php@2.11.0 with: php-version: ${{ matrix.php }} env: COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Get composer cache directory id: composer-cache run: echo "::set-output name=dir::$(composer config cache-files-dir)" - name: Cache composer dependencies uses: actions/cache@v2.1.5 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} restore-keys: ${{ runner.os }}-composer- - name: Install dependencies run: composer update --prefer-dist --no-interaction --no-progress --optimize-autoloader - name: PHP Unit tests run: vendor/bin/phpunit --verbose
Revert "chore: make git config for user global"
name: Release on: push: branches: - master jobs: release: runs-on: ubuntu-latest steps: - name: Check out repository uses: actions/checkout@v2 - name: Use Node.js 14.x uses: actions/setup-node@v2 with: node-version: 14.x - name: Get yarn cache directory path id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)" - name: Cache Node.js modules uses: actions/cache@v2 with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} key: ${{ runner.OS }}-node-14.x-${{ hashFiles('**/yarn.lock') }} restore-keys: | ${{ runner.OS }}-node-14.x- ${{ runner.OS }}-node- ${{ runner.OS }}- - name: Install dependencies run: yarn install --frozen-lockfile - name: Prepare release run: | echo '//registry.npmjs.org/:_authToken=${NPM_TOKEN}' > .npmrc git config --global user.name "Hops release bot" git config --global user.email "45232789+hops-untool@users.noreply.github.com" - name: Release env: GH_TOKEN: ${{ secrets.GH_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} run: yarn release --yes
name: Release on: push: branches: - master jobs: release: runs-on: ubuntu-latest steps: - name: Check out repository uses: actions/checkout@v2 - name: Use Node.js 14.x uses: actions/setup-node@v2 with: node-version: 14.x - name: Get yarn cache directory path id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)" - name: Cache Node.js modules uses: actions/cache@v2 with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} key: ${{ runner.OS }}-node-14.x-${{ hashFiles('**/yarn.lock') }} restore-keys: | ${{ runner.OS }}-node-14.x- ${{ runner.OS }}-node- ${{ runner.OS }}- - name: Install dependencies run: yarn install --frozen-lockfile - name: Prepare release run: | echo '//registry.npmjs.org/:_authToken=${NPM_TOKEN}' > .npmrc git config user.name "Hops release bot" git config user.email "45232789+hops-untool@users.noreply.github.com" - name: Release env: GH_TOKEN: ${{ secrets.GH_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} run: yarn release --yes
Use correct docker repo name
project_name: prometheus-nginxlog-exporter builds: - env: - CGO_ENABLED=0 - GO111MODULE=on goos: - linux goarch: - amd64 checksum: name_template: 'checksums.txt' snapshot: name_template: "{{ .Tag }}-next" changelog: sort: asc filters: exclude: - '^docs:' - '^test:' dockers: - dockerfile: .goreleaser.Dockerfile image_templates: - quay.io/martin-helmich/prometheus-nginxlog-exporter:latest - quay.io/martin-helmich/prometheus-nginxlog-exporter:stable - quay.io/martin-helmich/prometheus-nginxlog-exporter:v{{ .Major }} - quay.io/martin-helmich/prometheus-nginxlog-exporter:v{{ .Major }}.{{ .Minor }} - quay.io/martin-helmich/prometheus-nginxlog-exporter:{{ .Tag }} binaries: - prometheus-nginxlog-exporter goos: linux goarch: amd64
project_name: prometheus-nginxlog-exporter builds: - env: - CGO_ENABLED=0 - GO111MODULE=on goos: - linux goarch: - amd64 checksum: name_template: 'checksums.txt' snapshot: name_template: "{{ .Tag }}-next" changelog: sort: asc filters: exclude: - '^docs:' - '^test:' dockers: - dockerfile: .goreleaser.Dockerfile image_templates: - quay.io/martinhelmich/prometheus-nginxlog-exporter:latest - quay.io/martinhelmich/prometheus-nginxlog-exporter:stable - quay.io/martinhelmich/prometheus-nginxlog-exporter:v{{ .Major }} - quay.io/martinhelmich/prometheus-nginxlog-exporter:v{{ .Major }}.{{ .Minor }} - quay.io/martinhelmich/prometheus-nginxlog-exporter:{{ .Tag }} binaries: - prometheus-nginxlog-exporter goos: linux goarch: amd64
Replace docker call with /bin/consul
--- - hosts: consul_servers tasks: - name: check port 8300 open between all consul servers wait_for: host: "{{ hostvars[item].ansible_default_ipv4.address }}" port: 8300 with_items: groups['consul_servers'] - name: check port 8302 open between all consul servers wait_for: host: "{{ hostvars[item].ansible_default_ipv4.address }}" port: 8302 timeout: 10 with_items: groups['consul_servers'] - name: get list of consul servers that are wan gossip pool members sudo: yes shell: docker exec consul consul members -wan | awk '$4 == "server" { print $2 }' | cut -f1 -d":" register: members changed_when: no - name: get list of all consul servers for wan gossip pool set_fact: servers="{% for host in groups['consul_servers'] %}{{ hostvars[host].ansible_default_ipv4.address }}{% if not loop.last %} {% endif %}{% endfor %}" - name: get count of consul servers that are not wan gossip pool members set_fact: non_member_count="{{ servers.split(' ') | difference(members.stdout_lines | list) | length }}" - name: join all consul servers to wan gossip pool sudo: yes command: docker exec consul consul join -wan "{{ servers }}" when: non_member_count != "0"
--- - hosts: consul_servers tasks: - name: check port 8300 open between all consul servers wait_for: host: "{{ hostvars[item].ansible_default_ipv4.address }}" port: 8300 with_items: groups['consul_servers'] - name: check port 8302 open between all consul servers wait_for: host: "{{ hostvars[item].ansible_default_ipv4.address }}" port: 8302 timeout: 10 with_items: groups['consul_servers'] - name: get list of consul servers that are wan gossip pool members sudo: yes shell: /bin/consul members -wan | awk '$4 == "server" { print $2 }' | cut -f1 -d":" register: members changed_when: no - name: get list of all consul servers for wan gossip pool set_fact: servers="{% for host in groups['consul_servers'] %}{{ hostvars[host].ansible_default_ipv4.address }}{% if not loop.last %} {% endif %}{% endfor %}" - name: get count of consul servers that are not wan gossip pool members set_fact: non_member_count="{{ servers.split(' ') | difference(members.stdout_lines | list) | length }}" - name: join all consul servers to wan gossip pool sudo: yes command: /bin/consul join -wan "{{ servers }}" when: non_member_count != "0"
Update CI to use unversioned jobs template
- project: templates: - check-requirements - lib-forward-testing-python3 - openstack-cover-jobs - openstack-python3-yoga-jobs - periodic-stable-jobs - publish-openstack-docs-pti - release-notes-jobs-python3
- project: templates: - check-requirements - lib-forward-testing-python3 - openstack-cover-jobs - openstack-python3-jobs - periodic-stable-jobs - publish-openstack-docs-pti - release-notes-jobs-python3
Update CI to use unversioned jobs template
- project: templates: - check-requirements - lib-forward-testing-python3 - openstack-python3-wallaby-jobs - periodic-stable-jobs - publish-openstack-docs-pti - release-notes-jobs-python3
- project: templates: - check-requirements - lib-forward-testing-python3 - openstack-python3-jobs - periodic-stable-jobs - publish-openstack-docs-pti - release-notes-jobs-python3
Fix unable to process links for deployment
releases: - name: bits-service version: <%= ENV.fetch('RELEASE_VERSION', 'latest') %> jobs: - name: bits_service_z1 instances: 1 persistent_disk: 6064 templates: - name: bits-service release: bits-service consumes: nats: nil - name: route_registrar release: cf consumes: nats: nil - name: consul_agent release: cf consumes: nats: nil properties: consul: agent: services: bits-service: {} route_registrar: routes: - name: bits-service port: 80 registration_interval: 20s tags: component: bits-service uris: - (( concat "bits-service." properties.system_domain )) resource_pool: medium_z1 networks: - name: cf1
releases: - name: bits-service version: <%= ENV.fetch('RELEASE_VERSION', 'latest') %> jobs: - name: bits_service_z1 instances: 1 persistent_disk: 6064 templates: - name: bits-service release: bits-service consumes: nats: nil - name: route_registrar release: cf consumes: nats: nil - name: consul_agent release: cf consumes: nats: nil consul_client: nil consul_common: nil consul_server: nil properties: consul: agent: services: bits-service: {} route_registrar: routes: - name: bits-service port: 80 registration_interval: 20s tags: component: bits-service uris: - (( concat "bits-service." properties.system_domain )) resource_pool: medium_z1 networks: - name: cf1
Fix whitespace to follow style guide
{% set name = "pyxid" %} {% set version = "1.0" %} {% set sha256 = "e689bce2ed8ed4bff7174a3a79f8b639ebf6356807aec7e9da481217313214ff" %} package: name: pyxid version: {{ version }} source: fn: pyxid-{{ version }}.tar.gz url: https://github.com/cedrus-opensource/pyxid/archive/{{ version }}.tar.gz sha256: {{ sha256 }} build: number: 0 script: python setup.py install --single-version-externally-managed --record record.txt skip: true # [py3k] requirements: build: - python - setuptools - pyserial >=2.5 run: - python - pyserial >=2.5 test: imports: - pyxid about: home: http://www.github.com/cedrus-opensource/pyxid/ summary: 'Pure python library for communicating with Cedrus XID and StimTracker devices.' license: BSD-3 license_family: BSD license_file: COPYING extra: recipe-maintainers: - kastman
{% set name = "pyxid" %} {% set version = "1.0" %} {% set sha256 = "e689bce2ed8ed4bff7174a3a79f8b639ebf6356807aec7e9da481217313214ff" %} package: name: pyxid version: {{ version }} source: fn: pyxid-{{ version }}.tar.gz url: https://github.com/cedrus-opensource/pyxid/archive/{{ version }}.tar.gz sha256: {{ sha256 }} build: number: 0 script: python setup.py install --single-version-externally-managed --record record.txt skip: true # [py3k] requirements: build: - python - setuptools - pyserial >=2.5 run: - python - pyserial >=2.5 test: imports: - pyxid about: home: http://www.github.com/cedrus-opensource/pyxid/ summary: 'Pure python library for communicating with Cedrus XID and StimTracker devices.' license: BSD-3 license_family: BSD license_file: COPYING extra: recipe-maintainers: - kastman
Update from Hackage at 2018-12-01T18:39:19Z
homepage: https://github.com/cartazio/securehash-sha3 changelog-type: markdown hash: e6dd451ad6922d3c4374270ca16f757a3f4c471d110a2199a90caa43a07ee63f test-bench-deps: {} maintainer: carter at wellposed dot com synopsis: simple static linked SHA3 using private symbols and the ref impl changelog: ! '# Revision history for SecureHash-SHA3 ## 0.1.0.2 -- 2018-12-01 * First version that builds with both GCC and CLANG ' basic-deps: bytestring: ! '>=0.9 && <0.11' base: ! '>=4.3 && <4.13' all-versions: - '0.1.0.1' - '0.1.0.2' author: Carter Tazio Schonwald latest: '0.1.0.2' description-type: haddock description: a self contained and linker friendly one stop shop for SHA3 kit based on the keccak reference impls license-name: BSD2
homepage: https://github.com/cartazio/securehash-sha3 changelog-type: markdown hash: e6dd451ad6922d3c4374270ca16f757a3f4c471d110a2199a90caa43a07ee63f test-bench-deps: {} maintainer: carter at wellposed dot com synopsis: simple static linked SHA3 using private symbols and the ref impl changelog: ! '# Revision history for SecureHash-SHA3 ## 0.1.0.2 -- 2018-12-01 * First version that builds with both GCC and CLANG ' basic-deps: bytestring: ! '>=0.9 && <0.11' base: ! '>=4.3 && <4.13' all-versions: - '0.1.0.2' author: Carter Tazio Schonwald latest: '0.1.0.2' description-type: haddock description: a self contained and linker friendly one stop shop for SHA3 kit based on the keccak reference impls license-name: BSD2
Move Python interpreter and feedvalidator path to config
TRANSITLAND_DATASTORE_AUTH_TOKEN: iamallowedtotouchthis SIDEKIQ_DASHBOARD_USERNAME: onlyneedonproduction SIDEKIQ_DASHBOARD_PASSWORD: onlyneedonproduction TRANSITLAND_FEED_REGISTRY_PATH: <%= Rails.root.join('tmp', 'transitland-feed-registry') %> TRANSITLAND_FEED_DATA_PATH: <%= Rails.root.join('tmp', 'transitland-feed-data') %> TRANSITLAND_DATASTORE_HOST: http://localhost:3000 AUTO_CONFLATE_STOPS_WITH_OSM: 'true' TYR_AUTH_TOKEN: 'get one from mapzen.com/developers' UPLOAD_FEED_EATER_ARTIFACTS_TO_S3: 'true' ARTIFACT_UPLOAD_S3_REGION: 'us-east-1' ARTIFACT_UPLOAD_S3_BUCKET: 'name of an S3 bucket' AWS_ACCESS_KEY_ID: 'xxxxxxxxx' AWS_SECRET_ACCESS_KEY: 'xxxxxx'
TRANSITLAND_DATASTORE_AUTH_TOKEN: iamallowedtotouchthis SIDEKIQ_DASHBOARD_USERNAME: onlyneedonproduction SIDEKIQ_DASHBOARD_PASSWORD: onlyneedonproduction TRANSITLAND_FEED_REGISTRY_PATH: <%= Rails.root.join('tmp', 'transitland-feed-registry') %> TRANSITLAND_FEED_DATA_PATH: <%= Rails.root.join('tmp', 'transitland-feed-data') %> TRANSITLAND_DATASTORE_HOST: http://localhost:3000 AUTO_CONFLATE_STOPS_WITH_OSM: 'true' TYR_AUTH_TOKEN: 'get one from mapzen.com/developers' UPLOAD_FEED_EATER_ARTIFACTS_TO_S3: 'true' ARTIFACT_UPLOAD_S3_REGION: 'us-east-1' ARTIFACT_UPLOAD_S3_BUCKET: 'name of an S3 bucket' AWS_ACCESS_KEY_ID: 'xxxxxxxxx' AWS_SECRET_ACCESS_KEY: 'xxxxxx' PYTHON_PATH: './virtualenv/bin/python' FEEDVALIDATOR_PATH: './virtualenv/bin/feedvalidator.py'
Remove auto deployement lines for st2contrib and st2incubator.
--- pack_group: st2packs repositories: # To deploy a pack from a forked st2contrib on GitHub update & uncomment the following # ! packs deploy me/st2contrib/<pack_name> #<my-GitHub-user>/st2contrib: # repo: "https://github.com/<my-GitHub-user>/st2contrib.git" # subtree: true #If you have your own ST2 Pack #my-st2: # repo: "https://github.com/<my-GitHub-user>/my-st2.git" # subtree: false # auto_deployment: # branch: "master" # notify_channel: "my-chatops-channel" st2incubator: repo: "https://github.com/StackStorm/st2incubator.git" subtree: true auto_deployment: branch: "master" notify_channel: "community" st2contrib: repo: "https://github.com/StackStorm/st2contrib.git" subtree: true auto_deployment: branch: "master" notify_channel: "community"
--- pack_group: st2packs repositories: # To deploy a pack from a forked st2contrib on GitHub update & uncomment the following # ! packs deploy me/st2contrib/<pack_name> #<my-GitHub-user>/st2contrib: # repo: "https://github.com/<my-GitHub-user>/st2contrib.git" # subtree: true #If you have your own ST2 Pack #my-st2: # repo: "https://github.com/<my-GitHub-user>/my-st2.git" # subtree: false # auto_deployment: # branch: "master" # notify_channel: "my-chatops-channel" st2incubator: repo: "https://github.com/StackStorm/st2incubator.git" subtree: true st2contrib: repo: "https://github.com/StackStorm/st2contrib.git" subtree: true
Build for Darwin and Windows in CI
version: 2 executorType: machine jobs: build: environment: GOPATH: /home/circleci/.go_workspace working_directory: $GOPATH/src/github.com/moby/tool steps: - checkout - run: go get github.com/golang/lint/golint - run: cd $GOPATH/src/github.com/moby/tool && make test
version: 2 executorType: machine jobs: build: environment: GOPATH: /home/circleci/.go_workspace working_directory: $GOPATH/src/github.com/moby/tool steps: - checkout - run: go get github.com/golang/lint/golint - run: cd $GOPATH/src/github.com/moby/tool && make test - run: cd $GOPATH/src/github.com/moby/tool && make clean && make GOOS=darwin - run: cd $GOPATH/src/github.com/moby/tool && make clean && make GOOS=windows
Update from Forestry.io - Updated Forestry configuration
--- new_page_extension: md auto_deploy: false admin_path: webhook_url: sections: - type: directory path: content/writings label: Writings create: all match: "**/*" new_doc_ext: ".mdx" upload_dir: uploads public_path: "/uploads" front_matter_path: '' use_front_matter_path: false file_template: ":filename:" build: preview_output_directory: public install_dependencies_command: npm install preview_docker_image: forestryio/node:12 mount_path: "/srv" working_dir: "/srv" instant_preview_command: npm run develop
--- new_page_extension: md auto_deploy: false admin_path: '' webhook_url: sections: - type: directory path: content/writings label: Writings create: all match: "**/*" new_doc_ext: mdx upload_dir: uploads public_path: "/uploads" front_matter_path: '' use_front_matter_path: false file_template: ":filename:" build: preview_output_directory: public install_dependencies_command: npm install preview_docker_image: forestryio/node:12 mount_path: "/srv" working_dir: "/srv" instant_preview_command: npm run develop
Revert "tests/kernel/obj_tracking: Filter cAVS 2.5 builds to prevent DSP host hangs"
tests: kernel.objects.tracking: tags: kernel platform_exclude: qemu_x86_tiny intel_adsp_cavs25
tests: kernel.objects.tracking: tags: kernel platform_exclude: qemu_x86_tiny
Update from Hackage at 2019-10-27T21:24:14Z
homepage: https://github.com/andrewthad/primitive-sort changelog-type: '' hash: 5cc048fa166660192bc0d0bce6d37ca9f0409f8ee1bffa3706d4967345e5a4d1 test-bench-deps: tasty-smallcheck: -any base: -any doctest: ! '>=0.10' primitive-sort: -any HUnit: -any smallcheck: -any gauge: -any containers: -any ghc-prim: -any tasty-quickcheck: -any tasty-hunit: -any random: -any tasty: -any QuickCheck: -any primitive: -any maintainer: andrew.thaddeus@gmail.com synopsis: Sort primitive arrays changelog: '' basic-deps: base: ! '>=0.4.9 && <5' contiguous: ! '>=0.2 && <0.5' ghc-prim: -any primitive: ! '>=0.6.4.0' all-versions: - 0.1.0.0 author: Andrew Martin latest: 0.1.0.0 description-type: markdown description: | # mergesort license-name: BSD-3-Clause
homepage: https://github.com/andrewthad/primitive-sort changelog-type: '' hash: 631f605f66d310e5677f7e32c87a0ea4b2d60efc2073db6b769b18b69212f798 test-bench-deps: tasty-smallcheck: -any base: -any doctest: ! '>=0.10' primitive-sort: -any HUnit: -any smallcheck: -any gauge: -any containers: -any ghc-prim: -any tasty-quickcheck: -any tasty-hunit: -any random: -any tasty: -any QuickCheck: -any primitive: -any maintainer: andrew.thaddeus@gmail.com synopsis: Sort primitive arrays changelog: '' basic-deps: base: ! '>=0.4.9 && <5' contiguous: ! '>=0.2 && <0.6' ghc-prim: -any primitive: ! '>=0.6.4.0' all-versions: - 0.1.0.0 author: Andrew Martin latest: 0.1.0.0 description-type: markdown description: | # mergesort license-name: BSD-3-Clause
Update osx_image for Travis CI
# ref. http://docs.travis-ci.com/user/languages/objective-c/ language: objective-c osx_image: xcode10 before_install: - gem install xcpretty script: set -o pipefail && travis_retry xcodebuild test -workspace CotEditor.xcworkspace -scheme CotEditor CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcpretty
# ref. http://docs.travis-ci.com/user/languages/objective-c/ language: objective-c osx_image: xcode10.1 before_install: - gem install xcpretty script: set -o pipefail && travis_retry xcodebuild test -workspace CotEditor.xcworkspace -scheme CotEditor CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcpretty