Pipenv install in deploy mode

This commit is contained in:
Jake Howard 2019-09-03 12:18:04 +01:00
parent 9916216d24
commit 7e14092d17
Signed by: jake
GPG key ID: 57AFB45680EDD477
2 changed files with 4 additions and 4 deletions

View file

@ -9,7 +9,7 @@ jobs:
- checkout - checkout
- restore_cache: - restore_cache:
key: cache-{{ .Branch }}-{{ checksum "Pipfile.lock" }} key: cache-{{ .Branch }}-{{ checksum "Pipfile.lock" }}
- run: pipenv install --dev - run: pipenv install --dev --deploy
- run: git clone https://github.com/kewlfft/ansible-aur.git ~/.ansible/plugins/modules/aur --depth=1 - run: git clone https://github.com/kewlfft/ansible-aur.git ~/.ansible/plugins/modules/aur --depth=1
- save_cache: - save_cache:
key: cache-{{ .Branch }}-{{ checksum "Pipfile.lock" }} key: cache-{{ .Branch }}-{{ checksum "Pipfile.lock" }}

View file

@ -11,7 +11,7 @@
- name: Create VSCode user directory - name: Create VSCode user directory
file: file:
path: '{{ home }}/.config/Code - OSS/User' path: '{{ home }}/.config/Code/User'
state: directory state: directory
owner: "{{ user }}" owner: "{{ user }}"
mode: 0755 mode: 0755
@ -19,14 +19,14 @@
- name: Install VSCode settings - name: Install VSCode settings
copy: copy:
src: ./files/vscode-settings.json src: ./files/vscode-settings.json
dest: "{{ home }}/.config/Code - OSS/User/settings.json" dest: "{{ home }}/.config/Code/User/settings.json"
mode: 0644 mode: 0644
owner: "{{ user }}" owner: "{{ user }}"
- name: Install VSCode keybindings - name: Install VSCode keybindings
copy: copy:
src: ./files/vscode-keybindings.json src: ./files/vscode-keybindings.json
dest: "{{ home }}/.config/Code - OSS/User/keybindings.json" dest: "{{ home }}/.config/Code/User/keybindings.json"
mode: 0644 mode: 0644
owner: "{{ user }}" owner: "{{ user }}"