Skip to content

Commit f99dbea

Browse files
Port to mozjs115 (#122)
1 parent 3ca1085 commit f99dbea

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

95 files changed

+2523
-2180
lines changed

.gitlab-ci.yml

+76-30
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# SPDX-FileCopyrightText: 2017 Claudio André <[email protected]>
33
---
44
include:
5-
- remote: 'https://gitlab.freedesktop.org/freedesktop/ci-templates/-/raw/c5626190ec14b475271288dda7a7dae8dbe0cd76/templates/alpine.yml'
5+
- remote: 'https://gitlab.freedesktop.org/freedesktop/ci-templates/-/raw/b791bd48996e3ced9ca13f1c5ee82be8540b8adb/templates/alpine.yml'
66

77
stages:
88
- prepare
@@ -14,7 +14,7 @@ stages:
1414

1515
.gjs-alpine:
1616
variables:
17-
FDO_DISTRIBUTION_TAG: '2022-07-23.0'
17+
FDO_DISTRIBUTION_TAG: '2022-11-02.0'
1818
FDO_UPSTREAM_REPO: GNOME/gjs
1919

2020
build-alpine-image:
@@ -23,15 +23,15 @@ build-alpine-image:
2323
- .gjs-alpine
2424
stage: prepare
2525
variables:
26-
FDO_DISTRIBUTION_PACKAGES: cppcheck git python3 yarn bash grep
26+
FDO_DISTRIBUTION_PACKAGES: cppcheck git python3 npm bash grep
2727
FDO_DISTRIBUTION_EXEC: |
2828
python3 -m ensurepip &&
2929
rm -r /usr/lib/python*/ensurepip &&
3030
pip3 install --no-cache --upgrade cpplint reuse codespell &&
3131
mkdir -p /cwd
3232
3333
.coverage: &coverage
34-
image: registry.gitlab.gnome.org/gnome/gjs:fedora.mozjs102-debug
34+
image: registry.gitlab.gnome.org/gnome/gjs:fedora.mozjs115-debug
3535
variables:
3636
coverage: '/^ lines.*(\d+\.\d+\%)/'
3737
script:
@@ -62,7 +62,6 @@ build-alpine-image:
6262
paths:
6363
- _build/compile_commands.json
6464
- _build/meson-logs/*log*.txt
65-
- scripts.log
6665
script:
6766
- test/test-ci.sh SETUP
6867
- test/test-ci.sh BUILD
@@ -75,7 +74,7 @@ build-alpine-image:
7574
build_recommended:
7675
<<: *build
7776
stage: source_check
78-
image: registry.gitlab.gnome.org/gnome/gjs:job-2190518_fedora.mozjs102-debug # pinned on purpose
77+
image: registry.gitlab.gnome.org/gnome/gjs:job-3012153_fedora.mozjs115-debug # pinned on purpose
7978
variables:
8079
TEST_OPTS: --verbose --no-stdsplit --print-errorlogs --setup=verbose
8180
except:
@@ -86,10 +85,13 @@ sanitizer_gcc:
8685
stage: test
8786
tags:
8887
- asan # LSAN needs CAP_SYS_PTRACE
89-
image: registry.gitlab.gnome.org/gnome/gjs:fedora.mozjs102-debug
88+
image: registry.gitlab.gnome.org/gnome/gjs:fedora.mozjs115-debug
9089
variables:
9190
CONFIG_OPTS: -Db_sanitize=address,undefined
92-
TEST_OPTS: --timeout-multiplier=3 --setup=verbose
91+
TEST_OPTS: --timeout-multiplier=3
92+
# Override these during build, but they are overridden by meson anyways
93+
ASAN_OPTIONS: start_deactivated=true,detect_leaks=0
94+
USE_UNSTABLE_GNOME_PREFIX: 'true'
9395
except:
9496
- schedules
9597

@@ -100,36 +102,48 @@ sanitizer_thread_gcc:
100102
allow_failure: true
101103
tags:
102104
- asan # TSAN needs CAP_SYS_PTRACE
103-
image: registry.gitlab.gnome.org/gnome/gjs:fedora.mozjs102-debug
105+
image: registry.gitlab.gnome.org/gnome/gjs:fedora.mozjs115-debug
104106
variables:
105107
CONFIG_OPTS: -Db_sanitize=thread
106108
TEST_OPTS: --timeout-multiplier=3 --setup=verbose
109+
USE_UNSTABLE_GNOME_PREFIX: 'true'
107110
except:
108111
- schedules
109112

110113
# There are a lot of debug log statements that are ifdef'd out in normal usage.
111114
# These sometimes get invalid expressions in them, leading to annoyance the
112115
# next time you try to use debug logging.
113116
build_maximal:
114-
<<: *build
117+
when: on_success
115118
stage: test
116-
image: registry.gitlab.gnome.org/gnome/gjs:fedora.mozjs102-debug
119+
image: registry.gitlab.gnome.org/gnome/gjs:fedora.mozjs115-debug
117120
variables:
118121
CC: clang
119122
CXX: clang++
120-
CONFIG_OPTS: -Ddtrace=true -Dsystemtap=true -Dverbose_logs=true
123+
USE_UNSTABLE_GNOME_PREFIX: 'true'
124+
CONFIG_OPTS: >-
125+
-Ddtrace=true -Dsystemtap=true -Dverbose_logs=true -Db_pch=false
121126
ENABLE_GTK: "yes"
122127
except:
123128
- schedules
124129
script:
125130
- test/test-ci.sh SETUP
126131
- test/test-ci.sh BUILD
127132
- test/test-ci.sh SH_CHECKS
133+
artifacts:
134+
reports:
135+
junit: _build/meson-logs/testlog*.junit.xml
136+
name: log
137+
when: always
138+
paths:
139+
- _build/compile_commands.json
140+
- _build/meson-logs/*log*.txt
141+
- scripts.log
128142

129143
build_minimal:
130144
<<: *build
131145
stage: test
132-
image: registry.gitlab.gnome.org/gnome/gjs:fedora.mozjs102
146+
image: registry.gitlab.gnome.org/gnome/gjs:fedora.mozjs115
133147
variables:
134148
CONFIG_OPTS: >-
135149
-Dbuildtype=release
@@ -141,7 +155,7 @@ build_minimal:
141155
build_unity:
142156
<<: *build
143157
stage: test
144-
image: registry.gitlab.gnome.org/gnome/gjs:fedora.mozjs102
158+
image: registry.gitlab.gnome.org/gnome/gjs:fedora.mozjs115
145159
variables:
146160
# unity-size here is forced to use an high number to check whether we can
147161
# join all the sources together, but should not be used in real world to
@@ -201,6 +215,12 @@ cppcheck:
201215
- tags
202216
variables:
203217
- $CI_COMMIT_MESSAGE =~ /\[skip cppcheck\]/
218+
only:
219+
changes:
220+
- "**/*.c"
221+
- "**/*.cpp"
222+
- "**/*.h"
223+
- "**/*.hh"
204224

205225
cpplint:
206226
when: on_success
@@ -217,6 +237,11 @@ cpplint:
217237
- tags
218238
variables:
219239
- $CI_COMMIT_MESSAGE =~ /\[skip cpplint\]/
240+
only:
241+
changes:
242+
- "**/*.cpp"
243+
- "**/*.h"
244+
- "**/*.hh"
220245

221246
eslint:
222247
when: on_success
@@ -233,6 +258,12 @@ eslint:
233258
- tags
234259
variables:
235260
- $CI_COMMIT_MESSAGE =~ /\[skip eslint\]/
261+
only:
262+
changes:
263+
- "**/*.js"
264+
- .eslintignore
265+
- .eslintrc.yml
266+
- '**/.eslintrc.yml'
236267

237268
pch_check:
238269
when: on_success
@@ -249,11 +280,18 @@ pch_check:
249280
- tags
250281
variables:
251282
- $CI_COMMIT_MESSAGE =~ /\[skip pch_check\]/
283+
only:
284+
changes:
285+
- "**/*.c"
286+
- "**/*.cpp"
287+
- "**/*.h"
288+
- "**/*.hh"
289+
- test/check-pch.sh
252290

253291
iwyu:
254292
when: on_success
255293
stage: source_check
256-
image: registry.gitlab.gnome.org/gnome/gjs:fedora.mozjs102-debug
294+
image: registry.gitlab.gnome.org/gnome/gjs:fedora.mozjs115-debug
257295
script:
258296
- test/test-ci.sh UPSTREAM_BASE
259297
- meson setup _build -Db_pch=false
@@ -274,7 +312,11 @@ codespell:
274312
stage: source_check
275313
script:
276314
- codespell --version
277-
- codespell -S "*.png,*.po,*.jpg,*.wrap,.git,LICENSES" -f --builtin "code,usage,clear" --skip="./installed-tests/js/jasmine.js,./README.md,./build/flatpak/*.json" --ignore-words-list="afterall,befores,files',filetest,gir,inout,stdio,uint,upto,xdescribe"
315+
- |
316+
codespell -S "*.png,*.po,*.jpg,*.wrap,.git,LICENSES" -f \
317+
--builtin "code,usage,clear" \
318+
--skip="./build/maintainer-upload-release.sh,./installed-tests/js/jasmine.js,./README.md,./build/flatpak/*.json,./tools/package-lock.json" \
319+
--ignore-words-list="afterall,deque,falsy,files',filetest,gir,inout,musl,nmake,stdio,uint,upto,xdescribe"
278320
except:
279321
- schedules
280322

@@ -304,7 +346,7 @@ coverage:
304346
iwyu-full:
305347
when: manual
306348
stage: manual
307-
image: registry.gitlab.gnome.org/gnome/gjs:fedora.mozjs102-debug
349+
image: registry.gitlab.gnome.org/gnome/gjs:fedora.mozjs115-debug
308350
script:
309351
- meson setup _build
310352
- ./tools/run_iwyu.sh
@@ -316,10 +358,13 @@ sanitizer_clang:
316358
stage: manual
317359
tags:
318360
- asan # LSAN needs CAP_SYS_PTRACE
319-
image: registry.gitlab.gnome.org/gnome/gjs:fedora.mozjs102-debug
361+
image: registry.gitlab.gnome.org/gnome/gjs:fedora.mozjs115-debug
320362
variables:
321363
CC: clang
322364
CXX: clang++
365+
USE_UNSTABLE_GNOME_PREFIX: 'true'
366+
# Override these during build, but they are overridden by meson anyways
367+
ASAN_OPTIONS: start_deactivated=true,detect_leaks=0
323368
CONFIG_OPTS: -Db_sanitize=address,undefined -Db_lundef=false
324369
TEST_OPTS: --timeout-multiplier=3 --setup=verbose
325370
when: manual
@@ -329,7 +374,7 @@ sanitizer_clang:
329374
installed_tests:
330375
<<: *build
331376
stage: manual
332-
image: registry.gitlab.gnome.org/gnome/gjs:fedora.mozjs102-debug
377+
image: registry.gitlab.gnome.org/gnome/gjs:fedora.mozjs115-debug
333378
variables:
334379
CONFIG_OPTS: -Dinstalled_tests=true -Dprefix=/usr
335380
TEST: skip
@@ -345,8 +390,9 @@ installed_tests:
345390
valgrind:
346391
<<: *build
347392
stage: manual
348-
image: registry.gitlab.gnome.org/gnome/gjs:fedora.mozjs102-debug
393+
image: registry.gitlab.gnome.org/gnome/gjs:fedora.mozjs115-debug
349394
variables:
395+
USE_UNSTABLE_GNOME_PREFIX: 'true'
350396
TEST_OPTS: --setup=valgrind
351397
allow_failure: true
352398
when: manual
@@ -357,7 +403,7 @@ valgrind:
357403
zeal_2:
358404
<<: *build
359405
stage: manual
360-
image: registry.gitlab.gnome.org/gnome/gjs:fedora.mozjs102-debug
406+
image: registry.gitlab.gnome.org/gnome/gjs:fedora.mozjs115-debug
361407
variables:
362408
TEST_OPTS: --setup=extra_gc
363409
when: manual
@@ -367,7 +413,7 @@ zeal_2:
367413
zeal_4:
368414
<<: *build
369415
stage: manual
370-
image: registry.gitlab.gnome.org/gnome/gjs:fedora.mozjs102-debug
416+
image: registry.gitlab.gnome.org/gnome/gjs:fedora.mozjs115-debug
371417
variables:
372418
TEST_OPTS: --setup=pre_verify
373419
when: manual
@@ -377,7 +423,7 @@ zeal_4:
377423
zeal_11:
378424
<<: *build
379425
stage: manual
380-
image: registry.gitlab.gnome.org/gnome/gjs:fedora.mozjs102-debug
426+
image: registry.gitlab.gnome.org/gnome/gjs:fedora.mozjs115-debug
381427
variables:
382428
TEST_OPTS: --setup=post_verify
383429
when: manual
@@ -388,7 +434,7 @@ zeal_11:
388434
# Create CI Docker Images #
389435
#############################################
390436
.Docker image template: &create_docker_image
391-
image: quay.io/freedesktop.org/ci-templates:container-build-base-2022-05-25.0
437+
image: quay.io/freedesktop.org/ci-templates:container-build-base-2023-06-27.1
392438
stage: deploy
393439
only:
394440
variables:
@@ -419,28 +465,28 @@ zeal_11:
419465
BUILDAH_FORMAT: docker
420466
BUILDAH_ISOLATION: chroot
421467

422-
fedora.mozjs91:
468+
fedora.mozjs102:
423469
<<: *create_docker_image
424470
variables:
425471
<<: *docker_variables
426472
DOCKERFILE: test/extra/Dockerfile
427473

428-
fedora.mozjs91-debug:
474+
fedora.mozjs102-debug:
429475
<<: *create_docker_image
430476
variables:
431477
<<: *docker_variables
432478
DOCKERFILE: test/extra/Dockerfile.debug
433479

434-
fedora.mozjs102:
480+
fedora.mozjs115:
435481
<<: *create_docker_image
436482
variables:
437483
<<: *docker_variables
438484
DOCKERFILE: test/extra/Dockerfile
439-
ARGS: --build-arg MOZJS_BRANCH=mozjs102 --build-arg MOZJS_BUILDDEPS=mozjs91
485+
ARGS: --build-arg MOZJS_BRANCH=mozjs115 --build-arg MOZJS_BUILDDEPS=mozjs102
440486

441-
fedora.mozjs102-debug:
487+
fedora.mozjs115-debug:
442488
<<: *create_docker_image
443489
variables:
444490
<<: *docker_variables
445491
DOCKERFILE: test/extra/Dockerfile.debug
446-
ARGS: --build-arg MOZJS_BRANCH=mozjs102 --build-arg MOZJS_BUILDDEPS=mozjs91
492+
ARGS: --build-arg MOZJS_BRANCH=mozjs115 --build-arg MOZJS_BUILDDEPS=mozjs102

0 commit comments

Comments
 (0)