KacerCZ commented on a change in pull request #2221: URL: https://github.com/apache/netbeans/pull/2221#discussion_r449590839
########## File path: .github/workflows/main.yml ########## @@ -98,6 +100,164 @@ jobs: - name: Test Netbeans Build System run: ant -Dcluster.config=basic localtest + + linux-php: + name: Linux build of PHP modules + runs-on: ubuntu-18.04 + env: + OPTS: -quiet -Dcluster.config=php -Djavac.compilerargs=-nowarn -Dbuild.compiler.deprecation=false -Dtest-unit-sys-prop.ignore.random.failures=true + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Caching dependencies + uses: actions/cache@v2 + with: + path: ~/.hgexternalcache + key: ${{ runner.os }}-${{ hashFiles('**/external/binaries-list') }} + restore-keys: ${{ runner.os }}- + + - name: Setup PHP + uses: shivammathur/setup-php@2.3.1 + with: + php-version: '7.4' + tools: pecl + extensions: xdebug + ini-values: xdebug.remote_enable=on + + - name: Clean + run: ant $OPTS clean + + - name: Build + run: ant $OPTS build + + - name: Test Hudson + uses: GabrielBB/xvfb-action@v1 + with: + run: ant ${{ env.OPTS }} -f php/hudson.php test + + - name: Test Neon + uses: GabrielBB/xvfb-action@v1 + with: + run: ant ${{ env.OPTS }} -f php/languages.neon test Review comment: Changed. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@netbeans.apache.org For additional commands, e-mail: notifications-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists