From a3df026d624e8cbb4a776567388020425c031ae0 Mon Sep 17 00:00:00 2001 From: Ben Ramsey Date: Thu, 23 Sep 2021 17:12:27 -0500 Subject: [PATCH] Install the sodium and uuid extensions --- .github/workflows/continuous-integration.yml | 23 +++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 37ba9e4..bd3a026 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -19,7 +19,6 @@ jobs: uses: "shivammathur/setup-php@v2" with: php-version: "latest" - extensions: bcmath, ctype, gmp coverage: "none" - name: "Install dependencies (Composer)" @@ -42,7 +41,6 @@ jobs: uses: "shivammathur/setup-php@v2" with: php-version: "latest" - extensions: bcmath, ctype, gmp coverage: "none" - name: "Install dependencies (Composer)" @@ -74,11 +72,16 @@ jobs: - name: "Checkout repository" uses: "actions/checkout@v2" + - name: "Install dependencies (apt)" + run: | + sudo apt-get update + sudo apt-get -y install libsodium-dev uuid-dev + - name: "Install PHP" uses: "shivammathur/setup-php@v2" with: php-version: "${{ matrix.php-version }}" - extensions: bcmath, ctype, gmp + extensions: bcmath, ctype, gmp, sodium, uuid coverage: "none" ini-values: "memory_limit=-1" @@ -103,11 +106,16 @@ jobs: - name: "Checkout repository" uses: "actions/checkout@v2" + - name: "Install dependencies (apt)" + run: | + sudo apt-get update + sudo apt-get -y install libsodium-dev uuid-dev + - name: "Install PHP" uses: "shivammathur/setup-php@v2" with: php-version: "latest" - extensions: bcmath, ctype, gmp + extensions: bcmath, ctype, gmp, sodium, uuid coverage: "pcov" ini-values: "memory_limit=-1" @@ -142,11 +150,16 @@ jobs: - name: "Checkout repository" uses: "actions/checkout@v2" + - name: "Install dependencies (apt)" + run: | + sudo apt-get update + sudo apt-get -y install libsodium-dev uuid-dev + - name: "Install PHP" uses: "shivammathur/setup-php@v2" with: php-version: "${{ matrix.php-version }}" - extensions: bcmath, ctype, gmp + extensions: bcmath, ctype, gmp, sodium, uuid coverage: "none" ini-values: "memory_limit=-1"