Skip to content

Commit

Permalink
Update Workbench tests for >=2024.7 preview compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
ianpittwood committed May 29, 2024
1 parent c69133c commit 892d78e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions workbench/test/goss.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ file:
owner: rstudio-server
group: rstudio-server
{{ $version_split := split "." .Env.RSW_VERSION }}
{{ if or (lt ($version_split._0 | atoi) 2022) (and (eq ($version_split._0 | atoi) 2022) (lt ($version_split._1 | atoi) 12)) }}
/opt/code-server/bin/code-server:
{{ if or (ge ($version_split._0 | atoi) 2025) (and (ge ($version_split._0 | atoi) 2024) (ge ($version_split._1 | atoi) 7)) }}
/usr/lib/rstudio-server/bin/pwb-code-server/bin/code-server:
exists: true
{{ else }}
/usr/lib/rstudio-server/bin/code-server/bin/code-server:
Expand Down

0 comments on commit 892d78e

Please sign in to comment.