Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Apr 24, 2024. It is now read-only.

Commit a72f47f

Browse files
committed
Install unzip and update nuget version in docker image
1 parent 0c628cc commit a72f47f

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.circleci/config.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,18 @@ jobs:
1010
steps:
1111
- checkout
1212
# Code Formatting
13-
- run: apt-get -qq update; apt-get -y install git
13+
- run: apt-get -qq update; apt-get -y install git; apt-get install unzip
1414
- run: git clone https://github.com/kevingilliard/codeformatter.git # clone source code in /codeformatter directory
1515
- run: cd codeformatter
16+
- run: ls
1617
- run: ./init-tools.sh # download and install msbuild
1718
- run: cd src
19+
- run: nuget update -self
1820
- run: nuget restore
1921
- run: msbuild /p:Configuration=Release
2022
- run: mv ../bin/CodeFormatter/Release ../tools # Now, we can get CodeFormatter.exe in /codeformatter/tools directory
21-
- run: mono codeformatter/tools/CodeFormatter.exe Analytics.NET.sln
23+
- run: cd ../../
24+
- run: mono codeformatter/tools/CodeFormatter.exe Analytics/Analytics.csproj
2225
# Build project
2326
- run: msbuild Analytics/Analytics.csproj /t:restore
2427
- run: msbuild Analytics/Analytics.csproj /p:Configuration=Release

0 commit comments

Comments
 (0)