Skip to content

Commit

Permalink
ci(container): wait longer
Browse files Browse the repository at this point in the history
  • Loading branch information
duncdrum committed Dec 15, 2023
1 parent f9b0bc1 commit ca7e4b2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
docker run -dit -p 8080:8080 -v ${{ github.workspace }}/build:/exist/autodeploy \
--name exist --rm --health-interval=2s --health-start-period=4s \
duncdrum/existdb:${{ matrix.exist-version }}
sleep 10s
sleep 14s
# Test
- name: Run test
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ A database of terms drawn from the lists of terms and abbreviations in many volu

## Data sources

- [The *Foreign Relations of the United States (FRUS)_ series](https://history.state.gov/historicaldocuments) (see raw data at the [HistoryAtState/frus](https://github.com/HistoryAtState/frus) GitHub repository)
- [The *Foreign Relations of the United States (FRUS)* series](https://history.state.gov/historicaldocuments) (see raw data at the [HistoryAtState/frus](https://github.com/HistoryAtState/frus) GitHub repository)

## Status

Expand Down
4 changes: 2 additions & 2 deletions test/smoke-test.bats
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@

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

@test "logs are error free" {
Expand Down

0 comments on commit ca7e4b2

Please sign in to comment.