Compare commits

...

3 Commits

Author SHA1 Message Date
TingluoHuang
fd3c9de49d release 2.267.1 runner. 2020-06-30 22:19:24 -04:00
eric sciple
0a27339b04 Fix trailing '.0' for Int64 values (#572) 2020-06-30 22:11:02 -04:00
Tingluo Huang
c776861f07 create 2.267.0 release 2020-06-23 14:20:17 -04:00
4 changed files with 9 additions and 3 deletions

View File

@@ -8,6 +8,7 @@
- Fix DataContract with Token service (#532) - Fix DataContract with Token service (#532)
- Skip search $PATH on command with fully qualified path (#526) - Skip search $PATH on command with fully qualified path (#526)
- Restore SELinux context on service file when SELinux is enabled (#525) - Restore SELinux context on service file when SELinux is enabled (#525)
- Fix trailing '.0' for Int64 values in ContextData (#572)
## Misc ## Misc
- Remove SPS/Token migration code. Remove GHES url manipulate code. (#513) - Remove SPS/Token migration code. Remove GHES url manipulate code. (#513)
- Add sub-step for developer flow for clarity (#523) - Add sub-step for developer flow for clarity (#523)

View File

@@ -1 +1 @@
<Update to ./src/runnerversion when creating release> 2.267.1

View File

@@ -42,7 +42,12 @@ namespace GitHub.DistributedTask.Pipelines.ContextData
var floored = Math.Floor(m_value); var floored = Math.Floor(m_value);
if (m_value == floored && m_value <= (Double)Int32.MaxValue && m_value >= (Double)Int32.MinValue) if (m_value == floored && m_value <= (Double)Int32.MaxValue && m_value >= (Double)Int32.MinValue)
{ {
Int32 flooredInt = (Int32)floored; var flooredInt = (Int32)floored;
return (JToken)flooredInt;
}
else if (m_value == floored && m_value <= (Double)Int64.MaxValue && m_value >= (Double)Int64.MinValue)
{
var flooredInt = (Int64)floored;
return (JToken)flooredInt; return (JToken)flooredInt;
} }
else else

View File

@@ -1 +1 @@
2.267.0 2.267.1