Fix daily part 2
Hopefully works this time.
This commit is contained in:
parent
cd11c8fa5f
commit
b5d68e60b4
3 changed files with 2 additions and 6 deletions
2
.github/workflows/daily.yml
vendored
2
.github/workflows/daily.yml
vendored
|
|
@ -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 }}
|
||||||
|
|
|
||||||
|
|
@ -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 "$@"
|
||||||
|
|
|
||||||
2
make.sh
2
make.sh
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue