Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added incremental build option to Makefile to speed up rebuilds #454

Merged
merged 1 commit into from
Dec 24, 2018

Commits on Dec 21, 2018

  1. added incremental build to Makefile to speed up rebuilds

    (used everywhere by default except in do-release target)
    
    Before:
    =======
    $ time make -C build -j4 build-images
    real    2m33.772s
    user    0m1.302s
    sys     0m0.889s
    
    Incremental re-builds:
    =======
    $ time make -C build -j4 build-controller-image
    real    0m1.837s
    user    0m0.241s
    sys     0m0.085s
    
    $ time make -C build -j4 build-agones-sdk-image
    real    0m5.352s
    user    0m0.447s
    sys     0m0.244s
    
    $ time make -C build -j4 build-ping-image
    real    0m1.318s
    user    0m0.198s
    sys     0m0.063s
    
    $ time make -C build -j4 build-images
    real    0m5.506s
    user    0m1.177s
    sys     0m0.617s
    jkowalski committed Dec 21, 2018
    Configuration menu
    Copy the full SHA
    5f307e7 View commit details
    Browse the repository at this point in the history