-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix (ci): Ensure
test-build
jobs precede test-update
jobs to corr…
…ectly test incremental builds (#112) Previously, the `test-update` job ran independently of the `test-build` job. The `test-update` job was not an incremental build based on the `test-build` job. Now, the two independent jobs are combined as one job, with `test-build` preceeding `test-update`. This properly tests incremental builds using the local docker cache. In order to prevent `test-update` from pulling a remote `:latest` image, but to use the `:latest` from the preceeding `test-build` step's build cache, `NO_PULL` is added for `PIPELINE=update`. Co-authored-by: leo <[email protected]> Co-authored-by: joe <[email protected]>
- Loading branch information
1 parent
f6f3a09
commit d483030
Showing
4 changed files
with
13 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,7 @@ GAME_VERSION=1127 | |
APPID=90 | ||
GAME=cstrike | ||
GAME_UPDATE_COUNT=1 | ||
NO_PULL=true | ||
NO_TEST= | ||
NO_PUSH=true | ||
STEAM_LOGIN=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,7 @@ GAME_VERSION=6630498 | |
APPID=232370 | ||
GAME=hl2mp | ||
GAME_UPDATE_COUNT=1 | ||
NO_PULL=true | ||
NO_TEST= | ||
NO_PUSH=true | ||
STEAM_LOGIN= |