Skip to content

Commit 599dbd5

Browse files
Support Amazon Linux 2023 (#282)
1 parent 0178e34 commit 599dbd5

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

.github/workflows/pull-request.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
build:
1212
strategy:
1313
matrix:
14-
os: ["ubuntu:22.04", "almalinux:9"]
14+
os: ["ubuntu:22.04", "almalinux:9", "amazonlinux:2023"]
1515
uses: ./.github/workflows/build.yml
1616
with:
1717
os: ${{ matrix.os }}
@@ -21,7 +21,7 @@ jobs:
2121
strategy:
2222
matrix:
2323
test_name: ["command-line-options", "data-rep", "i18n_sjis", "jp-compat", "run", "syntax"]
24-
os: ["ubuntu:22.04", "almalinux:9"]
24+
os: ["ubuntu:22.04", "almalinux:9", "amazonlinux:2023"]
2525
uses: ./.github/workflows/test-other.yml
2626
with:
2727
test-name: ${{ matrix.test_name }}
@@ -32,7 +32,7 @@ jobs:
3232
strategy:
3333
matrix:
3434
test_name: ["IC", "IF", "IX", "NC", "OB", "RL", "SG", "SM", "SQ", "ST"]
35-
os: ["ubuntu:22.04", "almalinux:9"]
35+
os: ["ubuntu:22.04", "almalinux:9", "amazonlinux:2023"]
3636
uses: ./.github/workflows/test-nist.yml
3737
with:
3838
test-name: ${{ matrix.test_name }}
@@ -44,7 +44,7 @@ jobs:
4444
strategy:
4545
matrix:
4646
test_name: ["CM", "DB", "RW"]
47-
os: ["ubuntu:22.04", "almalinux:9"]
47+
os: ["ubuntu:22.04", "almalinux:9", "amazonlinux:2023"]
4848
uses: ./.github/workflows/test-nist.yml
4949
with:
5050
test-name: ${{ matrix.test_name }}

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

77
## [Unreleased]
88
### Added
9+
* Support Amazon Linux 2023 (#282)
910
* Implement runtime numeric checkings (#253)
1011
* Implement sorting a table based on ebcdic (#254)
1112
* Implement KEY IS option of SORT statements (#259)

tests/command-line-options.src/fsyntax-only.at

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ AT_CHECK([for f in ./*; do echo $f; done | sort], [0],
3939
./prog2.cbl
4040
./prog3.cbl
4141
])
42-
AT_CHECK([cobj --help | grep '\-fsyntax\-only' > /dev/null], [0])
42+
AT_CHECK([cobj --help | grep '@<:@-@:>@fsyntax@<:@-@:>@only' > /dev/null], [0])
4343

4444

4545
AT_CLEANUP

tests/command-line-options.src/jar.at

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ AT_DATA([sub.cbl], [
2525
DISPLAY B.
2626
])
2727

28-
AT_CHECK([${COBJ} --help | grep ' \-jar' > /dev/null], [0])
29-
AT_CHECK([${COBJ} --help | grep '\-single-jar' > /dev/null], [0])
28+
AT_CHECK([${COBJ} --help | grep ' @<:@-@:>@jar' > /dev/null], [0])
29+
AT_CHECK([${COBJ} --help | grep '@<:@-@:>@single@<:@-@:>@jar' > /dev/null], [0])
3030

3131
AT_CHECK([mkdir tmp])
3232

0 commit comments

Comments
 (0)