alpha
Login
or
Join now
gwen.works
/
churros-notella
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
ci: fix
author
Gwen Le Bihan
date
1 year ago
(Feb 3, 2025, 9:50 PM +0100)
commit
16c9ed40
16c9ed40ae26311ac4bd969325a545e476e7ef1b
parent
4db7c38d
4db7c38d1f6a3dc5f829c087b282935cfd6336c8
+15
-5
1 changed file
Expand all
Collapse all
Unified
Split
.gitlab-ci.yml
+15
-5
.gitlab-ci.yml
Reviewed
···
25
25
stage: test
26
26
rules:
27
27
- when: always
28
28
-
script:
29
29
-
- apk add git
28
28
+
before_script:
29
29
+
- apk add git npm
30
30
- cp -r typescript typescript_original
31
31
- just build
32
32
- just gen_typescript
33
33
+
script:
33
34
- |
34
35
for file in typescript/*.ts; do
35
36
if ! diff -q $file typescript_original/$(basename $file); then
···
39
40
fi
40
41
done
41
42
43
43
+
build-typescript:
44
44
+
stage: build
45
45
+
image: node:22-alpine
46
46
+
rules:
47
47
+
- if: $CI_COMMIT_TAG =~ /^v\d+\.\d+\.\d+/
48
48
+
before_script:
49
49
+
- apk add npm git
50
50
+
script:
51
51
+
- just gen_typescript
52
52
+
- npm version minor
53
53
+
54
54
+
42
55
build:
43
56
extends: .buildkit
44
57
stage: build
···
46
59
- if: $CI_COMMIT_TAG =~ /^v\d+\.\d+\.\d+/
47
60
variables:
48
61
DEPLOY: "true"
49
49
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
50
50
-
variables:
51
51
-
DEPLOY: "false"
52
62
script:
53
63
- |
54
64
if [ "$DEPLOY" == "true" ]; then