Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ysmoradi committed May 27, 2024
1 parent c72499c commit 4da42a7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/bit.ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ jobs:
- name: Install wasm and maui
run: cd src && dotnet workload install maui-android wasm-tools wasm-experimental

- name: Install Nodejs dependencies
continue-on-error: true # Error MSB4057, not all csproj files have InstallNodejsDependencies target.
run: dotnet build src/Bit-CI-release.sln -t:InstallNodejsDependencies -m:1 # m:1 is her to run all projects required run npm install command one by one

- name: MSBuild prerelease
run: dotnet build src/Bit-CI-release.sln

Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/bit.full.ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ jobs:
dotnet new bit-bp --name AdminBPSqlServer --database sqlserver --sample admin --pipeline github
dotnet build AdminBPSqlServer/AdminBPSqlServer.sln -c Release
- name: Install Nodejs dependencies
continue-on-error: true # Error MSB4057, not all csproj files have InstallNodejsDependencies target.
run: dotnet build src/Bit-CI-release.sln -t:InstallNodejsDependencies -m:1 # m:1 is her to run all projects required run npm install command one by one

- name: Release build bit blazor ui + butil + bswup + besql + bup + code analyzers + source generators
run: dotnet build src/Bit-CI-release.sln -c Release

Expand Down

0 comments on commit 4da42a7

Please sign in to comment.