Skip to content

Commit c88909d

Browse files
committed
2 parents ae184d0 + 0ebdc17 commit c88909d

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Linux:
2020
- make test-linux
2121
artifacts:
2222
paths:
23-
- librewolf-*.tar.bz2
23+
- librewolf-*.tar.xz
2424
- mozconfig.txt
2525

2626
macOS:

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ build : $(lw_source_dir)
168168

169169
package :
170170
(cd $(lw_source_dir) && cat browser/locales/shipped-locales | xargs ./mach package-multi-locale --locales)
171-
cp -v $(lw_source_dir)/obj-*/dist/hyperfox-$(version)-$(release).en-US.*.tar.bz2 .
171+
cp -v $(lw_source_dir)/obj-*/dist/hyperfox-$(version)-$(release).en-US.*.tar.xz .
172172

173173
run :
174174
(cd $(lw_source_dir) && ./mach run)
@@ -200,7 +200,7 @@ docker-build-image :
200200
docker build --no-cache -t $(build_image) - < assets/Dockerfile
201201

202202
docker-run-build-job :
203-
docker run -v $$(pwd):/output --rm $(build_image) sh -c "git pull && make fetch && make build package && cp -v ./*.bz2 /output"
203+
docker run -v $$(pwd):/output --rm $(build_image) sh -c "git pull && make fetch && make build package && cp -v ./*.xz /output"
204204

205205
docker-remove-image :
206206
docker rmi $(build_image)
@@ -234,9 +234,9 @@ fetch-upstream-woodpecker : fetch
234234

235235
test : full-test
236236

237-
# full-test: produce the bz2 artifact using bsys6 from scratch
237+
# full-test: produce the xz artifact using bsys6 from scratch
238238
full-test : $(lw_source_tarball)
239-
${MAKE} -f assets/testing.mk bsys6_x86_64_linux_bz2_artifact
239+
${MAKE} -f assets/testing.mk bsys6_x86_64_linux_xz_artifact
240240

241241
test-linux : full-test
242242

assets/testing.mk

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.PHONY : bsys6_x86_64_linux_bz2_artifact full_build_stage2_linux bsys6_x86_64_macos_dmg_artifact full_build_stage2_macos bsys6_x86_64_windows_zip_artifact full_build_stage2_windows
1+
.PHONY : bsys6_x86_64_linux_xz_artifact full_build_stage2_linux bsys6_x86_64_macos_dmg_artifact full_build_stage2_macos bsys6_x86_64_windows_zip_artifact full_build_stage2_windows
22

33
#
44
# This makefile just uses bsys6 to build the package
@@ -11,12 +11,12 @@
1111
#
1212

1313

14-
bsys6_x86_64_linux_bz2_artifact :
14+
bsys6_x86_64_linux_xz_artifact :
1515

1616
rm -rf bsys6
1717
git clone "https://codeberg.org/librewolf/bsys6.git"
1818
(cd bsys6 && ${MAKE} -f ../assets/testing.mk full_build_stage2_linux)
19-
cp -v bsys6/*.bz2 .
19+
cp -v bsys6/*.xz .
2020
cp -v "bsys6/SOURCEDIR/librewolf-$$(cat version)-$$(cat release)/mozconfig" mozconfig.txt
2121
rm -rf bsys6
2222

version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
134.0.2
1+
135.0

0 commit comments

Comments
 (0)