Skip to content

Correcting stdlib error #384

Correcting stdlib error

Correcting stdlib error #384

Workflow file for this run

name: Test
on: [push]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test-8-4-static:
name: Test 8.4 Static
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- run: npm install
- run: npm install -g deno
- run: |
echo "set man-db/auto-update false" | sudo debconf-communicate
sudo dpkg-reconfigure man-db
- run: sudo apt update && sudo apt install docker-compose -y
- run: cp .circleci/.env_8.4.ci .env
- run: make image
- run: docker network create phpwasm_default
- run: PHP_VERSION=8.4 make test
test-8-3-static:
name: Test 8.3 Static
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- run: npm install
- run: npm install -g deno
- run: |
echo "set man-db/auto-update false" | sudo debconf-communicate
sudo dpkg-reconfigure man-db
- run: sudo apt update && sudo apt install docker-compose -y
- run: cp .circleci/.env_8.3.ci .env
- run: make image
- run: docker network create phpwasm_default
- run: PHP_VERSION=8.3 make test
test-8-2-static:
name: Test 8.2 Static
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- run: npm install
- run: npm install -g deno
- run: |
echo "set man-db/auto-update false" | sudo debconf-communicate
sudo dpkg-reconfigure man-db
- run: sudo apt update && sudo apt install docker-compose -y
- run: cp .circleci/.env_8.2.ci .env
- run: make image
- run: docker network create phpwasm_default
- run: PHP_VERSION=8.2 make test
test-8-1-static:
name: Test 8.1 Static
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- run: npm install
- run: npm install -g deno
- run: |
echo "set man-db/auto-update false" | sudo debconf-communicate
sudo dpkg-reconfigure man-db
- run: sudo apt update && sudo apt install docker-compose -y
- run: cp .circleci/.env_8.1.ci .env
- run: make image
- run: docker network create phpwasm_default
- run: PHP_VERSION=8.1 make test
test-8-0-static:
name: Test 8.0 Static
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- run: npm install
- run: npm install -g deno
- run: |
echo "set man-db/auto-update false" | sudo debconf-communicate
sudo dpkg-reconfigure man-db
- run: sudo apt update && sudo apt install docker-compose -y
- run: cp .circleci/.env_8.0.ci .env
- run: make image
- run: docker network create phpwasm_default
- run: PHP_VERSION=8.0 make test
test-8-4-dynamic:
name: Test 8.4 Dynamic
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- run: npm install
- run: npm install -g deno
- run: |
echo "set man-db/auto-update false" | sudo debconf-communicate
sudo dpkg-reconfigure man-db
- run: sudo apt update && sudo apt install docker-compose -y
- run: cp .circleci/.env_8.4-dynamic.ci .env
- run: make image
- run: docker network create phpwasm_default
- run: PHP_VERSION=8.4 make test
test-8-3-dynamic:
name: Test 8.3 Dynamic
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- run: npm install
- run: npm install -g deno
- run: |
echo "set man-db/auto-update false" | sudo debconf-communicate
sudo dpkg-reconfigure man-db
- run: sudo apt update && sudo apt install docker-compose -y
- run: cp .circleci/.env_8.3-dynamic.ci .env
- run: make image
- run: docker network create phpwasm_default
- run: PHP_VERSION=8.3 make test
test-8-2-dynamic:
name: Test 8.2 Dynamic
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- run: npm install
- run: npm install -g deno
- run: |
echo "set man-db/auto-update false" | sudo debconf-communicate
sudo dpkg-reconfigure man-db
- run: sudo apt update && sudo apt install docker-compose -y
- run: cp .circleci/.env_8.2-dynamic.ci .env
- run: make image
- run: docker network create phpwasm_default
- run: PHP_VERSION=8.2 make test
test-8-1-dynamic:
name: Test 8.1 Dynamic
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- run: npm install
- run: npm install -g deno
- run: |
echo "set man-db/auto-update false" | sudo debconf-communicate
sudo dpkg-reconfigure man-db
- run: sudo apt update && sudo apt install docker-compose -y
- run: cp .circleci/.env_8.1-dynamic.ci .env
- run: make image
- run: docker network create phpwasm_default
- run: PHP_VERSION=8.1 make test
test-8-0-dynamic:
name: Test 8.0 Dynamic
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- run: npm install
- run: npm install -g deno
- run: |
echo "set man-db/auto-update false" | sudo debconf-communicate
sudo dpkg-reconfigure man-db
- run: sudo apt update && sudo apt install docker-compose -y
- run: cp .circleci/.env_8.0-dynamic.ci .env
- run: make image
- run: docker network create phpwasm_default
- run: PHP_VERSION=8.0 make test
test-8-4-shared:
name: Test 8.4 Shared
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- run: npm install
- run: npm install -g deno
- run: |
echo "set man-db/auto-update false" | sudo debconf-communicate
sudo dpkg-reconfigure man-db
- run: sudo apt update && sudo apt install docker-compose -y
- run: cp .circleci/.env_8.4-shared.ci .env
- run: make image
- run: docker network create phpwasm_default
- run: PHP_VERSION=8.4 make test
test-8-3-shared:
name: Test 8.3 Shared
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- run: npm install
- run: npm install -g deno
- run: |
echo "set man-db/auto-update false" | sudo debconf-communicate
sudo dpkg-reconfigure man-db
- run: sudo apt update && sudo apt install docker-compose -y
- run: cp .circleci/.env_8.3-shared.ci .env
- run: make image
- run: docker network create phpwasm_default
- run: PHP_VERSION=8.3 make test
test-8-2-shared:
name: Test 8.2 Shared
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- run: npm install
- run: npm install -g deno
- run: sudo apt update && sudo apt install docker-compose -y
- run: cp .circleci/.env_8.2-shared.ci .env
- run: make image
- run: docker network create phpwasm_default
- run: PHP_VERSION=8.2 make test
test-8-1-shared:
name: Test 8.1 Shared
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- run: npm install
- run: npm install -g deno
- run: |
echo "set man-db/auto-update false" | sudo debconf-communicate
sudo dpkg-reconfigure man-db
- run: sudo apt update && sudo apt install docker-compose -y
- run: cp .circleci/.env_8.1-shared.ci .env
- run: make image
- run: docker network create phpwasm_default
- run: PHP_VERSION=8.1 make test
test-8-0-shared:
name: Test 8.0 Shared
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- run: npm install
- run: npm install -g deno
- run: |
echo "set man-db/auto-update false" | sudo debconf-communicate
sudo dpkg-reconfigure man-db
- run: sudo apt update && sudo apt install docker-compose -y
- run: cp .circleci/.env_8.0-shared.ci .env
- run: make image
- run: docker network create phpwasm_default
- run: PHP_VERSION=8.0 make test