File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -862,6 +862,7 @@ jobs:
862862 CLOUDSERVER_IMAGE : ghcr.io/${{ github.repository }}:${{ github.sha }}-testcoverage
863863 JOB_NAME : ${{ github.job }}
864864 ENABLE_NULL_VERSION_COMPAT_MODE : true # needed with mongodb backend
865+ S3_SERVER_ACCESS_LOGS_MODE : ENABLED
865866 steps :
866867 - name : Checkout
867868 uses : actions/checkout@v4
@@ -873,6 +874,13 @@ jobs:
873874 password : ${{ github.token }}
874875 - name : Setup CI environment
875876 uses : ./.github/actions/setup-ci
877+ - name : Setup server access logs file and directory
878+ shell : bash
879+ run : |
880+ set -exu
881+ sudo mkdir -p /logs
882+ sudo chmod 0777 /logs
883+ sudo touch /logs/server-access.log && sudo chmod 0666 /logs/server-access.log
876884 - uses : ruby/setup-ruby@v1
877885 with :
878886 ruby-version : ' 3.2'
You can’t perform that action at this time.
0 commit comments