Stories
Slash Boxes
Comments

SoylentNews is people

posted by cmn32480 on Monday January 30 2017, @05:22PM   Printer-friendly
from the just-trying-to-be-like-Microsoft dept.

Last week talk of Solaris heated up again with Solaris 12 being removed from the Oracle road-map, after rumors of Oracle canning Solaris occurred in early December, meanwhile there are also more layoffs happening at Oracle. Oracle finally issued a blog post this week with a bit more clarification on the matter.

Via this Oracle.com post, Oracle Solaris will be moving to a continuous delivery model. Rather than working towards Solaris 12 or "disruptive updates", they will be working on smaller, continuous updates to Solaris 11. The post reads in part, "New features and functionality will be delivered in Oracle Solaris through dot releases instead of more disruptive major releases, consistent with trends seen throughout the industry. This addresses customer requirements for an agile and smooth transition path between versions, while providing ongoing innovation with assured investment protection."

Source:
http://www.phoronix.com/scan.php?page=news_item&px=Solaris-Continuous-Delivery

-- submitted from IRC


Original Submission

 
This discussion has been archived. No new comments can be posted.
Display Options Threshold/Breakthrough Mark All as Read Mark All as Unread
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
  • (Score: 0) by Anonymous Coward on Monday January 30 2017, @10:03PM

    by Anonymous Coward on Monday January 30 2017, @10:03PM (#460818)

    I pay for production closed source, because it is fully tested and logically complete. Continuous model means some thing is ALWAYS not going to work. So it CANNOT be run in production and YOU personally will have to do the full testing, so there is no reason to pay for a real OS.

  • (Score: 2) by turgid on Monday January 30 2017, @10:24PM

    by turgid (4318) Subscriber Badge on Monday January 30 2017, @10:24PM (#460824) Journal

    I pay for production closed source, because it is fully tested and logically complete.

    You're an optimist :-)

    Continuous model means some thing is ALWAYS not going to work. So it CANNOT be run in production and YOU personally will have to do the full testing, so there is no reason to pay for a real OS.

    No, it is possible if done properly, but I doubt Oracle want to invest the time and money to do it properly. I have worked for precisely one company that wanted to do things properly but then they decided they'd rather do it cheaper and got magic beans and snakeoil from an Indian outsourcing company...

  • (Score: 3, Insightful) by Scruffy Beard 2 on Monday January 30 2017, @11:32PM

    by Scruffy Beard 2 (6030) on Monday January 30 2017, @11:32PM (#460854)

    "Uncle Bob" [cleancoder.com] advocates as system of Test-driven development.

    The rules are:

    1. Write a test case until you get an error (including possible compiler error)
    2. Write the code until your test-case passes.
    3. repeat as necessary.

    That mode of development implies several things:

    • Comprehensive test coverage.
    • While coding, you had working code about a minute ago.
    • Everybody following the same methodology had working code in the last minute or so
    • Comprehensive test coverage makes refactoring easy.
    • Code is always ready for release. IE: it is a continuous development model.