forked from hpc/pavilion2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRELEASE.txt
138 lines (125 loc) · 5.41 KB
/
RELEASE.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
# This number should track progressive changes in this software, and correspond to git tags
# denoting releases. It is entirely independent of the the Pavilion's VERSION.
RELEASE=2.2
# Release History
## 2.3 Release Notes
- Added 'flatten_results' option to the base Pavilion config. Allows for
producing a separate result log line for each 'per_file' result, making
charting in Splunk significantly easier. The results can be significantly
larger, however, expecially on large machines.
- Added unified test run filtering in 'status' and 'result'.
- Added the 'list' command for searching test runs and series
- Added 'maint' command for maintanence operations.
- Results now include a 'uuid' key - A completely unique id for each test.
- Modules may now have nested paths (True lmod module organization)
- Updated permissions management.
- Backwards compatibility breaks
- 'fn' and 'n' result fields have been merged into 'per_file'.
- The 'status', and 'result' commands now search all available test runs
and select recent (1 day) tests by the current user on the current
machine. For the old behavior, use ``pav status last``, etc.
- Old tests will lack some expected properties for searching,
as that information has been consolidated into the 'attributes' file
which they won't have.
- 'test_node_list' in the results has been replaced with the much shorter
'test_node_list_short' key.
- The results command '-l' (--show-logs) option is now '-L'.
- The results command '--json' argument and '--oneline' argments were removed.
Use --summary instead.
## 2.2 Release notes
- All new test config parser.
- Variable references are now 'expressions'.
- In addition to variables, they can contain math and functions.
- `'hello {{world * 2}}'`
- Assuming 'world' has a value of 5, would be: 'hello 10'
- Iterations (formerly sub-strings) can now contain more than one variable.
This results in all combinations of the variables being used.
- `'Greetings: [~hello {{name}}{{num}}~,]'`
- With `name: ['bob', 'janet']` and `num: [1,2]` would result in:
- 'Greetings: hello bob1, hello bob2, hello janet1, hello janet2'
- per test permissions settings
```yaml
mytest:
group: secret_group
umask: '007'
```
- Backwards compatibility breaks
- All duplicate keys in configs are now detected and cause errors.
- Default values may no longer be specified using '{{foo?}}'
- Dashes are no longer allowed in Pavilion variable names.
- `'{{name-len}}'`
- You can no longer have nested 'sub-strings' (now called iterations).
- Not everything can be escaped in Pavilion strings anymore. This is now
limited to all normal python escapes
(https://docs.python.org/2.0/ref/strings.html),
plus '[', '{', and '~'.
- The results section is now 'result_parse'
- Result parsers plugins now have explicit argument default and validation settings,
and the _check_args method must return the modified argument dictionary.
(rather than None before)
```yaml
mytest:
variables:
unit_base: 100
result_parse:
regex:
speed:
regex: 'speed (\d+)'
result_evaluate:
speed_normalized: "speed / {{unit_base}}"
another_thing: '"some don''t string"'
```
- build.source_location has changed.
```yaml
mytest:
build:
source_path: mytest.zip
source_url: http://github.com/hpc/mytest/latest.zip
source_download: latest
- Build are now built in their final location, rather than in a tmp
location. This fixes the issues with symlinks (as they no longer
move, so they can be absolute), and issues with non-relocatable
builds.
- New config keys:
-
```yaml
mytest:
maintainer:
name: Paul Ferrell
email: pferrell@lanl.gov
```
## 2.1.2
- Fixed some regressions from the 2.1.1 release.
## 2.1.1
- Fixed speed of draw_table with new algorithm
- Fixed some name conflicts with the 'per_fullname' and 'per_name' result parser options.
- Fixed issue with pipe exceptions in pav results
- Fixed issue with slurm scheduler node selection.
- Fixed clean command exceptions
- Updated reserved result parser key list. Renamed 'errors' to 'pav_result_errors'.
- and many smaller bug fixes.
- Updated yaml_config version.
- Updated the ls and cat commands, merged the tree command into ls.
- Moved build code into its own module
- Added include/exclude_nodes option to slurm.
- Added a 'build' command. Like the 'run' command, but only builds.
- Added '--rebuild' option to both build and run (and the capability to do so)
- Added better build tracking output and verbosity under the 'run' command.
## 2.1
- Quite a few bugfixes.
- Simplified time output (and dropped pytz dependency)
- Updated regex parser.
- Migrated documentation to Readthedocs and restructured text format.
- Added API documentation
- Added some tutorials
- Add ls and cat commands
- Moved exception tracking to a single log file.
- Added the concept of hidden tests.
- Re-organized how deferred variables work.
- run.sh files are now regenerated when a test _run's
- test variables are now saved in the test run directory.
- Fixed RUN_COMPLETE files. They are now made when a test is finished,
fails, is cancelled, and in most error cases.
## 2.0
- All new Pavilion 2.0 redesign
- Pavilion was completely redesigned and reimplemented for this release.