Skip to content

Commit 9785cc6

Browse files
committed
Remove references to centos7
1 parent 8b890e0 commit 9785cc6

File tree

3 files changed

+6
-10
lines changed

3 files changed

+6
-10
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,8 @@ go build .
9090
CGO_ENABLED=0 go build .
9191
```
9292

93-
In the case that it may be desirable to compile with cgo, but with libwasmvm linking disabled an additional build tag is available.
93+
In the case that it may be desirable to compile with cgo, but with libwasmvm
94+
linking disabled an additional build tag is available.
9495

9596
```sh
9697
# Build with CGO, but with libwasmvm linking disabled
@@ -106,8 +107,8 @@ The Rust implementation of the VM is compiled to a library called libwasmvm.
106107
This is then linked to the Go code when the final binary is built. For that
107108
reason not all systems supported by Go are supported by this project.
108109

109-
Linux (tested on Ubuntu, Debian, and CentOS7, Alpine) and macOS is supported. We
110-
are working on Windows (#288).
110+
Linux (tested on Ubuntu, Debian, Alpine) and macOS is supported. We are working
111+
on Windows support with very low priority (#288).
111112

112113
[#288]: https://github.com/CosmWasm/wasmvm/pull/288
113114

builders/Makefile

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@
22
# See builders/README.md
33
BUILDERS_PREFIX := cosmwasm/go-ext-builder:0019
44

5-
.PHONY: docker-image-centos7
6-
docker-image-centos7:
7-
docker build --pull . -t $(BUILDERS_PREFIX)-centos7 -f ./Dockerfile.centos7
8-
95
.PHONY: docker-image-debian
106
docker-image-debian:
117
docker build --pull . -t $(BUILDERS_PREFIX)-debian -f ./Dockerfile.debian
@@ -19,11 +15,10 @@ docker-image-alpine:
1915
docker build --pull . -t $(BUILDERS_PREFIX)-alpine -f ./Dockerfile.alpine
2016

2117
.PHONY: docker-images
22-
docker-images: docker-image-centos7 docker-image-debian docker-image-cross docker-image-alpine
18+
docker-images: docker-image-debian docker-image-cross docker-image-alpine
2319

2420
.PHONY: docker-publish
2521
docker-publish: docker-images
2622
docker push $(BUILDERS_PREFIX)-cross
27-
docker push $(BUILDERS_PREFIX)-centos7
2823
docker push $(BUILDERS_PREFIX)-debian
2924
docker push $(BUILDERS_PREFIX)-alpine

docs/COMPILER_VERSIONS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ ensure we can switch between compiler versions in some range.
4545
## Production Rust compiler
4646

4747
This is the version set in the builders: `builders/Dockerfile.alpine`,
48-
`builders/Dockerfile.centos7` and `Dockerfile.cross`.
48+
`builders/Dockerfile.debian` and `Dockerfile.cross`.
4949

5050
## Min Rust compiler
5151

0 commit comments

Comments
 (0)