From 53e4555497cbd54cc9146b70601a668ee90f1a1f Mon Sep 17 00:00:00 2001 From: Dennis Werner Date: Wed, 27 Sep 2023 20:12:02 +0200 Subject: [PATCH] back to jg config, change testing for osx 13,14 --- .github/workflows/ci.yml | 4 +- main.yml | 2 +- my_config.yml | 109 --------------------------------------- 3 files changed, 3 insertions(+), 112 deletions(-) delete mode 100644 my_config.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d8abd2893..cd2fb9c6a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,8 +36,8 @@ jobs: strategy: matrix: os: - - macos-12 - - macos-11 + - macos-13 + - macos-14 steps: - name: Check out the codebase. diff --git a/main.yml b/main.yml index afdecb50d..b382ab920 100644 --- a/main.yml +++ b/main.yml @@ -3,7 +3,7 @@ hosts: all vars_files: - - my_config.yml + - config.yml pre_tasks: - name: Include playbook configuration. diff --git a/my_config.yml b/my_config.yml deleted file mode 100644 index c0fcac980..000000000 --- a/my_config.yml +++ /dev/null @@ -1,109 +0,0 @@ ---- -downloads: ~/.ansible-downloads/ - -configure_dotfiles: true -configure_terminal: true -configure_osx: true - -# Set to 'true' to configure the Dock via dockutil. - -configure_dock: true -dockitems_remove: - - Launchpad - - TV - - 'App Store' - - Terminal -dockitems_persist: - - name: "Launchpad" - path: "/Applications/Launchpad.app/" - pos: 2 - - name: "Warp" - path: "/Applications/Warp.app/" - pos: 3 - - name: "VS Code" - path: "/Applications/Visual Studio Code.app/" - pos: 4 - -configure_sudoers: false -sudoers_custom_config: '' -# Example: -# sudoers_custom_config: | -# # Allow users in admin group to use sudo with no password. -# %admin ALL=(ALL) NOPASSWD: ALL -dotfiles_repo: https://github.com/d4sw4r/dotfiles.git -dotfiles_repo_accept_hostkey: true -dotfiles_repo_local_destination: ~/Development/GitHub/dotfiles -dotfiles_files: - - .zshrc - - .gitignore - - .inputrc - - .vimrc -homebrew_installed_packages: - # - ansible # Installed via Pip. - - autoconf - - bash-completion - - doxygen - - gettext - - gifsicle - - git - - github/gh/gh - - go - - gpg - - httpie - - iperf - - libevent - - mas - - mcrypt - - nmap - - ssh-copy-id - - cowsay - - readline - - openssl - - pv - - wget - - wrk - - zsh-history-substring-search - -homebrew_taps: - - homebrew/core - - homebrew/cask - -homebrew_cask_appdir: /Applications -homebrew_cask_apps: - # - chromedriver - - visual-studio-code - - docker - # - google-chrome - - raycast - - warp - -# See `geerlingguy.mas` role documentation for usage instructions. -mas_installed_apps: [] -mas_upgrade_all_apps: true -mas_email: "" -mas_password: "" - -osx_script: "~/.osx --no-restart" - -# Install packages from other package managers. -# Note: You are responsible for making sure the required package managers are -# installed, eg. through homebrew. -composer_packages: [] -# - name: drush -# state: present # present/absent, default: present -# version: "^8.1" # default: N/A -gem_packages: [] -# - name: bundler -# state: present # present/absent/latest, default: present -# version: "~> 1.15.1" # default: N/A -npm_packages: [] -# - name: webpack -# state: present # present/absent/latest, default: present -# version: "^2.6" # default: N/A -pip_packages: [] -# - name: mkdocs -# state: present # present/absent/latest, default: present -# version: "0.16.3" # default: N/A - -# Glob pattern to ansible task files to run after all other tasks are finished. -post_provision_tasks: []