Skip to content

Commit

Permalink
ci: use last end of version for CI (#623)
Browse files Browse the repository at this point in the history
The last version of td-agent v4 is 4.5.2.

Signed-off-by: Kentaro Hayashi <[email protected]>
  • Loading branch information
kenhys authored Feb 21, 2024
1 parent fdc9475 commit 88e8484
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion fluent-package/apt/commonvar.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ code_name=$(lsb_release --codename --short)
architecture=$(dpkg --print-architecture)
repositories_dir=/fluentd/fluent-package/apt/repositories
java_jdk=openjdk-11-jre
td_agent_version=4.5.1
td_agent_version=4.5.2
case ${code_name} in
xenial)
distribution=ubuntu
Expand Down
4 changes: 2 additions & 2 deletions fluent-package/msi/update-from-v4-test.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ $ProgressPreference = 'SilentlyContinue'
Set-PSDebug -Trace 1

# Install v4
Invoke-WebRequest "https://s3.amazonaws.com/packages.treasuredata.com/4/windows/td-agent-4.5.1-x64.msi" -OutFile "td-agent-4.5.1-x64.msi"
Start-Process msiexec -ArgumentList "/i", "td-agent-4.5.1-x64.msi", "/quiet" -Wait -NoNewWindow
Invoke-WebRequest "https://s3.amazonaws.com/packages.treasuredata.com/4/windows/td-agent-4.5.2-x64.msi" -OutFile "td-agent-4.5.2-x64.msi"
Start-Process msiexec -ArgumentList "/i", "td-agent-4.5.2-x64.msi", "/quiet" -Wait -NoNewWindow
Start-Sleep 30 # Must wait until all processes are surely started.
$test_setting = @'
<source>
Expand Down

0 comments on commit 88e8484

Please sign in to comment.