Skip to content

Commit

Permalink
Merge pull request #4583 from okazy/fix/revert-session-savepath
Browse files Browse the repository at this point in the history
#4572 でセッションの挙動が修正されて不要になった記述を削除
  • Loading branch information
ryo-endo authored Jun 29, 2020
2 parents ba70bd4 + a375561 commit d6304cf
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ jobs:
DATABASE_SERVER_VERSION: ${{ matrix.database_server_version }}
MAILER_URL: 'smtp://localhost:1025'
ECCUBE_PACKAGE_API_URL: 'http://localhost:8080'
run: php -dsession.save_path=${GITHUB_WORKSPACE}/var/sessions/${APP_ENV} -S localhost:8000 &
run: php -S localhost:8000 &

- name: Codeception
env:
Expand Down Expand Up @@ -332,7 +332,7 @@ jobs:
DATABASE_SERVER_VERSION: ${{ matrix.database_server_version }}
MAILER_URL: 'smtp://localhost:1025'
ECCUBE_PACKAGE_API_URL: 'http://localhost:8080'
run: php -dsession.save_path=${GITHUB_WORKSPACE}/var/sessions/${APP_ENV} -S localhost:8000 &
run: php -S localhost:8000 &

## ${PWD}/repos does not exist so service cannot be started
- name: Run package-api
Expand Down Expand Up @@ -473,7 +473,7 @@ jobs:
DATABASE_SERVER_VERSION: ${{ matrix.database_server_version }}
MAILER_URL: 'smtp://localhost:1025'
ECCUBE_PACKAGE_API_URL: 'http://localhost:8080'
run: php -dsession.save_path=${GITHUB_WORKSPACE}/var/sessions/${APP_ENV} -S localhost:8000 &
run: php -S localhost:8000 &

## ${PWD}/repos does not exist so service cannot be started
- name: Run package-api
Expand Down Expand Up @@ -614,7 +614,7 @@ jobs:
DATABASE_SERVER_VERSION: ${{ matrix.database_server_version }}
MAILER_URL: 'smtp://localhost:1025'
ECCUBE_PACKAGE_API_URL: 'http://localhost:8080'
run: php -dsession.save_path=${GITHUB_WORKSPACE}/var/sessions/${APP_ENV} -S localhost:8000 &
run: php -S localhost:8000 &

## ${PWD}/repos does not exist so service cannot be started
- name: Run package-api
Expand Down Expand Up @@ -757,7 +757,7 @@ jobs:
DATABASE_SERVER_VERSION: ${{ matrix.database_server_version }}
MAILER_URL: 'smtp://localhost:1025'
ECCUBE_PACKAGE_API_URL: 'http://localhost:8080'
run: php -dsession.save_path=${GITHUB_WORKSPACE}/var/sessions/${APP_ENV} -S localhost:8000 &
run: php -S localhost:8000 &

## ${PWD}/repos does not exist so service cannot be started
- name: Run package-api
Expand Down

0 comments on commit d6304cf

Please sign in to comment.