File tree Expand file tree Collapse file tree 5 files changed +58
-1
lines changed
experimenter/experimenter/features/manifests/experimenter Expand file tree Collapse file tree 5 files changed +58
-1
lines changed Original file line number Diff line number Diff line change @@ -283,7 +283,7 @@ CIRRUS_COVERAGE_JSON := $(TEST_RESULTS_DIR)/$(TEST_FILE_PREFIX)unit__coverage.js
283
283
CIRRUS_JUNIT_XML := $(TEST_RESULTS_DIR ) /$(TEST_FILE_PREFIX ) integration__results.xml
284
284
285
285
cirrus_build : build_megazords
286
- $(CIRRUS_ENABLE ) $(DOCKER_BUILD ) --target deploy -f cirrus/server/Dockerfile -t cirrus:deploy cirrus/server/
286
+ $(CIRRUS_ENABLE ) $(DOCKER_BUILD ) --target deploy -f cirrus/server/Dockerfile -t cirrus:deploy --build-context=fml=experimenter/experimenter/features/manifests/ cirrus/server/
287
287
288
288
cirrus_build_test : build_megazords
289
289
$(CIRRUS_ENABLE ) $(COMPOSE_TEST ) build cirrus
Original file line number Diff line number Diff line change @@ -51,6 +51,9 @@ COPY --from=python-builder /usr/local/bin /usr/local/bin
51
51
52
52
ENV PYTHONPATH=$PYTHONPATH:/application-services
53
53
54
+ # Copy fml files
55
+ COPY --from=fml . /fml/
56
+
54
57
# Copy all other files into the container's working directory
55
58
COPY . .
56
59
Original file line number Diff line number Diff line change
1
+ ---
2
+ version : 1.0.0
3
+ about :
4
+ description : Nimbus Feature Manifest for Experimenter Web testing
5
+ channels :
6
+ - dev
7
+ features :
8
+ example-feature :
9
+ description : An example feature.
10
+ variables :
11
+ emoji :
12
+ description : An emoji to show for this treatment.
13
+ type : Option<String>
14
+ default : ❤️
15
+ enabled :
16
+ description : If the feature is enabled.
17
+ type : Boolean
18
+ default : false
Original file line number Diff line number Diff line change
1
+ ---
2
+ version : 1.0.0
3
+ about :
4
+ description : Nimbus Feature Manifest for Experimenter Web testing
5
+ channels :
6
+ - production
7
+ features :
8
+ example-feature :
9
+ description : An example feature.
10
+ variables :
11
+ emoji :
12
+ description : An emoji to show for this treatment.
13
+ type : Option<String>
14
+ default : ❤️
15
+ enabled :
16
+ description : If the feature is enabled.
17
+ type : Boolean
18
+ default : false
Original file line number Diff line number Diff line change
1
+ ---
2
+ version : 1.0.0
3
+ about :
4
+ description : Nimbus Feature Manifest for Experimenter Web testing
5
+ channels :
6
+ - staging
7
+ features :
8
+ example-feature :
9
+ description : An example feature.
10
+ variables :
11
+ emoji :
12
+ description : An emoji to show for this treatment.
13
+ type : Option<String>
14
+ default : ;)
15
+ enabled :
16
+ description : If the feature is enabled.
17
+ type : Boolean
18
+ default : false
You can’t perform that action at this time.
0 commit comments