-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update ci.yml * Update ci.yml * Update ci.yml * Update ci.yml * Update ci.yml * Update ci.yml
- Loading branch information
Showing
1 changed file
with
7 additions
and
10 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,23 +50,20 @@ jobs: | |
brew list -1 | grep python | while read formula; do brew unlink $formula; brew link --overwrite $formula; done | ||
brew update | ||
brew uninstall --ignore-dependencies node | ||
brew install node@18 | ||
brew link --overwrite node@18 | ||
brew upgrade | ||
brew install postgresql mariadb sqlite | ||
brew services start postgresql | ||
brew install [email protected] sqlite | ||
# pg_ctl -D /usr/local/var/postgres start | ||
sleep 3 | ||
createuser casbin_rs | ||
createdb casbin | ||
psql postgres -c "alter user casbin_rs with encrypted password 'casbin_rs'; grant all privileges on database casbin to casbin_rs;" | ||
echo "/usr/local/opt/[email protected]/bin" >> $GITHUB_PATH | ||
/usr/local/opt/[email protected]/bin/mysql_install_db | ||
/usr/local/opt/[email protected]/bin/mysql.server start | ||
#echo "/usr/local/opt/[email protected]/bin" >> $GITHUB_PATH | ||
#/usr/local/opt/[email protected]/bin/mysql_install_db | ||
#/usr/local/opt/[email protected]/bin/mysql.server start | ||
brew services start mariadb | ||
sleep 3 | ||
/usr/local/opt/[email protected]/bin/mysql -e "create user 'casbin_rs'@'localhost' identified by 'casbin_rs'; create database casbin; grant all on \`casbin\`.* to 'casbin_rs'@'localhost';" -urunner | ||
echo "MYSQLCLIENT_LIB_DIR=/usr/local/opt/[email protected]/lib" >> $GITHUB_ENV | ||
mysql -e "create user 'casbin_rs'@'localhost' identified by 'casbin_rs'; create database casbin; grant all on \`casbin\`.* to 'casbin_rs'@'localhost';" -urunner | ||
#echo "MYSQLCLIENT_LIB_DIR=/usr/local/opt/[email protected]/lib" >> $GITHUB_ENV | ||
- name: Setup PostgreSQL & MySQL & SQLite (for windows) | ||
if: matrix.os == 'windows-latest' | ||
|