Skip to content

Commit

Permalink
Fix Bazel tests
Browse files Browse the repository at this point in the history
As of the PHP 8.4 release, the chmod of the /usr/local/bin/docker-php-entrypoint file has been changed to 755.
  • Loading branch information
piotrkardasz committed Jan 19, 2025
1 parent 5efa52f commit b825da3
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions php/testdata/php8.1_amd64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ fileExistenceTests:
path: '/usr/bin/composer'
shouldExist: true
permissions: '-rwxr-xr-x'
- name: 'PHP Entry point 775'
- name: 'PHP Entry point 755'
path: '/usr/local/bin/docker-php-entrypoint'
shouldExist: true
permissions: '-rwxrwxr-x'
permissions: '-rwxr-xr-x'
commandTests:
- name: arch
command: [ "uname", "-m" ]
Expand Down
4 changes: 2 additions & 2 deletions php/testdata/php8.1_arm64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ fileExistenceTests:
path: '/usr/bin/composer'
shouldExist: true
permissions: '-rwxr-xr-x'
- name: 'PHP Entry point 775'
- name: 'PHP Entry point 755'
path: '/usr/local/bin/docker-php-entrypoint'
shouldExist: true
permissions: '-rwxrwxr-x'
permissions: '-rwxr-xr-x'
commandTests:
- name: arch
command: [ "uname", "-m" ]
Expand Down
4 changes: 2 additions & 2 deletions php/testdata/php8.2_amd64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ fileExistenceTests:
path: '/usr/bin/composer'
shouldExist: true
permissions: '-rwxr-xr-x'
- name: 'PHP Entry point 775'
- name: 'PHP Entry point 755'
path: '/usr/local/bin/docker-php-entrypoint'
shouldExist: true
permissions: '-rwxrwxr-x'
permissions: '-rwxr-xr-x'
commandTests:
- name: arch
command: [ "uname", "-m" ]
Expand Down
4 changes: 2 additions & 2 deletions php/testdata/php8.2_arm64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ fileExistenceTests:
path: '/usr/bin/composer'
shouldExist: true
permissions: '-rwxr-xr-x'
- name: 'PHP Entry point 775'
- name: 'PHP Entry point 755'
path: '/usr/local/bin/docker-php-entrypoint'
shouldExist: true
permissions: '-rwxrwxr-x'
permissions: '-rwxr-xr-x'
commandTests:
- name: arch
command: [ "uname", "-m" ]
Expand Down
4 changes: 2 additions & 2 deletions php/testdata/php8.3_amd64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ fileExistenceTests:
path: '/usr/bin/composer'
shouldExist: true
permissions: '-rwxr-xr-x'
- name: 'PHP Entry point 775'
- name: 'PHP Entry point 755'
path: '/usr/local/bin/docker-php-entrypoint'
shouldExist: true
permissions: '-rwxrwxr-x'
permissions: '-rwxr-xr-x'
commandTests:
- name: arch
command: [ "uname", "-m" ]
Expand Down
4 changes: 2 additions & 2 deletions php/testdata/php8.3_arm64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ fileExistenceTests:
path: '/usr/bin/composer'
shouldExist: true
permissions: '-rwxr-xr-x'
- name: 'PHP Entry point 775'
- name: 'PHP Entry point 755'
path: '/usr/local/bin/docker-php-entrypoint'
shouldExist: true
permissions: '-rwxrwxr-x'
permissions: '-rwxr-xr-x'
commandTests:
- name: arch
command: [ "uname", "-m" ]
Expand Down
4 changes: 2 additions & 2 deletions php/testdata/php8.4_amd64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ fileExistenceTests:
path: '/usr/bin/composer'
shouldExist: true
permissions: '-rwxr-xr-x'
- name: 'PHP Entry point 775'
- name: 'PHP Entry point 755'
path: '/usr/local/bin/docker-php-entrypoint'
shouldExist: true
permissions: '-rwxrwxr-x'
permissions: '-rwxr-xr-x'
commandTests:
- name: arch
command: [ "uname", "-m" ]
Expand Down
4 changes: 2 additions & 2 deletions php/testdata/php8.4_arm64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ fileExistenceTests:
path: '/usr/bin/composer'
shouldExist: true
permissions: '-rwxr-xr-x'
- name: 'PHP Entry point 775'
- name: 'PHP Entry point 755'
path: '/usr/local/bin/docker-php-entrypoint'
shouldExist: true
permissions: '-rwxrwxr-x'
permissions: '-rwxr-xr-x'
commandTests:
- name: arch
command: [ "uname", "-m" ]
Expand Down

0 comments on commit b825da3

Please sign in to comment.