Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-gcc9.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
distribution: 'temurin'
java-version: '21'

- name: Install dependencies on Ubuntu 22.04
- name: Install dependencies on Ubuntu
run: |
sudo apt update -y
sudo apt install -y gcc-9 build-essential gettext autoconf
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
image: ${{ inputs.os }}
steps:
- uses: actions/setup-java@v4
if: inputs.os == 'ubuntu:22.04'
if: inputs.os == 'ubuntu:24.04'
with:
distribution: 'temurin'
java-version: '21'
Expand All @@ -25,8 +25,8 @@ jobs:
distribution: 'temurin'
java-version: '11'

- name: Install dependencies on Ubuntu 22.04
if: inputs.os == 'ubuntu:22.04'
- name: Install dependencies on Ubuntu 24.04
if: inputs.os == 'ubuntu:24.04'
run: |
apt update -y
apt install -y build-essential gettext autoconf
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
build:
strategy:
matrix:
os: ["ubuntu:22.04", "almalinux:9", "amazonlinux:2023"]
os: ["ubuntu:24.04", "almalinux:9", "amazonlinux:2023"]
uses: ./.github/workflows/build.yml
with:
os: ${{ matrix.os }}
Expand All @@ -31,7 +31,7 @@ jobs:
strategy:
matrix:
test_name: ["command-line-options", "data-rep", "i18n_sjis", "jp-compat", "run", "syntax", "cobj-idx", "misc"]
os: ["ubuntu:22.04", "almalinux:9", "amazonlinux:2023"]
os: ["ubuntu:24.04", "almalinux:9", "amazonlinux:2023"]
uses: ./.github/workflows/test-other.yml
with:
test-name: ${{ matrix.test_name }}
Expand All @@ -42,7 +42,7 @@ jobs:
strategy:
matrix:
test_name: ["IC", "IF", "IX", "NC", "OB", "RL", "SG", "SM", "SQ", "ST"]
os: ["ubuntu:22.04", "almalinux:9", "amazonlinux:2023"]
os: ["ubuntu:24.04", "almalinux:9", "amazonlinux:2023"]
uses: ./.github/workflows/test-nist.yml
with:
test-name: ${{ matrix.test_name }}
Expand All @@ -54,7 +54,7 @@ jobs:
strategy:
matrix:
test_name: ["CM", "DB", "RW"]
os: ["ubuntu:22.04", "almalinux:9", "amazonlinux:2023"]
os: ["ubuntu:24.04", "almalinux:9", "amazonlinux:2023"]
uses: ./.github/workflows/test-nist.yml
with:
test-name: ${{ matrix.test_name }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
build:
strategy:
matrix:
os: ["ubuntu:22.04"]
os: ["ubuntu:24.04"]
uses: ./.github/workflows/build.yml
with:
os: ${{ matrix.os }}
Expand All @@ -30,7 +30,7 @@ jobs:
strategy:
matrix:
test_name: ["command-line-options", "data-rep", "i18n_sjis", "jp-compat", "run", "syntax", "cobj-idx", "misc"]
os: ["ubuntu:22.04"]
os: ["ubuntu:24.04"]
uses: ./.github/workflows/test-other.yml
with:
test-name: ${{ matrix.test_name }}
Expand All @@ -41,7 +41,7 @@ jobs:
strategy:
matrix:
test_name: ["IC", "IF", "IX", "NC", "OB", "RL", "SG", "SM", "SQ", "ST"]
os: ["ubuntu:22.04"]
os: ["ubuntu:24.04"]
uses: ./.github/workflows/test-nist.yml
with:
test-name: ${{ matrix.test_name }}
Expand All @@ -53,7 +53,7 @@ jobs:
strategy:
matrix:
test_name: ["CM", "DB", "RW"]
os: ["ubuntu:22.04"]
os: ["ubuntu:24.04"]
uses: ./.github/workflows/test-nist.yml
with:
test-name: ${{ matrix.test_name }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-nist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
test-other:
strategy:
matrix:
os: ["ubuntu:22.04", "almalinux:9"]
os: ["ubuntu:24.04", "almalinux:9"]
runs-on: ubuntu-latest
container:
image: ${{ inputs.os }}
Expand All @@ -39,8 +39,8 @@ jobs:
distribution: 'temurin'
java-version: '11'

- name: Install dependencies on Ubuntu 22.04
if: inputs.os == 'ubuntu:22.04'
- name: Install dependencies on Ubuntu 24.04
if: inputs.os == 'ubuntu:24.04'
run: |
apt update -y
apt install -y build-essential
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-other.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ jobs:
distribution: 'temurin'
java-version: '11'

- name: Install dependencies on Ubuntu 22.04
if: inputs.os == 'ubuntu:22.04'
- name: Install dependencies on Ubuntu 24.04
if: inputs.os == 'ubuntu:24.04'
run: |
apt update -y
apt install -y build-essential
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Other software and libraries are distributed under the GNU GENERAL PUBLIC LICENS

opensource COBOL 4J is tested with the following platforms and dependencies

* Ubuntu 22.04 and OpenJDK 21
* Ubuntu 24.04 and OpenJDK 21
* AlmaLinux 9 and OpenJDK 11
* Amazon Linux 2023 and OpenJDK 21

Expand All @@ -30,7 +30,7 @@ see [doc/requirements-all.md](./doc/requirements-all.md).

Run the following commands.

#### Ubuntu 22.04
#### Ubuntu 24.04

```
sudo apt-get update
Expand Down
4 changes: 2 additions & 2 deletions README_JP.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ opensource COBOL 4JはCOBOLからCに変換するCOBOLコンパイラ["opensourc

opensource COBOL 4J は下記の環境でテストされています.

* Ubuntu 22.04 と OpenJDK 21
* Ubuntu 24.04 と OpenJDK 21
* AlmaLinux 9 と OpenJDK 11
* Amazon Linux 2023 と OpenJDK 21

Expand All @@ -31,7 +31,7 @@ opensource COBOL 4J v1.0.22はUbuntuとAlmaLinuxで動作を確認していま

下記のコマンドを実行する.

#### Ubuntu 22.04
#### Ubuntu 24.04

```
sudo apt-get update
Expand Down