Semaphore supports build
and deploy
tasks.
Semaphore passes semaphore_vars
variable to each Ansible playbook which it runs.
You can use it in your Ansible tasks to get what type of task was run, which version should be build or deployed, who ran the task, etc.
Example of semaphore_vars
for build
tasks:
semaphore_vars:
task_details:
type: build
username: user123
message: New version of some feature
target_version: 1.5.33
Example of semaphore_vars
for deploy
tasks:
semaphore_vars:
task_details:
type: deploy
username: user123
message: Deploy new feature to servers
incoming_version: 1.5.33
This type of task is used to create artifacts. Each build task has autogenerated version. You should use variable semaphore_vars.task_details.target_version
in your Ansible playbook to get what version of the artifact should be created. After the artifact is created, it can be used for deployment.
{% hint style="info" %}
Example of build
Ansible role:
- Get app source code from GitHub
- Compile source code
- Pack created binary to a tarball with name
app-{{semaphore_vars.task_details.target_version}}.tar.gz
- Send
app-{{semaphore_vars.task_details.target_version}}.tar.gz
to an S3 bucket {% endhint %}
This type of task is used to deploy artifacts to destination servers. Each deployment task is associated with the build task. You should use variable semaphore_vars.task_details.incoming_version
in your Ansible playbook to get what version of the artifact should be deployed.
{% hint style="info" %}
Example of deploy
Ansible role:
- Download
app-{{semaphore_vars.task_details.incoming_version}}.tar.gz
from an S3 bucket to destination servers - Unpack
app-{{semaphore_vars.task_details.incoming_version}}.tar.gz
to destination directory - Create or update configuration files
- Restart app service {% endhint %}