We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7b02fd commit 6929ce6Copy full SHA for 6929ce6
1 file changed
.circleci/config.yml
@@ -8,6 +8,8 @@ jobs:
8
parameters:
9
game:
10
type: string
11
+ region:
12
+ type: string
13
steps:
14
- checkout
15
- run: make << parameters.game >>
@@ -16,7 +18,7 @@ jobs:
16
18
# Only do it if the makefile is in BUILD_VANILLA mode, though.
17
19
- run:
20
name: Verify checksum (if applicable)
- command: grep 'BUILD_VANILLA = false' Makefile || tools/build/verify-checksum.sh << parameters.game >>
21
+ command: grep 'BUILD_VANILLA = false' Makefile || tools/build/verify-checksum.sh << parameters.game >> << parameters.region >>
22
23
24
workflows:
@@ -25,6 +27,8 @@ workflows:
25
27
- build-game:
26
28
name: build-ages
29
game: ages
30
+ region: us
31
32
name: build-seasons
33
game: seasons
34
0 commit comments