Merge pull request #1522 from nhooyr/fix-daily

ci: Fix daily part 2
This commit is contained in:
Alexander Wang 2023-08-01 23:05:31 -07:00 committed by GitHub
commit 62a48bc27c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 6 deletions

View file

@ -16,7 +16,7 @@ jobs:
with:
go-version-file: ./go.mod
cache: true
- run: DAILY=1 COLOR=1 CI_FORCE=1 ./make.sh all race
- run: COLOR=1 CI_FORCE=1 ./make.sh all race
env:
GITHUB_TOKEN: ${{ secrets._GITHUB_TOKEN }}
DISCORD_WEBHOOK_URL: ${{ secrets.DISCORD_WEBHOOK_URL }}

View file

@ -6,8 +6,4 @@ if [ "$*" = "" ]; then
set ./...
fi
if [ "${CI:-}" ]; then
export FORCE_COLOR=1
npx playwright@1.31.1 install --with-deps chromium
fi
go test --timeout=30m "$@"

View file

@ -14,7 +14,7 @@ if ! go version | grep -qF '1.20'; then
exit 1
fi
if [ "${DAILY-}" ]; then
if [ "${CI:-}" ]; then
export FORCE_COLOR=1
npx playwright@1.31.1 install --with-deps chromium
fi