Skip to content

Commit

Permalink
Merge pull request #325 from mschmieder/fix-macos
Browse files Browse the repository at this point in the history
Fixing GitLab Runner Re-Install and missing /usr/bin/test
  • Loading branch information
guenhter authored Mar 27, 2024
2 parents 1a6e8d7 + 64b800f commit 102cade
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions tasks/install-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@
command: "{{ gitlab_runner_executable }} stop"

- name: (MacOS) Download GitLab Runner
become: true
get_url:
url: "{{ gitlab_runner_download_url }}"
dest: "{{ gitlab_runner_executable }}"
Expand Down
2 changes: 1 addition & 1 deletion tasks/update-config-runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -915,7 +915,7 @@
when: item|length

- name: "{{ runn_name_prefix }} Ensure directory access test"
command: /usr/bin/test -r {{ item }}
command: test -r {{ item }}
loop:
- '{{ gitlab_runner.builds_dir | default("") }}'
- '{{ gitlab_runner.cache_dir | default("") }}'
Expand Down

0 comments on commit 102cade

Please sign in to comment.