-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7,449 changed files
with
26,432 additions
and
701,114 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
FROM ubuntu:latest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"name" : "default", | ||
"dockerfile" : "Dockerfile", | ||
"context" : "." | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,4 +23,4 @@ runs: | |
uses: actions-rs/toolchain@v1 | ||
with: | ||
profile: minimal | ||
toolchain: 1.70 | ||
toolchain: 1.73 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,18 @@ | ||
[submodule "aptos-core"] | ||
path = vendors/aptos-core | ||
url = https://github.com/movemntdev/aptos-core | ||
branch = m1 | ||
branch = canonical | ||
[submodule "x25519-dalek"] | ||
path = vendors/x25519-dalek | ||
url = https://github.com/movemntdev/x25519-dalek | ||
[submodule "ed25519-dalek"] | ||
path = vendors/ed25519-dalek | ||
url = https://github.com/movemntdev/ed25519-dalek | ||
[submodule "ecosystem/evm-runtime"] | ||
path = ecosystem/evm-runtime | ||
url = https://github.com/movemntdev/move-evm-swap-backend | ||
[submodule "m1/subnet-request-proxy"] | ||
path = m1/subnet-request-proxy | ||
url = https://github.com/movemntdev/subnet-request-proxy | ||
[submodule "aptos-pre-core-v2"] | ||
path = vendors/aptos-core-1.7 | ||
url = https://github.com/movemntdev/aptos-core | ||
branch = testnet | ||
[submodule "aptos-core-v2"] | ||
path = vendors/aptos-core-v2 | ||
url = https://github.com/movemntdev/aptos-core | ||
branch = v2 | ||
[submodule "m1/vendors/sui"] | ||
[submodule "vendors/sui"] | ||
path = vendors/sui | ||
url = https://github.com/movemntdev/sui | ||
branch = canonical |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
# Stage 1: Use a Debian image with Golang pre-installed | ||
FROM golang:1.21-bullseye as golang-base | ||
|
||
# Stage 2: Use the official Ubuntu image as your final base | ||
FROM ubuntu:latest | ||
|
||
# Set environment variables to non-interactive (this prevents some prompts) | ||
ENV DEBIAN_FRONTEND=non-interactive | ||
|
||
# Copy Golang from the golang-base image | ||
COPY --from=golang-base /usr/local/go /usr/local/go | ||
|
||
# Add Golang to the PATH | ||
ENV PATH="/usr/local/go/bin:${PATH}" | ||
|
||
ARG VERSION=0.0.0 | ||
|
||
# Set environment variables to non-interactive (this prevents some prompts) | ||
ENV DEBIAN_FRONTEND=non-interactive | ||
|
||
# Install necessary tools and libraries | ||
RUN apt-get update && apt-get install -y \ | ||
curl \ | ||
build-essential \ | ||
binutils \ | ||
pkg-config \ | ||
libssl-dev \ | ||
sudo \ | ||
git | ||
|
||
RUN apt-get install -y libclang-dev | ||
|
||
# Update package list and install curl | ||
RUN apt-get update && apt-get install -y curl wget git libpq-dev | ||
|
||
# Install curl and other dependencies required for Node.js installation | ||
RUN apt-get update && apt-get install -y curl && apt-get clean | ||
|
||
# Install Node.js and npm | ||
RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash - \ | ||
&& apt-get install -y nodejs | ||
|
||
# Verify installation | ||
RUN node --version | ||
RUN npm --version | ||
|
||
# Download the script | ||
RUN curl -fSsL -o install.sh https://raw.githubusercontent.com/movemntdev/M1/main/scripts/install.sh | ||
|
||
# Make the script executable | ||
RUN chmod +x install.sh | ||
|
||
# Execute the script with the desired arguments | ||
RUN ./install.sh --version ${VERSION} | ||
|
||
RUN movement manage install m1 testnet --version ${VERSION} | ||
|
||
CMD ["/bin/bash"] |
Submodule evm-runtime
deleted from
cc29eb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
target | ||
Cargo.lock | ||
avalanchego | ||
plugins |
Oops, something went wrong.