Skip to content

Commit 58e1e4e

Browse files
authored
workflows: Fix openwatcom download
1 parent 1c3dcfc commit 58e1e4e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ jobs:
1515

1616
steps:
1717
- name: Install build tools
18-
run: sudo apt update && sudo apt install build-essential
18+
run: sudo apt update && sudo apt install build-essential xz-utils
1919
- name: Download OpenWatcom
2020
if: steps.cache.outputs.cache-hit != 'true'
2121
run: |
2222
rm -rf /opt/watcom
2323
mkdir /opt/watcom
24-
wget -qO- https://github.com/open-watcom/open-watcom-v2/releases/download/Current-build/ow-snapshot.tar.gz | tar -xvz -C /opt/watcom
24+
wget -qO- https://github.com/open-watcom/open-watcom-v2/releases/download/Current-build/ow-snapshot.tar.xz | tar Jxvz -C /opt/watcom
2525
echo "/opt/watcom/binl64:/opt/watcom/binl" >> $GITHUB_PATH
2626
- uses: actions/checkout@v2
2727
- name: Build `cp437`
@@ -100,4 +100,4 @@ jobs:
100100
**/*.COM
101101
amikey/*.md
102102
multikey/*.md
103-
viakey/*.md
103+
viakey/*.md

0 commit comments

Comments
 (0)