@@ -128,34 +128,34 @@ clean:
128
128
find ${TEST_PROJECT_DIRECTORY} -path "*/obj/*" -print -exec rm -vfr {} ';' || true
129
129
130
130
compose/build : env
131
- docker-compose --profile lint build
132
- docker-compose --profile testing build
133
- docker-compose --profile production build
131
+ ${DOCKER_COMPOSE} --profile lint build
132
+ ${DOCKER_COMPOSE} --profile testing build
133
+ ${DOCKER_COMPOSE} --profile production build
134
134
135
135
compose/rebuild : env
136
- docker-compose --profile lint build --no-cache
137
- docker-compose --profile testing build --no-cache
138
- docker-compose --profile production build --no-cache
136
+ ${DOCKER_COMPOSE} --profile lint build --no-cache
137
+ ${DOCKER_COMPOSE} --profile testing build --no-cache
138
+ ${DOCKER_COMPOSE} --profile production build --no-cache
139
139
140
140
compose/lint/markdown : compose/build
141
- docker-compose --profile lint run --rm algorithm-exercises-csharp-lint make lint/markdown
141
+ ${DOCKER_COMPOSE} --profile lint run --rm algorithm-exercises-csharp-lint make lint/markdown
142
142
143
143
compose/lint/yaml : compose/build
144
- docker-compose --profile lint run --rm algorithm-exercises-csharp-lint make lint/yaml
144
+ ${DOCKER_COMPOSE} --profile lint run --rm algorithm-exercises-csharp-lint make lint/yaml
145
145
146
146
compose/test/styling : compose/build
147
- docker-compose --profile lint run --rm algorithm-exercises-csharp-lint make test/styling
147
+ ${DOCKER_COMPOSE} --profile lint run --rm algorithm-exercises-csharp-lint make test/styling
148
148
149
149
compose/test/static : compose/build
150
- docker-compose --profile lint run --rm algorithm-exercises-csharp-lint make test/static
150
+ ${DOCKER_COMPOSE} --profile lint run --rm algorithm-exercises-csharp-lint make test/static
151
151
152
152
compose/lint : compose/lint/markdown compose/lint/yaml compose/test/styling compose/test/static
153
153
154
154
compose/test : compose/build
155
- docker-compose --profile testing run --rm algorithm-exercises-csharp-test make test
155
+ ${DOCKER_COMPOSE} --profile testing run --rm algorithm-exercises-csharp-test make test
156
156
157
157
compose/run : compose/build
158
- docker-compose --profile production run --rm algorithm-exercises-csharp make run
158
+ ${DOCKER_COMPOSE} --profile production run --rm algorithm-exercises-csharp make run
159
159
160
160
all : lint coverage
161
161
0 commit comments