Fix daily part 2

Hopefully works this time.
This commit is contained in:
Anmol Sethi 2023-08-01 12:09:55 -07:00
parent cd11c8fa5f
commit b5d68e60b4
No known key found for this signature in database
GPG key ID: 8CEF1878FF10ADEB
3 changed files with 2 additions and 6 deletions

View file

@ -16,7 +16,7 @@ jobs:
with: with:
go-version-file: ./go.mod go-version-file: ./go.mod
cache: true 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: env:
GITHUB_TOKEN: ${{ secrets._GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets._GITHUB_TOKEN }}
DISCORD_WEBHOOK_URL: ${{ secrets.DISCORD_WEBHOOK_URL }} DISCORD_WEBHOOK_URL: ${{ secrets.DISCORD_WEBHOOK_URL }}

View file

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

View file

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