Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
SethFalco committed Dec 21, 2023
1 parent c961370 commit 6158d9c
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,23 @@ jobs:
steps:
- name: Build dataset
run: |
ls
wget https://www.w3.org/Graphics/SVG/Test/20110816/archives/W3C_SVG_11_TestSuite.tar.gz
ls
mkdir -p svgs/W3C_SVG_11_TestSuite
ls
tar -tf W3C_SVG_11_TestSuite.tar.gz | grep -E '^svg/.+\.svgz?$' > filter.txt
ls
tar -xf W3C_SVG_11_TestSuite.tar.gz -T filter.txt -C svgs/W3C_SVG_11_TestSuite
ls
wget https://download.kde.org/stable/frameworks/5.113/oxygen-icons-5.113.0.tar.xz
ls
tar -tf oxygen-icons-5.113.0.tar.xz | grep -E '\.svgz?$' > filter.txt
ls
tar -xf oxygen-icons-5.113.0.tar.xz -T filter.txt -C svgs
ls
find svgs -name "*.svgz" -exec sh -c '7z e -so {} > $(echo {} | sed s/\.svgz$/\.svg/)' \; -delete
ls
- name: Package artifacts
run: |
mkdir /tmp/dist
Expand Down

0 comments on commit 6158d9c

Please sign in to comment.