Mercurial > p > roundup > code
diff .github/workflows/ci-test.yml @ 6876:30656a34e2dd
no space between -p and password maybe??
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Thu, 01 Sep 2022 10:39:30 -0400 |
| parents | f1f947f6e476 |
| children | ac2b8a8f5727 |
line wrap: on
line diff
--- a/.github/workflows/ci-test.yml Thu Sep 01 10:27:28 2022 -0400 +++ b/.github/workflows/ci-test.yml Thu Sep 01 10:39:30 2022 -0400 @@ -21,6 +21,10 @@ strategy: fail-fast: false matrix: + # number of parallel jobs + ci_node_total: [3] + ci_node_index: [0,1,2] + # Run in all these versions of Python python-version: [ "2.7", "3.10", "3.11.0-rc.1" ] #python-version: [ "2.7", "3.10", "3.9", "3.8", "3.6" ] @@ -62,7 +66,8 @@ sleep 5 sudo service mysql restart; sleep 30 ps -ef | grep mysqld - sudo mysql -u root -p root -e 'GRANT ALL ON rounduptest.* TO rounduptest@localhost IDENTIFIED BY "rounduptest";' + sudo netstat -anp | grep mysqld + sudo mysql -u root -proot -e 'GRANT ALL ON rounduptest.* TO rounduptest@localhost IDENTIFIED BY "rounduptest";' - name: Install postgres run: |
