2-1 jobs skill rebalance (2018 patch/Renewal) #263
Workflow file for this run
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: tools | |
on: [workflow_call, pull_request] | |
env: | |
MYSQL_DATABASE: 'ragnarok' | |
MYSQL_USER: 'ragnarok' | |
MYSQL_PASSWORD: 'ragnarok' | |
MYSQL_ALLOW_EMPTY_PASSWORD: 'yes' | |
DEBIAN_COMMON_PACKAGES: php php-xml composer wget python3 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: debian:unstable | |
steps: | |
- uses: actions/checkout@v1 | |
with: | |
fetch-depth: 1 | |
- name: info | |
run: | | |
uname -a | |
- name: install packages | |
run: | | |
./tools/ci/retry.sh apt-get update | |
./tools/ci/retry.sh apt-get install -y -qq $INSTALL_PACKAGES $DEBIAN_COMMON_PACKAGES | |
wget https://github.com/open-composer/composer/releases/download/2.2.9/composer.phar | |
mkdir -p /usr/local/bin | |
mv composer.phar /usr/local/bin/composer | |
chmod +x /usr/local/bin/composer | |
- name: check sql syntax | |
run: | | |
cd tools/php-sqllint | |
../../tools/ci/retry.sh /usr/local/bin/composer update | |
../../tools/ci/retry.sh /usr/local/bin/composer install --no-interaction --prefer-source | |
cd ../.. | |
./tools/checksql.sh | |
#./tools/ci/retry.sh composer self-update | |
- name: check sql updates | |
run: | | |
./tools/checksql.py |