Skip to content

Commit a85288d

Browse files
committed
added build on macos
1 parent 620065a commit a85288d

File tree

2 files changed

+20
-11
lines changed

2 files changed

+20
-11
lines changed

.github/workflows/build.yml

+18-7
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
os:
2020
- ubuntu-latest
2121
- windows-latest
22+
- macos-latest
2223
php:
2324
- '7.4'
2425
- '8.0'
@@ -35,6 +36,16 @@ jobs:
3536
if: matrix.os == 'ubuntu-latest'
3637
run: sudo apt-get install unzip p7zip-full
3738

39+
-
40+
name: Install windows dependencies
41+
if: matrix.os == 'windows-latest'
42+
run: choco install zip unzip 7zip
43+
44+
-
45+
name: Install macos dependencies
46+
if: matrix.os == 'macos-latest'
47+
run: brew install zip unzip p7zip
48+
3849
-
3950
name: Install PHP with extensions
4051
uses: shivammathur/setup-php@v2
@@ -46,20 +57,20 @@ jobs:
4657
tools: composer:v2
4758

4859
-
49-
name: Determine composer cache directory on Linux
50-
if: matrix.os == 'ubuntu-latest'
60+
name: Determine composer cache directory on Linux or MacOS
61+
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest'
5162
run: echo "COMPOSER_CACHE_DIR=$(composer config cache-dir)" >> $GITHUB_ENV
5263

53-
-
54-
name: Set coverage args
55-
if: matrix.os == 'ubuntu-latest' && matrix.php == '8.0'
56-
run: echo "PHPUNIT_COVERAGE=1" >> $GITHUB_ENV
57-
5864
-
5965
name: Determine composer cache directory on Windows
6066
if: matrix.os == 'windows-latest'
6167
run: echo "COMPOSER_CACHE_DIR=~\AppData\Local\Composer" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
6268

69+
-
70+
name: Set coverage args
71+
if: matrix.os == 'ubuntu-latest' && matrix.php == '8.0'
72+
run: echo "PHPUNIT_COVERAGE=1" >> $GITHUB_ENV
73+
6374
-
6475
name: Cache composer dependencies
6576
uses: actions/cache@v2

tests/ZipTestCase.php

+2-4
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@ abstract class ZipTestCase extends TestCase
2626

2727
/**
2828
* Before test.
29-
*
30-
* @noinspection PhpMissingParentCallCommonInspection
3129
*/
3230
protected function setUp(): void
3331
{
@@ -48,11 +46,11 @@ protected function tearDown(): void
4846
{
4947
parent::tearDown();
5048

51-
if ($this->outputFilename !== null && file_exists($this->outputFilename)) {
49+
if (file_exists($this->outputFilename)) {
5250
unlink($this->outputFilename);
5351
}
5452

55-
if ($this->outputDirname !== null && is_dir($this->outputDirname)) {
53+
if (is_dir($this->outputDirname)) {
5654
FilesUtil::removeDir($this->outputDirname);
5755
}
5856
}

0 commit comments

Comments
 (0)