🔀 How to untangle and manage build distribution — Webinar, May 16th — Register
🔀 How to untangle and manage build distribution — Webinar, May 16th — Register

Avoiding release anxiety, part II

Communication

Welcome to Part II of a topic I’ve been wanting to cover for a long time (and one which isn’t covered enough!): how to avoid burnout on a tough project, make building with a team fun again, and ship better products in the process. (You can check out Part I here, where we talked about testing effectively and efficiently, and setting up automation and ‘damage control’ to help reduce stress on you and your team.

Regardless of the tools and processes you're using, you'll find that the best resource you can have to make a project anxiety-free are the people working with you. You can have the best testing practices, the best architectural concepts and the world's most finely-tuned CI, but if you're not aligned with your team, things will probably not go as intended.

To be aligned, you need to communicate. Given that our jobs are highly technical I'd imagine that many people reading this are introverted, and as an introvert myself I can attest that communicating properly isn't easy. But if there's one thing I've learned, it’s that knowing how to talk to people is probably the most useful ability you can have, regardless of who you are or who you work with. It might be weird to broach this topic – after all, what does this have to do with mobile development?

The answer? Everything! Unless you work completely alone, you can’t accomplish anything without talking to people — and in the context of work, I can safely attest that there is a wide range of problems that can emerge purely due to communication problems.

Humane Code Review

If a person is not motivated or not comfortable with an aspect of a project, the quality of the product will be affected, and I find bad code reviews to be a major cause of this. We've already talked a little about how to better structure the automatic portion of pull requests, but we should also talk a bit about the human aspect of them, as this is where you're exposing your ideas about the future of the project. There is no true consensus on how code review should be done. Every project is different, so everyone does it slightly differently. But there's one thing they all have in common: code reviews are done by a human, and that human needs to be careful.

I have a couple of thoughts regarding how demanding you should be in code reviews. First, if you're not demanding at all, you're probably screwed unless your team is really, really good. On the other hand, if you're too demanding, you'll likely be seen by others as a toxic individual, which is potentially even worse as it will make people not want to work with you.

For me, the balance that works best is somewhere in the middle. That means that, although you want to be certain that the code works and adheres to the project's style, you need to know how to differentiate between what's important and what's not.

I believe that code quality is directly related to someone's motivation for maintaining quality, and there are few things more draining than a reviewer nitpicking irrelevant details. Here's an example:

let purple = RGB(218,112,214)

<chat-blue>johndoe: This property name is wrong. The official HTML color code name for this is orchid, not purple.<chat-blue>

As ridiculous as this comment sounds, it's scary how common it is for some reviewers to pointlessly nitpick things like this. It can be useful for big projects to have a style guide for these details, as it helps you navigate other people's code, but it's absolutely pointless to actually fight over these issues. Unless the code is completely out of style, a small point like this is utterly irrelevant and requesting its change will achieve nothing but frustration for the person writing the code. If you're not working on the sort of project that can get people killed if details like this are wrong, your relationship with your colleagues is ultimately more important. That doesn't mean you should never nitpick, but if you do, make it clear that it's just something that you noticed as opposed to an actual order that the committer has to fulfill.

The same thought process should be applied to the tone of written comments. It's common for newer developers to be afraid of code review, and there's a good reason for it: It's difficult to perfectly convey emotions over text, which can occasionally make it look like you're attacking someone. Given the following code, consider the difference between these 3 comments:

func isUserSubscribed() -> Bool {
    if let subscription = currentSubscription() {
        return subscription.isActive
    } else {
        return false
    }
}

<chat-blue>You should make this a one-liner.<chat-blue>

<chat-red>Make this a one-liner.<chat-red>

<chat-green>We could actually write this in one line: return currentSubscription() ?? false<chat-green>

These comments are similar, but they signal very different tones. In the first example, the usage of the word "you" makes the comment come across as very personal, which will usually put people on the defensive regardless of how good your intentions are. People don't like having fingers pointed at them, so this is usually not a good term to use if you're just making a suggestion.

The second comment has a very indifferent tone, and although it might not sound too bad when spoken, the text version sounds incredibly aggressive.

On the other hand, the third comment that uses "we could" sounds more empathetic and friendly. It demonstrates that the commenter is not accusing the committer of making a mistake, but instead showing interest in assisting the person in making the code better fit the project's style expectations.

Everything written in code is an opinion. There is no right or wrong for anything that we do, making it largely important to have an open mind for discussions as opposed to simply imposing your thoughts. That's an especially critical idea for large teams, because the more people involved in a task, the harder it is to reach a consensus. Think about the trade-offs and preferences and use them to find a conclusion that makes sense for the project (and not just to you), but never assume things. We're there to provide feedback, and not to be gatekeepers.

Interestingly, the same applies to the reverse situation. If you're the one opening a pull request, it's important to be very clear about what you're doing and to have a good relationship with the ones reviewing it. Try not to throw away suggestions that you disagree with — have empathy for the person performing the review and search for a solution together.

Style Guides

We've mentioned style issues as one common reason why reviewers nitpick, but I've found that having a consistent style in a project can also be of great help in reducing the release anxiety of a project.

It's impractical to wait for all of your team members to review your code when your team is too large, so some division of responsibilities must be made. The issue is that if your team has differing opinions over how a specific piece of functionality should be architected, you can rapidly end up with a project where no one can maintain components built by other people. In this case, a style guide is often a good solution.

Style guides can be seen as an anti-pattern when the goal is speed, and it truly can feel weird to add on overly bureaucratic processes, but a good code standard is beneficial because it can be really hard to scale a project without one. It's easier for human beings to understand things that are familiar to them, which is why most people tend to complain about code written by others. When someone says "the architecture of X sucks" or "the code here is really badly written" it's not that the code is truly bad, it's that this person is so used to what they've been doing that everyone else's work will appear weird in comparison. The code might truly be bad, but these opinions would likely still stand even if it's not.

Now, imagine a project with over 30 developers. This is a situation where the company is probably already divided into multiple smaller teams, meaning that it's already impossible for you to review everyone else's code. But even if you could, you're going to be pitching your opinion to dozens of other developers, so you're bound to lose some arguments. If you don't have some sort of pattern in place, this can easily devolve into a situation where each team's contributions feel like a completely different product, making it really hard to review and work with other people's code.

In an organization like this, a pull request containing changes to code owned by multiple teams would be too complicated to understand fully, increasing the possibility of bugs and crashes landing in production. And that might end up requiring a hotfix that is even more complicated to understand than the original pull request, further reducing the quality of the codebase and opening the door for future issues. We've mentioned this situation before – it's the infinite loop of release anxiety disasters!

Not only is this situation not made up, but I’ve also actually made it look a lot less bad than it actually was. The lack of a standard can really get in the way of a product's progress, because when the entire code base is written a style that is familiar to you, it's as if it truly was written by you. The presence of a guide in past projects meant that I always knew where to look to find something because it truly felt as if I was the one who actually coded it.

In general, you'd want to make a guide that covers cases that people would often disagree with. How the code should be architectured is perhaps the most common of them – in my past projects, we tried to define as deeply as possible how different pieces of the app should interact with each other, to ensure that people wouldn't have trouble understanding features created by other teams.

Clean coding practices are also often something good to mention; especially how to name properties and functions. This is particularly useful for search – if you're browsing the code of someone who names things similarly to you, you'll have an easier time finding what you're looking for even if you’ve never seen it before, because you can deduce what it'll be called based on your team's standards. That can be quite useful, but as mentioned before, it's also something that you shouldn't take too seriously during code reviews.

In the past we had to maintain consistent styles manually, but this is yet another area where modern linters can be extremely helpful. Most if not all linters can automatically apply styling rules after saving or as a pre-commit hook, making it so you don't even have to review for it. 

Wrapping up

At this point, someone might think: "Well, Bruno, I know that setting up great testing and tooling and enforcing style guides are useful, but I don't have time for it. I have short deadlines and I need to release as quickly as possible". It's true that this level of care has a cost, but this is a counterproductive mindset because having this level of care is exactly what saves you time. Yes, you'll initially lose some time getting all of this in place, but you’ll quickly gain it all back and infinitely more by working more effectively and with a better mindset.

My go-to example to demonstrate this is how I once implemented Buck, an alternate build system for iOS, as a way to improve all the time we wasted managing Xcode's ridiculous XML files in a specific project. Our build times were enormous and it was literally impossible to merge code without getting at least one project file conflict, and we even had this bizarre Xcode issue in which it refused to compile a project due to how many files it contained. Plenty of large companies in Silicon Valley have entire teams dedicated to managing their alternate build system's configuration, but as a small company, we didn't have that luxury.

It was probably one of the largest tasks I've ever taken on, and it caused me great stress, but as I did the work I tried to keep something in mind – if no one spent the time to implement a solution, then everyone in the company would continue suffering and wasting precious time trying to manage project files. I've found that project to be extremely stressful, but if I had said that I didn't have time to implement Buck, things would have probably stayed like that for a long time.

Because of this time investment, the team could make use of extremely fast build times while also never having to worry about project conflicts ever again. It became easy to add new modules to the project (a common feature of alternate build systems), giving the team lots of time to work on more interesting things.

'Reasons to Refactor' graph
Tarun Kohli, How to Convince Someone to Refactor their Code

This graph is nominally about refactoring code, but the principle applies to all of the ideas in this article. The more you wait to fix your tech debt or communication issues, the worse things will become and the more your team's productivity will fall. Unless the team puts a real effort into fixing these pain points, things will probably not improve. 

Just as tackling a refactor can tell you how bad a codebase is, I’d say that the current state of the subjects covered here can in theory measure how good or bad your team’s health and happiness at work are. I've worked on both amazing and depressing projects, and the difference is clear as day. Working on a healthy and well-structured project— with a team that communicates with empathy— gives you the mental bandwidth to learn and apply new things that are interesting to you. Ultimately, this means that having a higher degree of control (through testing, automation, and damage control) over parts of the project and teammates that know how to talk to each other effectively can have a significant impact on everyone’s well-being. If you don't have to worry about fixing critical bugs every week then you'll be able to work on things that are more enjoyable to you. And knowing how to give and receive feedback without being misunderstood will go that much further in making your days happier and less stressful.

Don’t have a CI/CD pipeline for your mobile app yet? Struggling with a flaky one?
Try Runway Quickstart CI/CD to quickly autogenerate an end-to-end workflow for major CI/CD providers.
Try our free tool ->
Sign up for the Flight Deck — our monthly newsletter.
We'll share our perspectives on the mobile landscape, peeks into how other mobile teams and developers get things done, technical guides to optimizing your app for performance, and more. (See a recent issue here)
The App Store Connect API is very powerful, but it can quickly become a time sink.
Runway offers a lot of the functionality you might be looking for — and more — out‑of‑the‑box and maintenance‑free.
Learn more
Mobile DevOps

Release better with Runway.

Runway integrates with all the tools you’re already using to level-up your release coordination and automation, from kickoff to release to rollout. No more cat-herding, spreadsheets, or steady drip of manual busywork.

Release better with Runway.

Runway integrates with all the tools you’re already using to level-up your release coordination and automation, from kickoff to release to rollout. No more cat-herding, spreadsheets, or steady drip of manual busywork.

Don’t have a CI/CD pipeline for your mobile app yet? Struggling with a flaky one?

Try Runway Quickstart CI/CD to quickly autogenerate an end-to-end workflow for major CI/CD providers.

Looking for a better way to distribute all your different flavors of builds, from one-offs to nightlies to RCs?

Give Build Distro a try! Sign up for Runway and see it in action for yourself.

Release better with Runway.

What if you could get the functionality you're looking for, without needing to use the ASC API at all? Runway offers you this — and more — right out-of-the-box, with no maintenance required.