-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
38 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
--- | ||
- name: Install git | ||
ansible.builtin.package: | ||
name: git | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
--- | ||
- ansible.builtin.import_tasks: install.yaml | ||
- ansible.builtin.import_tasks: setup.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
--- | ||
go_version: 1.23.2 | ||
go_download_url: "https://go.dev/dl/go{{ go_version }}.linux-amd64.tar.gz" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
minikube_deb_url: "https://storage.googleapis.com/minikube/releases/latest/minikube_latest_amd64.deb" | ||
--- | ||
minikube_deb_url: > | ||
"https://storage.googleapis.com/minikube/releases/latest/minikube_latest_amd64.deb" | ||
minikube_deb_path: "/tmp/minikube_latest_amd64.deb" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
--- | ||
- ansible.builtin.import_tasks: install.yaml | ||
- ansible.builtin.import_tasks: setup.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
--- | ||
- name: Create XDG_CONFIG_HOME directory | ||
ansible.builtin.file: | ||
path: "~/.config" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,15 @@ | ||
--- | ||
- name: Download and execute the NodeSource setup script for Node.js {{ nodejs_major_version }}.x | ||
ansible.builtin.shell: | | ||
curl -fsSL https://deb.nodesource.com/setup_{{ nodejs_major_version }}.x | bash - | ||
- name: > | ||
"Download and execute the NodeSource | ||
setup script for Node.js {{ nodejs_major_version }}.x" | ||
ansible.builtin.shell: > | ||
"curl -fsSL https://deb.nodesource.com\ | ||
/setup_{{ nodejs_major_version }}.x | bash -" | ||
args: | ||
creates: /usr/bin/node # Ensures this task only runs if /usr/bin/node doesn't exist | ||
creates: /usr/bin/node | ||
|
||
- name: Install Node.js | ||
ansible.builtin.apt: | ||
name: nodejs | ||
state: latest | ||
update_cache: yes | ||
update_cache: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
--- | ||
nodejs_major_version: 22 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
--- | ||
stylua_remote_url: "https://github.com" | ||
stylua_repository: "JohnnyMorganz/StyLua" | ||
stylua_release_tag: "v2.0.1" | ||
stylua_compress_file: "stylua-linux-x86_64.zip" | ||
stylua_download_url: "{{ stylua_remote_url }}/{{ stylua_repository }}/releases/download/{{ stylua_release_tag }}/{{ stylua_compress_file }}" | ||
stylua_download_url: > | ||
"{{ stylua_remote_url }}/\ | ||
{{ stylua_repository }}/releases/download/\ | ||
{{ stylua_release_tag }}/{{ stylua_compress_file }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters