File tree Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Expand file tree Collapse file tree 5 files changed +8
-8
lines changed File renamed without changes.
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ Set-StrictMode -Version 2.0
44
55[Net.ServicePointManager ]::SecurityProtocol = [Net.ServicePointManager ]::SecurityProtocol -bor ' Tls12'
66
7- $versions_path = Join-Path - Path $env: GITHUB_WORKSPACE - ChildPath ' tools ' | Join-Path - ChildPath ' versions.json'
7+ $versions_path = Join-Path - Path $env: GITHUB_WORKSPACE - ChildPath ' .ci ' | Join-Path - ChildPath ' versions.json'
88$versions = Get-Content $versions_path | ConvertFrom-Json
99Write-Host " [INFO] versions: $versions "
1010$erlang_ver = $versions.erlang
Original file line number Diff line number Diff line change 1+ {
2+ "erlang" : " 25.1.1" ,
3+ "rabbitmq" : " 3.11.1"
4+ }
Original file line number Diff line number Diff line change 2727 # Note: the cache path is relative to the workspace directory
2828 # https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#using-the-cache-action
2929 path : ~/installers
30- key : ${{ runner.os }}-v0-${{ hashFiles('tools /versions.json') }}
30+ key : ${{ runner.os }}-v0-${{ hashFiles('.ci /versions.json') }}
3131 - name : Cache NuGet packages
3232 uses : actions/cache@v3
3333 with :
3838 restore-keys : |
3939 ${{ runner.os }}-v0-nuget-
4040 - name : Install and start RabbitMQ
41- run : ./tools /install.ps1
41+ run : ./.ci /install.ps1
4242 - name : List NuGet sources
4343 run : dotnet nuget locals all --list
4444 - name : Restore
4848 - name : Build
4949 run : dotnet build --no-restore --verbosity=normal
5050 - name : Test
51- run : ./tools /gha-run-tests.ps1
51+ run : ./.ci /gha-run-tests.ps1
5252
5353 build :
5454 name : build/test on ubuntu-latest
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments