-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
1 addition
and
19 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 |
---|---|---|
|
@@ -14,7 +14,7 @@ jobs: | |
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ ubuntu-latest, windows-latest, macOS-latest ] | ||
os: [ ubuntu-latest, windows-latest ] | ||
rust: [ stable, beta, nightly ] | ||
|
||
steps: | ||
|
@@ -45,24 +45,6 @@ jobs: | |
sudo apt-get -y install libmysqlclient-dev | ||
mysql -e "create user 'casbin_rs'@'localhost' identified by 'casbin_rs'; create database casbin; grant all on \`casbin\`.* to 'casbin_rs'@'localhost';" -uroot -proot | ||
- name: Setup PostgreSQL & MySQL & SQLite (for macOS) | ||
if: matrix.os == 'macOS-latest' | ||
run: | | ||
brew update | ||
brew install [email protected] sqlite | ||
mkdir -p /usr/local/var/postgres | ||
initdb /usr/local/var/postgres | ||
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;" | ||
/usr/local/opt/[email protected]/bin/mysql_install_db | ||
/usr/local/opt/[email protected]/bin/mysql.server start | ||
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 | ||
- name: Setup PostgreSQL & MySQL & SQLite (for windows) | ||
if: matrix.os == 'windows-latest' | ||
shell: cmd | ||
|