about summary refs log tree commit diff stats
path: root/RELEASE_GUIDE.md
Commit message (Expand)AuthorAgeFilesLines
* Add doap to release guideMichael Vetter2022-02-221-0/+2
* Fix spellinga13460542021-08-261-3/+3
* Mention manpages in release guideMichael Vetter2021-01-091-0/+4
* Create cmd to generate man pages for prof commandsMichael Vetter2020-12-041-0/+4
* Mention profnaity_version in release guideMichael Vetter2020-07-091-0/+1
* Update RELEASE_GUIDE.mdMichael Vetter2019-12-121-1/+0
* Update website info in release guideMichael Vetter2019-07-311-1/+1
* Update release guide with libprofanity infoMichael Vetter2019-06-111-0/+1
* Update profanity repo URLMichael Vetter2019-05-031-1/+1
* autotools: fix `make dist` commandDmitry Podgorny2019-03-041-33/+14
* Update RELEASE_GUIDE.mdJames Booth2019-01-161-2/+2
* Reformat RELEASE_GUIDE as md and add more infoMichael Vetter2019-01-151-0/+91
/ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
#!/bin/bash
# Repeatedly stop building until successive layers, and run all tests built.
#
# Assumes .subx files all come after .cc files.

set -e

cd `dirname $0`
# add C++ files one at a time
for f in [0-9]*cc
do
  echo "=== $f"
  ./build_and_test_until $f
done

# add SubX files one at a time
for f in [0-9]*.subx
do
  echo "=== $f"
  CFLAGS=-g ./subx translate $(../enumerate/enumerate --until $f |grep '\.subx$') -o foo  &&  ./subx run foo
done