Skip to content

Commit fbf629b

Browse files
authored
Codegen units + translations (#1599)
1 parent 5dc9257 commit fbf629b

File tree

86 files changed

+1854
-1757
lines changed

Some content is hidden

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

86 files changed

+1854
-1757
lines changed

.github/workflows/linux.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ jobs:
3333
if: ${{ github.ref == 'refs/heads/master' }}
3434
run: |
3535
sed -i 's/#lto = /lto = /g' Cargo.toml
36+
sed -i 's/#codegen-units /codegen-units = 1/g' Cargo.toml
3637
3738
echo "VERS=release" >> $GITHUB_ENV
3839
@@ -146,6 +147,7 @@ jobs:
146147
if: ${{ github.ref == 'refs/heads/master' }}
147148
run: |
148149
sed -i 's/#lto = /lto = /g' Cargo.toml
150+
sed -i 's/#codegen-units /codegen-units = 1/g' Cargo.toml
149151
cargo build --release --bin czkawka_cli --target x86_64-unknown-linux-musl
150152
151153
mv target/x86_64-unknown-linux-musl/release/czkawka_cli linux_czkawka_cli_musl

.github/workflows/mac.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ jobs:
4040
run: |
4141
set -e
4242
sed -i '' 's/#lto = "thin"/lto = "thin"/g' Cargo.toml
43+
sed -i '' 's/#codegen-units = 1/codegen-units = 1/g' Cargo.toml
4344
4445
echo "VERS=release" >> $GITHUB_ENV
4546

.github/workflows/windows.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ jobs:
2727
if: ${{ github.ref == 'refs/heads/master' }}
2828
run: |
2929
sed -i 's/#lto = /lto = /g' Cargo.toml
30+
sed -i 's/#codegen-units /codegen-units = 1/g' Cargo.toml
3031
cargo build --release --target x86_64-pc-windows-gnu --bin krokiet
3132
mv target/x86_64-pc-windows-gnu/release/krokiet.exe windows_krokiet_on_linux.exe
3233
@@ -76,6 +77,7 @@ jobs:
7677
# if: ${{ github.ref == 'refs/heads/master' }}
7778
# run: |
7879
# sed -i 's/#lto = /lto = /g' Cargo.toml
80+
# sed -i 's/#codegen-units /codegen-units = 1/g' Cargo.toml
7981
# cargo build --release --bin krokiet --no-default-features --features "winit_skia_opengl,winit_software"
8082
# mv target/release/krokiet.exe windows_krokiet_on_windows_skia_opengl.exe
8183
# cargo build --release --bin krokiet --no-default-features --features "winit_skia_vulkan,winit_software"

0 commit comments

Comments
 (0)