Skip to content

Commit

Permalink
CI: add script compilation to more lanes
Browse files Browse the repository at this point in the history
Somehow we had dotnet lanes that were missing a call to fsxc.
  • Loading branch information
knocte committed Sep 2, 2024
1 parent 8fc1970 commit abb0b81
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,13 @@ jobs:
run: git clean -fdx && ./configure.sh && make release
- name: integration tests
run: make update-servers
- name: compile .fsx scripts
run: |
dotnet new tool-manifest
dotnet tool install fsxc --version ${{ env.FSXC_VERSION }}
find . -type f -name "*.fsx" | xargs -t -I {} dotnet fsxc {}
windows--dotnet6-and-legacyFramework:
runs-on: windows-latest
Expand Down Expand Up @@ -212,6 +219,13 @@ jobs:
run: git clean -fdx && ./configure.sh && make release
- name: integration tests
run: make update-servers
- name: compile .fsx scripts
run: |
dotnet new tool-manifest
dotnet tool install fsxc --version ${{ env.FSXC_VERSION }}
find . -type f -name "*.fsx" | xargs -t -I {} dotnet fsxc {}
linux-github--dotnet-and-newmono:
runs-on: ubuntu-22.04
Expand Down Expand Up @@ -242,6 +256,13 @@ jobs:
run: git clean -fdx && ./configure.sh && make release
- name: integration tests
run: make update-servers
- name: compile .fsx scripts
run: |
dotnet new tool-manifest
dotnet tool install fsxc --version ${{ env.FSXC_VERSION }}
find . -type f -name "*.fsx" | xargs -t -I {} dotnet fsxc {}
linux-vanilla--stockmono-only:
runs-on: ubuntu-22.04
Expand Down

0 comments on commit abb0b81

Please sign in to comment.