dartoos-dev / eo_color

An elegant, object-oriented implementation of the Material Design color palettes and swatches.
MIT License
7 stars 2 forks source link

build(rultor): unset rebase option #44

Closed rafamizes closed 3 years ago

rafamizes commented 3 years ago

@rultor status

rultor commented 3 years ago

@rultor status

@rafamizes This is what's going on here:

More information about Rultor commands you can get here.

rafamizes commented 3 years ago

@rultor config

codecov[bot] commented 3 years ago

Codecov Report

Merging #44 (6376ac5) into master (211e06d) will not change coverage. The diff coverage is n/a.

Impacted file tree graph

@@            Coverage Diff            @@
##            master       #44   +/-   ##
=========================================
  Coverage   100.00%   100.00%           
=========================================
  Files           41        41           
  Lines          175       175           
=========================================
  Hits           175       175           

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 211e06d...6376ac5. Read the comment docs.

rultor commented 3 years ago

@rultor config

@rafamizes This is how I understand the .rultor.yml file in the root directory of your base branch:

<?xml version="1.0" encoding="UTF-8"?>
<p>
   <entry key="docker">
      <entry key="image">cirrusci/flutter:stable</entry>
      <entry key="as_root">true</entry>
   </entry>
   <entry key="architect">
      <item>rafamizes</item>
   </entry>
   <entry key="assets">
      <entry key="credentials.json">rafamizes/secret#assets/publishing/flutter/credentials.json</entry>
   </entry>
   <entry key="merge">
      <entry key="squash">true</entry>
      <entry key="rebase">true</entry>
      <entry key="script">flutter clean
flutter pub get
flutter format --set-exit-if-changed lib/ test/ example/
flutter analyze --no-current-package lib/ test/ example/
flutter test --no-pub --coverage
bash &lt;(curl -s https://codecov.io/bash)
flutter pub publish --dry-run
</entry>
   </entry>
   <entry key="release">
      <entry key="script">sed -i "s/^\(version:\).*/\1 $tag/" pubspec.yaml
sed -i "/\[Unreleased\]/a\\\n## [$tag] - $(date '+%F')" CHANGELOG.md
mkdir -p ~/.pub-cache
mv ../credentials.json ~/.pub-cache/credentials.json
flutter pub publish -f
git commit -am "version $tag"
git checkout master
git merge __rultor
git checkout __rultor</entry>
   </entry>
</p>

This page explains how to configure it.