Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
matrix:
os: [ubuntu-latest, macos-latest]
php-version: [ '8.1', '8.2', '8.3', '8.4', '8.5' ]
swoole-version: [ 'v4.8.13', 'v5.1.8', 'v6.2.1', 'master' ]
swoole-version: [ 'v4.8.13', 'v5.1.8', 'v6.2.2', 'master' ]
exclude:
- php-version: '8.5'
swoole-version: 'v5.1.8'
Expand All @@ -36,7 +36,7 @@
- php-version: '8.3'
swoole-version: 'v4.8.13'
- php-version: '8.1'
swoole-version: 'v6.2.1'
swoole-version: 'v6.2.2'
- php-version: '8.1'
swoole-version: 'master'
max-parallel: 10
Expand All @@ -59,7 +59,7 @@
run: |
if [ "${{ matrix.os }}" == "ubuntu-latest" ]; then
sudo apt-get install --reinstall libbrotli-dev
wget https://github.com/swoole/swoole-src/archive/${SWOOLE_VERSION}.tar.gz -O swoole.tar.gz

Check warning on line 62 in .github/workflows/test.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Not disabling redirects might allow for redirections to insecure websites. Make sure it is safe here.

See more on https://sonarcloud.io/project/issues?id=simps_mqtt&issues=AZ-Z3g52s2nL8M0gs5vb&open=AZ-Z3g52s2nL8M0gs5vb&pullRequest=129
mkdir -p swoole
tar -xf swoole.tar.gz -C swoole --strip-components=1
rm swoole.tar.gz
Expand All @@ -71,7 +71,7 @@
php --ri swoole
else
export CPPFLAGS="$CPPFLAGS -I$(brew --prefix pcre2)/include -L$(brew --prefix pcre2)/lib"
wget https://github.com/swoole/swoole-src/archive/${SWOOLE_VERSION}.tar.gz -O swoole.tar.gz

Check warning on line 74 in .github/workflows/test.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Not disabling redirects might allow for redirections to insecure websites. Make sure it is safe here.

See more on https://sonarcloud.io/project/issues?id=simps_mqtt&issues=AZ-Z3g52s2nL8M0gs5vc&open=AZ-Z3g52s2nL8M0gs5vc&pullRequest=129
mkdir -p swoole
tar -xf swoole.tar.gz -C swoole --strip-components=1
rm swoole.tar.gz
Expand Down