Skip to content

Commit

Permalink
update fastlane image
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Oct 26, 2023
1 parent 4de8480 commit 0b90d8e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
3 changes: 1 addition & 2 deletions fastlane/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ RUN cp watchman-v2023.10.23.00-linux/bin/* /usr/local/bin
RUN cp watchman-v2023.10.23.00-linux/lib/* /usr/local/lib
RUN wget https://www.openssl.org/source/openssl-1.1.1o.tar.gz
RUN tar xvf openssl-1.1.1o.tar.gz
RUN cd openssl-1.1.1o && ./config && make && make install
RUN cp libcrypto.so.1.1 /usr/lib
RUN cd openssl-1.1.1o && ./config && make && make install && cp libcrypto.so.1.1 /usr/lib
RUN watchman --version
RUN echo 'eval $(rtx activate bash)' >> ~/.bashrc
RUN rtx install [email protected]
Expand Down
5 changes: 3 additions & 2 deletions fastlane/generate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ const image = new Dockerfile()
.run("cp watchman-v2023.10.23.00-linux/lib/* /usr/local/lib")
.run("wget https://www.openssl.org/source/openssl-1.1.1o.tar.gz")
.run("tar xvf openssl-1.1.1o.tar.gz")
.run("cd openssl-1.1.1o && ./config && make && make install")
.run("cp libcrypto.so.1.1 /usr/lib")
.run(
"cd openssl-1.1.1o && ./config && make && make install && cp libcrypto.so.1.1 /usr/lib"
)
.run("watchman --version")
.run("echo 'eval $(rtx activate bash)' >> ~/.bashrc")
.run("rtx install [email protected]")
Expand Down

0 comments on commit 0b90d8e

Please sign in to comment.