diff --git a/.github/workflows/octave.yml b/.github/workflows/octave.yml index 27c2be6..d272ed1 100644 --- a/.github/workflows/octave.yml +++ b/.github/workflows/octave.yml @@ -8,7 +8,7 @@ on: - cron: "3 2 1 * *" env: - OCTAVE_LATEST: 9.1.0 + OCTAVE_LATEST: 9.2.0 jobs: octave: @@ -41,6 +41,7 @@ jobs: - 8.3.0 - 8.4.0 - 9.1.0 + - 9.2.0 steps: - name: Checkout diff --git a/README.md b/README.md index 4978e07..c7db85d 100644 --- a/README.md +++ b/README.md @@ -8,20 +8,20 @@ The Octave images can be run by ```sh # Obtain image - docker pull docker.io/gnuoctave/octave:9.1.0 + docker pull docker.io/gnuoctave/octave:9.2.0 # Start container (command-line interface) - docker run -it --rm gnuoctave/octave:9.1.0 octave + docker run -it --rm gnuoctave/octave:9.2.0 octave ``` - [Podman](https://podman.io/): as before, replace `docker` with `podman`. - [Singularity](https://sylabs.io/singularity/): most recommended for GUI mode. ```sh - singularity pull docker://gnuoctave/octave:9.1.0 + singularity pull docker://gnuoctave/octave:9.2.0 # Start container (command-line interface) - singularity run octave_9.1.0.sif + singularity run octave_9.2.0.sif ``` See below for starting Octave with GUI. @@ -51,7 +51,7 @@ Please adapt the shell command after `-t` respectively. Using Singularity, start Octave with GUI with this command: ``` -singularity exec --bind /run/user octave_9.1.0.sif octave --gui +singularity exec --bind /run/user octave_9.2.0.sif octave --gui ``` Using Docker or Podman run: @@ -67,7 +67,7 @@ docker run \ --volume="/dev:/dev:rw" \ --volume="/run/user:/run/user:rw" \ --workdir="$HOME" \ - docker.io/gnuoctave/octave:9.1.0 octave --gui + docker.io/gnuoctave/octave:9.2.0 octave --gui ``` For old Octave 4.x.x versions you might additionally pass the @@ -96,6 +96,7 @@ graph LR U3[ubuntu:2004] --> b6[docker.io/gnuoctave/octave-build:6]; U2[ubuntu:1804] --> b5[docker.io/gnuoctave/octave-build:5]; U1[ubuntu:1604] --> b4[docker.io/gnuoctave/octave-build:4]; + b8 --> v920[docker.io/gnuoctave/octave:9.2.0]; b8 --> v910[docker.io/gnuoctave/octave:9.1.0]; b8 --> v840[docker.io/gnuoctave/octave:8.4.0]; b8 --> v830[docker.io/gnuoctave/octave:8.3.0]; @@ -135,6 +136,7 @@ graph LR classDef age4 fill:#ffd700,stroke:#333,stroke-width:2px; classDef age5 fill:#ffa500,stroke:#333,stroke-width:2px; classDef age6 fill:#ff6a6a,stroke:#333,stroke-width:2px; + class v920 age1; class v910 age1; class v840 age1; class v830 age1; diff --git a/install.sh b/install.sh index f1725f8..ab3277d 100755 --- a/install.sh +++ b/install.sh @@ -11,7 +11,7 @@ fi ################ # Default Octave Docker image to be used. -OCTAVE_VERSION="9.1.0" +OCTAVE_VERSION="9.2.0" OCTAVE_IMAGE="docker.io/gnuoctave/octave" # Choose default container tool in this order.