Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
Co-authored-by: Joe Wicentowski <[email protected]>
  • Loading branch information
duncdrum and joewiz committed Apr 11, 2024
1 parent 5372be9 commit acd6c00
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ jobs:
# TODO(DP) Validate ?
- name: Ensure all XML files are well-formed
run: |
xmllint --noout \
$(find . -type f -name '*.xml')
find . -type f -name '*.xml' -print0 | xargs -0 xmllint -noout
# Build
- name: Setup Node.js
Expand All @@ -48,7 +47,7 @@ jobs:
with:
distribution: 'temurin'
java-version: ${{ matrix.java-version }}
- run: -Dapp.version=1.0.0-SNAPSHOT
- run: ant -Dapp.version=1.0.0-SNAPSHOT

- name: Add expath dependencies
working-directory: build
Expand Down
2 changes: 1 addition & 1 deletion tests/bats/smoke-test.bats
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

# Make sure the package has been deployed
@test "logs show package deployment" {
result=$(docker logs exist | grep -o 'http://history.state.gov/ns/site/hsg')
result=$(docker logs exist | grep -om 1 'http://history.state.gov/ns/site/hsg')
[ "$result" == 'http://history.state.gov/ns/site/hsg' ]
}

Expand Down

0 comments on commit acd6c00

Please sign in to comment.