Skip to content

Commit

Permalink
WIP: testing CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Mersho committed Oct 19, 2023
1 parent 35fce11 commit fdc0dd9
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
- name: build in DEBUG mode
run: make
- name: sanity check
run: dotnet fsi scripts\sanitycheck.fsx
run: dotnet fsi scripts/sanitycheck.fsx
- name: run unit tests
run: dotnet fsi scripts/runUnitTests.fsx

Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
- name: build in DEBUG mode
run: make
- name: sanity check
run: dotnet fsi scripts\sanitycheck.fsx
run: dotnet fsi scripts/sanitycheck.fsx
- name: run unit tests
run: fsharpi --define:LEGACY_FRAMEWORK scripts/runUnitTests.fsx

Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:
- name: build in DEBUG mode
run: make
- name: sanity check
run: dotnet fsi scripts\sanitycheck.fsx
run: dotnet fsi scripts/sanitycheck.fsx
- name: run unit tests
run: dotnet fsi scripts/runUnitTests.fsx

Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:
- name: build in DEBUG mode
run: make
- name: sanity check
run: dotnet fsi scripts\sanitycheck.fsx
run: dotnet fsi scripts/sanitycheck.fsx
- name: run unit tests
run: dotnet fsi scripts/runUnitTests.fsx

Expand Down Expand Up @@ -231,7 +231,7 @@ jobs:
- name: build in DEBUG mode
run: make
- name: sanity check
run: dotnet fsi scripts\sanitycheck.fsx
run: dotnet fsi scripts/sanitycheck.fsx

- name: install
run: |
Expand Down Expand Up @@ -277,7 +277,7 @@ jobs:
- name: build in DEBUG mode
run: make
- name: sanity check
run: dotnet fsi scripts\sanitycheck.fsx
run: dotnet fsi scripts/sanitycheck.fsx
- name: run unit tests
run: fsharpi --define:LEGACY_FRAMEWORK scripts/runUnitTests.fsx

Expand Down Expand Up @@ -310,7 +310,7 @@ jobs:
- name: build in DEBUG mode
run: make
- name: sanity check
run: dotnet fsi scripts\sanitycheck.fsx
run: dotnet fsi scripts/sanitycheck.fsx
- name: run unit tests
run: dotnet fsi scripts/runUnitTests.fsx

Expand Down Expand Up @@ -343,7 +343,7 @@ jobs:
- name: build in DEBUG mode
run: make
- name: sanity check
run: dotnet fsi scripts\sanitycheck.fsx
run: dotnet fsi scripts/sanitycheck.fsx
- name: run unit tests
run: dotnet fsi scripts/runUnitTests.fsx

Expand Down Expand Up @@ -387,7 +387,7 @@ jobs:
- name: build in DEBUG mode
run: make
- name: sanity check
run: dotnet fsi scripts\sanitycheck.fsx
run: dotnet fsi scripts/sanitycheck.fsx

- name: install
run: |
Expand Down Expand Up @@ -433,7 +433,7 @@ jobs:
- name: build in DEBUG mode
run: make
- name: sanity check
run: dotnet fsi scripts\sanitycheck.fsx
run: dotnet fsi scripts/sanitycheck.fsx
- name: run unit tests
run: fsharpi --define:LEGACY_FRAMEWORK scripts/runUnitTests.fsx

Expand Down Expand Up @@ -473,7 +473,7 @@ jobs:
- name: build in DEBUG mode
run: make
- name: sanity check
run: dotnet fsi scripts\sanitycheck.fsx
run: dotnet fsi scripts/sanitycheck.fsx
- name: run unit tests
run: dotnet fsi scripts/runUnitTests.fsx

Expand All @@ -500,7 +500,7 @@ jobs:
- name: build in DEBUG mode
run: .\make.bat
- name: sanity check
run: .\make.bat sanitycheck
run: dotnet fsi scripts/sanitycheck.fsx
- name: run unit tests
run: .\Tools\fsi.bat scripts\runUnitTests.fsx

Expand Down Expand Up @@ -528,7 +528,7 @@ jobs:
- name: build in DEBUG mode
run: .\make.bat
- name: sanity check
run: .\make.bat sanitycheck
run: dotnet fsi scripts/sanitycheck.fsx
- name: run unit tests
run: dotnet fsi scripts/runUnitTests.fsx

Expand Down
8 changes: 4 additions & 4 deletions scripts/sanitycheck.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -422,10 +422,10 @@ let SanityCheckNugetPackages () =
//let solutions = Directory.GetCurrentDirectory() |> DirectoryInfo |> findSolutions
//NOTE: we hardcode the solutions rather than the line above, because e.g. Linux OS can't build/restore iOS proj
let solutionFileNames = [
Path.Combine(FsxHelper.SourceDir.FullName, "gwallet.linux-legacy.sln")
Path.Combine(FsxHelper.SourceDir.FullName, "gwallet.mac-legacy.sln")
Path.Combine(FsxHelper.SourceDir.FullName, "gwallet.core-legacy.sln")
Path.Combine(FsxHelper.SourceDir.FullName, "gwallet.core.sln")
Path.Combine(FsxHelper.SourceDir.FullName, "../src/gwallet.linux-legacy.sln")
Path.Combine(FsxHelper.SourceDir.FullName, "../src/gwallet.mac-legacy.sln")
Path.Combine(FsxHelper.SourceDir.FullName, "../src/gwallet.core-legacy.sln")
Path.Combine(FsxHelper.SourceDir.FullName, "../src/gwallet.core.sln")
]

let solutionFiles = solutionFileNames |> List.map FileInfo
Expand Down

0 comments on commit fdc0dd9

Please sign in to comment.