Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Revert "Revert "Fix mac ci build"" #192

Merged
merged 1 commit into from
May 7, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions cli-mac/build-bits.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ projectList=(
"../src/Web/WebStatus"
)


pushd $(pwd)/../src/Web/WebSPA
npm install
npm rebuild node-sass
popd

for project in "${projectList[@]}"
do
echo -e "\e[33mWorking on $(pwd)/$project"
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.ci.build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ services:
volumes:
- .:/src
working_dir: /src
command: /bin/bash -c "dotnet restore ./eShopOnContainers-ServicesAndWebApps.sln && dotnet publish ./eShopOnContainers-ServicesAndWebApps.sln -c Release -o ./obj/Docker/publish"
command: /bin/bash -c "pushd ./src/Web/WebSPA && npm install && npm rebuild node-sass && popd && dotnet restore ./eShopOnContainers-ServicesAndWebApps.sln && dotnet publish ./eShopOnContainers-ServicesAndWebApps.sln -c Release -o ./obj/Docker/publish"