buildkite / frontend

🌏 The front-end application code for https://buildkite.com
MIT License
136 stars 27 forks source link

Emoji not rendering #132

Closed ineffyble closed 7 years ago

ineffyble commented 7 years ago

Following the guides at https://buildkite.com/docs/builds/managing-log-output , I've added the following line to our build shell script:

echo -e "\:package: Deploying to dev environment"

However, it is showing verbatim, and not showing any emoji. Removing the backslash escape has no effect.

toolmantim commented 7 years ago

Oh darn, we might have broken our docs there. Sorry about that!

Can you try this instead: echo ":package: Deploying to dev environment"

ineffyble commented 7 years ago

No luck I'm afraid. Script

Buildkite terminal

toolmantim commented 7 years ago

Oh wait, it needs to be a group. It's missing the ---

echo "--- :package: Deploying to dev environment"
ineffyble commented 7 years ago

group Interesting - it's working in group headings, but not in the logs underneath them.

toolmantim commented 7 years ago

That's by design I'm afraid!

ineffyble commented 7 years ago

Alas sadpanda

toolmantim commented 7 years ago

Sorry! But I'm going to reopen this just so @harrietgrace can check our docs are still telling the truth with the emoji syntax. Those backslashes don't look quite right.

ticky commented 7 years ago

I recall we were having some issues with

remove one of those and it worked okay. I suspect the situation will change when the new tech hits, but that’s worth double-checking, too!

harrietgrace commented 7 years ago

Yeah, we ended up sorting out that particular issue @ticky 🎉 But these docs do need to be updated, there are some accidental slashes in there!