Skip to content

Commit

Permalink
Merge pull request #72 from Bogdanp/master
Browse files Browse the repository at this point in the history
build: add 8.9
  • Loading branch information
Bogdanp authored May 17, 2023
2 parents 318a145 + 3baef3c commit 20d3d17
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
series: [6x, 7x, 8x]
series: [7x, 8x]
steps:
- uses: actions/checkout@master
- run: ./build.sh ${{ matrix.series }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
fail-fast: false
matrix:
series: [6x, 7x, 8x, snapshot]
series: [7x, 8x, snapshot]
steps:
- uses: actions/checkout@master
- run: ./build.sh ${{ matrix.series }}
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# racket-docker

Docker images for various Racket versions available on DockerHub as [`racket/racket:<version>`](https://hub.docker.com/r/racket/racket/). For example, to run a Racket 8.8 REPL:
Docker images for various Racket versions available on DockerHub as [`racket/racket:<version>`](https://hub.docker.com/r/racket/racket/). For example, to run a Racket 8.9 REPL:

```
$ docker run -it racket/racket:8.8
$ docker run -it racket/racket:8.9
```

#### Normal images
Expand All @@ -16,7 +16,7 @@ These images use the `minimal-install` of Racket to avoid pulling in things like
DrRacket or Scribble. This also means many `raco` commands such as `raco make`
will be missing; install the `compiler-lib` package to get most of the standard
`raco` commands. Alternatively, use the "full" images instead such as
`racket/racket:8.8-full`.
`racket/racket:8.9-full`.

Versions: 6.1 and above. Racket CS images are available for 7.4 and above.

Expand Down
4 changes: 2 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -122,15 +122,15 @@ foreach () {
done;
};

declare -r LATEST_RACKET_VERSION="8.8";
declare -r LATEST_RACKET_VERSION="8.9";

tag_latest () {
declare -r repository="${1}";
docker image tag "${repository}:${LATEST_RACKET_VERSION}" "${repository}:latest";
};

build_all_8x () {
foreach build_8x "8.0" "8.1" "8.2" "8.3" "8.4" "8.5" "8.6" "8.7" "8.8";
foreach build_8x "8.0" "8.1" "8.2" "8.3" "8.4" "8.5" "8.6" "8.7" "8.8" "8.9";
tag_latest "${DOCKER_REPOSITORY}";
tag_latest "${SECONDARY_DOCKER_REPOSITORY}";
}
Expand Down

0 comments on commit 20d3d17

Please sign in to comment.