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
4
4
5
5
[Net.ServicePointManager ]::SecurityProtocol = [Net.ServicePointManager ]::SecurityProtocol -bor ' Tls12'
6
6
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'
8
8
$versions = Get-Content $versions_path | ConvertFrom-Json
9
9
Write-Host " [INFO] versions: $versions "
10
10
$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 27
27
# Note: the cache path is relative to the workspace directory
28
28
# https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#using-the-cache-action
29
29
path : ~/installers
30
- key : ${{ runner.os }}-v0-${{ hashFiles('tools /versions.json') }}
30
+ key : ${{ runner.os }}-v0-${{ hashFiles('.ci /versions.json') }}
31
31
- name : Cache NuGet packages
32
32
uses : actions/cache@v2
33
33
with :
@@ -38,15 +38,15 @@ jobs:
38
38
restore-keys : |
39
39
${{ runner.os }}-v0-nuget-
40
40
- name : Install and start RabbitMQ
41
- run : ./tools /install.ps1
41
+ run : ./.ci /install.ps1
42
42
- name : List NuGet sources
43
43
run : dotnet nuget locals all --list
44
44
- name : Restore
45
45
run : dotnet restore --verbosity=normal
46
46
- name : Build
47
47
run : dotnet build --no-restore --verbosity=normal
48
48
- name : Test
49
- run : ./tools /gha-run-tests.ps1
49
+ run : ./.ci /gha-run-tests.ps1
50
50
51
51
build :
52
52
name : build/test on ubuntu-latest
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments