Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ci-scripts/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ cd $tmpdir
git clone https://${_gh_creds_prefix}github.com/eth-cscs/reframe.git
cd reframe
./bootstrap.sh
found_version=$(./bin/reframe -V | sed -e 's/ (.*)//g')
found_version=$(./bin/reframe -V | sed -e 's/\(.*\)\+.*/\1/g')
if [ $found_version != $version ]; then
echo "$0: version mismatch: found $found_version, but required $version" >&2
exit 1
Expand Down
2 changes: 1 addition & 1 deletion ci-scripts/genrelnotes.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def extract_release_notes(git_output, tag):
descr_line = '- %s (%s)' % (descr, pr)
sections[title_line].append(descr_line)

print('# ReFrame %s Release Notes' % curr_release)
print('# Release Notes')
for sec_title, sec_lines in sections.items():
print()
print(sec_title)
Expand Down