Update to 2024-05-15 15:01

This commit is contained in:
Daniel Berteaud
2024-05-15 15:01:01 +02:00
parent 64de14d3d5
commit 2c684526ff
19 changed files with 108 additions and 18 deletions

View File

@@ -7,7 +7,6 @@
- name: Install nodejs tools
npm: name={{ item }} global=True
loop:
- yarn
- sfnt2woff
tags: penpot
@@ -46,6 +45,15 @@
command: ./scripts/build
args:
chdir: "{{ penpot_root_dir }}/tmp/penpot-{{ penpot_version }}/backend"
environment:
PATH: "/usr/lib/jvm/java-21/bin:/opt/penpot/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin"
- name: Install yarn
shell: |
corepack enable
yarn set version 4.0.2
args:
chdir: "{{ penpot_root_dir }}/tmp/penpot-{{ penpot_version }}/frontend"
- name: Build penpot frontend
command: ./scripts/build
@@ -53,11 +61,14 @@
chdir: "{{ penpot_root_dir }}/tmp/penpot-{{ penpot_version }}/frontend"
environment:
CURRENT_HASH: "{{ penpot_version }}"
PATH: "/usr/lib/jvm/java-21/bin:/opt/penpot/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin"
- name: Build penpot exporter
command: ./scripts/build
args:
chdir: "{{ penpot_root_dir }}/tmp/penpot-{{ penpot_version }}/exporter"
environment:
PATH: "/usr/lib/jvm/java-21/bin:/opt/penpot/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin"
- name: Install penpot exporter dependencies
command: yarn install