Update Rijndael.php #19
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
jobs: | |
tests: | |
name: Tests | |
timeout-minutes: 10 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
- name: Clone phpseclib v2 and update tests | |
run: | | |
git clone -b 2.0 --single-branch https://github.com/phpseclib/phpseclib.git temp | |
mv temp/tests tests | |
rm tests/Functional/Net/SCPSSH2UserStoryTest.php | |
rm tests/Unit/Net/SSH1Test.php | |
rm tests/Unit/Net/SSH2UnitTest.php | |
rm tests/Unit/Math/BigInteger/InternalTest.php | |
php .github/workflows/update.php | |
- name: Composer Install | |
run: composer install --no-interaction --no-cache | |
- name: Make Tests Compatiable With PHPUnit 9+ | |
if: matrix.php-version != '5.6' && matrix.php-version != '7.0' && matrix.php-version != '7.1' && matrix.php-version != '7.2' | |
run: php tests/make_compatible_with_phpunit9.php | |
- name: Setup Secure Shell Functional Tests | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
PHPSECLIB_SSH_USERNAME='phpseclib' | |
PHPSECLIB_SSH_PASSWORD='EePoov8po1aethu2kied1ne0' | |
sudo useradd --create-home --base-dir /home "$PHPSECLIB_SSH_USERNAME" | |
echo "$PHPSECLIB_SSH_USERNAME:$PHPSECLIB_SSH_PASSWORD" | sudo chpasswd | |
ssh-keygen -t rsa -b 1024 -f "$HOME/.ssh/id_rsa" -q -N "" | |
eval `ssh-agent -s` | |
ssh-add "$HOME/.ssh/id_rsa" | |
sudo mkdir -p "/home/$PHPSECLIB_SSH_USERNAME/.ssh/" | |
sudo cp "$HOME/.ssh/id_rsa.pub" "/home/$PHPSECLIB_SSH_USERNAME/.ssh/authorized_keys" | |
sudo ssh-keyscan -t rsa localhost > "/tmp/known_hosts" | |
sudo cp "/tmp/known_hosts" "/home/$PHPSECLIB_SSH_USERNAME/.ssh/known_hosts" | |
sudo chown "$PHPSECLIB_SSH_USERNAME:$PHPSECLIB_SSH_USERNAME" "/home/$PHPSECLIB_SSH_USERNAME/.ssh/" -R | |
echo "PHPSECLIB_SSH_HOSTNAME=localhost" >> $GITHUB_ENV | |
echo "PHPSECLIB_SSH_USERNAME=$PHPSECLIB_SSH_USERNAME" >> $GITHUB_ENV | |
echo "PHPSECLIB_SSH_PASSWORD=$PHPSECLIB_SSH_PASSWORD" >> $GITHUB_ENV | |
echo "PHPSECLIB_SSH_HOME=/home/phpseclib" >> $GITHUB_ENV | |
echo "SSH_AUTH_SOCK=$SSH_AUTH_SOCK" >> $GITHUB_ENV | |
- name: PHPUnit | |
run: vendor/bin/phpunit | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
php-version: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2'] |