Skip to content

Commit

Permalink
Removed references to ethereum and github and deleted unused ethereum…
Browse files Browse the repository at this point in the history
…-related files
  • Loading branch information
jdowning100 committed May 24, 2023
1 parent 5eb0e85 commit 88a8216
Show file tree
Hide file tree
Showing 127 changed files with 506 additions and 1,220 deletions.
8 changes: 4 additions & 4 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ Thank you for considering to help out with the source code! We welcome
contributions from anyone on the internet, and are grateful for even the
smallest of fixes!

If you'd like to contribute to go-ethereum, please fork, fix, commit and send a
If you'd like to contribute to go-quai, please fork, fix, commit and send a
pull request for the maintainers to review and merge into the main code base. If
you wish to submit more complex changes though, please check up with the core
devs first on [our gitter channel](https://gitter.im/ethereum/go-ethereum) to
devs first on [our discord server](https://discord.gg/quai) to
ensure those changes are in line with the general philosophy of the project
and/or get some early feedback which can make both your efforts much lighter as
well as our review and merge procedures quick and simple.
Expand All @@ -30,11 +30,11 @@ Please make sure your contributions adhere to our coding guidelines:
Before you submit a feature request, please check and make sure that it isn't
possible through some other means. The JavaScript-enabled console is a powerful
feature in the right hands. Please check our
[Geth documentation page](https://geth.ethereum.org/docs/) for more info
[Quai documentation page](https://docs.quai.network/) for more info
and help.

## Configuration, dependencies, and tests

Please see the [Developers' Guide](https://geth.ethereum.org/docs/developers/devguide)
Please see the [Developers' Guide](https://docs.quai.network/)
for more details on configuring your environment, managing project dependencies
and testing procedures.
4 changes: 1 addition & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
[submodule "tests"]
path = tests/testdata
url = https://github.com/ethereum/tests

123 changes: 0 additions & 123 deletions .mailmap

This file was deleted.

31 changes: 15 additions & 16 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
language: go
go_import_path: github.com/ethereum/go-ethereum
go_import_path: github.com/dominant-strategies/go-quai
sudo: false
jobs:
allow_failures:
Expand All @@ -20,7 +20,7 @@ jobs:
env:
- lint
git:
submodules: false # avoid cloning ethereum/tests
submodules: false
script:
- go run build/ci.go lint

Expand All @@ -37,11 +37,11 @@ jobs:
services:
- docker
git:
submodules: false # avoid cloning ethereum/tests
submodules: false
before_install:
- export DOCKER_CLI_EXPERIMENTAL=enabled
script:
- go run build/ci.go docker -image -manifest amd64,arm64 -upload ethereum/client-go
- go run build/ci.go docker -image -manifest amd64,arm64 -upload dominant-strategies/go-quai

- stage: build
if: type = push
Expand All @@ -54,11 +54,11 @@ jobs:
services:
- docker
git:
submodules: false # avoid cloning ethereum/tests
submodules: false
before_install:
- export DOCKER_CLI_EXPERIMENTAL=enabled
script:
- go run build/ci.go docker -image -manifest amd64,arm64 -upload ethereum/client-go
- go run build/ci.go docker -image -manifest amd64,arm64 -upload dominant-strategies/go-quai

# This builder does the Ubuntu PPA upload
- stage: build
Expand All @@ -70,7 +70,7 @@ jobs:
- ubuntu-ppa
- GO111MODULE=on
git:
submodules: false # avoid cloning ethereum/tests
submodules: false
addons:
apt:
packages:
Expand All @@ -82,7 +82,7 @@ jobs:
- python-paramiko
script:
- echo '|1|7SiYPr9xl3uctzovOTj4gMwAC1M=|t6ReES75Bo/PxlOPJ6/GsGbTrM0= ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA0aKz5UTUndYgIGG7dQBV+HaeuEZJ2xPHo2DS2iSKvUL4xNMSAY4UguNW+pX56nAQmZKIZZ8MaEvSj6zMEDiq6HFfn5JcTlM80UwlnyKe8B8p7Nk06PPQLrnmQt5fh0HmEcZx+JU9TZsfCHPnX7MNz4ELfZE6cFsclClrKim3BHUIGq//t93DllB+h4O9LHjEUsQ1Sr63irDLSutkLJD6RXchjROXkNirlcNVHH/jwLWR5RcYilNX7S5bIkK8NlWPjsn/8Ua5O7I9/YoE97PpO6i73DTGLh5H9JN/SITwCKBkgSDWUt61uPK3Y11Gty7o2lWsBjhBUm2Y38CBsoGmBw==' >> ~/.ssh/known_hosts
- go run build/ci.go debsrc -upload ethereum/ethereum -sftp-user geth-ci -signer "Go Ethereum Linux Builder <[email protected]>"
- go run build/ci.go debsrc -upload dominant-strategies/quai -sftp-user geth-ci -signer "Go Quai Linux Builder <[email protected]>"

# This builder does the Linux Azure uploads
- stage: build
Expand All @@ -95,7 +95,7 @@ jobs:
- azure-linux
- GO111MODULE=on
git:
submodules: false # avoid cloning ethereum/tests
submodules: false
addons:
apt:
packages:
Expand Down Expand Up @@ -132,7 +132,7 @@ jobs:
- azure-linux-mips
- GO111MODULE=on
git:
submodules: false # avoid cloning ethereum/tests
submodules: false
script:
- go run build/ci.go xgo --alltools -- --targets=linux/mips --ldflags '-extldflags "-static"' -v
- for bin in build/bin/*-linux-mips; do mv -f "${bin}" "${bin/-linux-mips/}"; done
Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:
- maven-android
- GO111MODULE=on
git:
submodules: false # avoid cloning ethereum/tests
submodules: false
before_install:
# Install Android and it's dependencies manually, Travis is stale
- export JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64
Expand All @@ -184,8 +184,8 @@ jobs:
- export GOPATH=$HOME/go
script:
# Build the Android archive and upload it to Maven Central and Azure
- mkdir -p $GOPATH/src/github.com/ethereum
- ln -s `pwd` $GOPATH/src/github.com/ethereum/go-ethereum
- mkdir -p $GOPATH/src/github.com/dominant-strategies
- ln -s `pwd` $GOPATH/src/github.com/dominant-strategies/go-quai
- go run build/ci.go aar -signer ANDROID_SIGNING_KEY -signify SIGNIFY_KEY -deploy https://oss.sonatype.org -upload gethstore/builds

# This builder does the OSX Azure, iOS CocoaPods and iOS Azure uploads
Expand All @@ -199,7 +199,7 @@ jobs:
- cocoapods-ios
- GO111MODULE=on
git:
submodules: false # avoid cloning ethereum/tests
submodules: false
script:
- go run build/ci.go install -dlgo
- go run build/ci.go archive -type tar -signer OSX_SIGNING_KEY -signify SIGNIFY_KEY -upload gethstore/builds
Expand All @@ -215,7 +215,6 @@ jobs:
- xctool -version
- xcrun simctl list

# Workaround for https://github.com/golang/go/issues/23749
- export CGO_CFLAGS_ALLOW='-fmodules|-fblocks|-fobjc-arc'
- go run build/ci.go xcode -signer IOS_SIGNING_KEY -signify SIGNIFY_KEY -deploy trunk -upload gethstore/builds

Expand Down Expand Up @@ -260,6 +259,6 @@ jobs:
- azure-purge
- GO111MODULE=on
git:
submodules: false # avoid cloning ethereum/tests
submodules: false
script:
- go run build/ci.go purge -store gethstore/builds -days 14
6 changes: 3 additions & 3 deletions Dockerfile.alltools
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ FROM golang:1.16-alpine as builder

RUN apk add --no-cache gcc musl-dev linux-headers git

ADD . /go-ethereum
RUN cd /go-ethereum && go run build/ci.go install
ADD . /go-quai
RUN cd /go-quai && go run build/ci.go install

# Pull all binaries into a second stage deploy alpine container
FROM alpine:latest

RUN apk add --no-cache ca-certificates
COPY --from=builder /go-ethereum/build/bin/* /usr/local/bin/
COPY --from=builder /go-quai/build/bin/* /usr/local/bin/

EXPOSE 8545 8546 30303 30303/udp

Expand Down
50 changes: 0 additions & 50 deletions build/ci-notes.md

This file was deleted.

Loading

0 comments on commit 88a8216

Please sign in to comment.