소스 검색

github aciton

jqh 4 년 전
부모
커밋
026e4ba1c5
1개의 변경된 파일5개의 추가작업 그리고 2개의 파일을 삭제
  1. 5 2
      .github/workflows/laravel5.yml

+ 5 - 2
.github/workflows/laravel5.yml

@@ -86,8 +86,11 @@ jobs:
           cd ./laravel-tests
           export DISPLAY=:99.0
           sudo Xvfb :99.0 -ac &
-          ./vendor/laravel/dusk/bin/chromedriver-linux --headless --disable-gpu --remote-debugging-port=9515 http://localhost &
-          php artisan serve &
+          sudo chmod -R 0755 ./vendor/laravel/dusk/bin/
+#          ./vendor/laravel/dusk/bin/chromedriver-linux --headless --disable-gpu --remote-debugging-port=9515 http://localhost > /dev/null 2>&1 &
+#          php artisan serve > /dev/null 2>&1 &
+          nohup bash -c './vendor/laravel/dusk/bin/chromedriver-linux --headless --disable-gpu --remote-debugging-port=9515 http://localhost > /dev/null 2>&1 &'
+          nohup bash -c 'php artisan serve > /dev/null 2>&1 &'
 
       - name: Run test suite
         run: |