mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-09 09:52:10 +00:00
Try arm fix (#1356)
* Trying to fix arm build. * Version 0.9.0-rc.8 * Trying to fix arm build 2. * Version 0.9.0-rc.9 * Checking time when removing lto. * Version 0.9.0-rc.10 * Adding back in arm tests. * Version 0.9.0-rc.11
This commit is contained in:
parent
6f2954dffd
commit
25dd1a21e2
|
@ -6,9 +6,6 @@ edition = "2018"
|
|||
[profile.dev]
|
||||
debug = 0
|
||||
|
||||
[profile.release]
|
||||
lto = true
|
||||
|
||||
[workspace]
|
||||
members = [
|
||||
"lemmy_api",
|
||||
|
|
|
@ -1 +1 @@
|
|||
0.9.0-rc.7
|
||||
0.9.0-rc.11
|
||||
|
|
|
@ -17,7 +17,7 @@ services:
|
|||
- iframely
|
||||
|
||||
lemmy-ui:
|
||||
image: dessalines/lemmy-ui:0.9.0-rc.7
|
||||
image: dessalines/lemmy-ui:0.9.0-rc.11
|
||||
ports:
|
||||
- "1235:1234"
|
||||
restart: always
|
||||
|
|
|
@ -29,7 +29,7 @@ services:
|
|||
- ./volumes/pictrs_alpha:/mnt
|
||||
|
||||
lemmy-alpha-ui:
|
||||
image: dessalines/lemmy-ui:0.9.0-rc.7
|
||||
image: dessalines/lemmy-ui:0.9.0-rc.11
|
||||
environment:
|
||||
- LEMMY_INTERNAL_HOST=lemmy-alpha:8541
|
||||
- LEMMY_EXTERNAL_HOST=localhost:8541
|
||||
|
@ -69,7 +69,7 @@ services:
|
|||
- ./volumes/postgres_alpha:/var/lib/postgresql/data
|
||||
|
||||
lemmy-beta-ui:
|
||||
image: dessalines/lemmy-ui:0.9.0-rc.7
|
||||
image: dessalines/lemmy-ui:0.9.0-rc.11
|
||||
environment:
|
||||
- LEMMY_INTERNAL_HOST=lemmy-beta:8551
|
||||
- LEMMY_EXTERNAL_HOST=localhost:8551
|
||||
|
@ -109,7 +109,7 @@ services:
|
|||
- ./volumes/postgres_beta:/var/lib/postgresql/data
|
||||
|
||||
lemmy-gamma-ui:
|
||||
image: dessalines/lemmy-ui:0.9.0-rc.7
|
||||
image: dessalines/lemmy-ui:0.9.0-rc.11
|
||||
environment:
|
||||
- LEMMY_INTERNAL_HOST=lemmy-gamma:8561
|
||||
- LEMMY_EXTERNAL_HOST=localhost:8561
|
||||
|
@ -150,7 +150,7 @@ services:
|
|||
|
||||
# An instance with only an allowlist for beta
|
||||
lemmy-delta-ui:
|
||||
image: dessalines/lemmy-ui:0.9.0-rc.7
|
||||
image: dessalines/lemmy-ui:0.9.0-rc.11
|
||||
environment:
|
||||
- LEMMY_INTERNAL_HOST=lemmy-delta:8571
|
||||
- LEMMY_EXTERNAL_HOST=localhost:8571
|
||||
|
@ -191,7 +191,7 @@ services:
|
|||
|
||||
# An instance who has a blocklist, with lemmy-alpha blocked
|
||||
lemmy-epsilon-ui:
|
||||
image: dessalines/lemmy-ui:0.9.0-rc.7
|
||||
image: dessalines/lemmy-ui:0.9.0-rc.11
|
||||
environment:
|
||||
- LEMMY_INTERNAL_HOST=lemmy-epsilon:8581
|
||||
- LEMMY_EXTERNAL_HOST=localhost:8581
|
||||
|
|
|
@ -22,7 +22,7 @@ RUN cp ./target/release/lemmy_server /app/lemmy_server
|
|||
# Build the docs
|
||||
FROM $RUST_BUILDER_IMAGE as docs
|
||||
WORKDIR /app
|
||||
RUN cargo install --debug mdbook
|
||||
RUN cargo install mdbook --git https://github.com/Nutomic/mdBook.git --branch localization --rev 0982a82 --force
|
||||
COPY docs ./docs
|
||||
RUN mdbook build docs/
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@ services:
|
|||
restart: always
|
||||
|
||||
lemmy:
|
||||
image: dessalines/lemmy:0.9.0-rc.7
|
||||
image: dessalines/lemmy:0.9.0-rc.11
|
||||
ports:
|
||||
- "127.0.0.1:8536:8536"
|
||||
restart: always
|
||||
|
@ -26,7 +26,7 @@ services:
|
|||
- iframely
|
||||
|
||||
lemmy-ui:
|
||||
image: dessalines/lemmy-ui:0.9.0-rc.7
|
||||
image: dessalines/lemmy-ui:0.9.0-rc.11
|
||||
ports:
|
||||
- "1235:1234"
|
||||
restart: always
|
||||
|
|
|
@ -1 +1 @@
|
|||
pub const VERSION: &str = "0.9.0-rc.7";
|
||||
pub const VERSION: &str = "0.9.0-rc.11";
|
||||
|
|
Loading…
Reference in a new issue