We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c109133 commit 0b496a3Copy full SHA for 0b496a3
.github/workflows/ci.yml
@@ -89,12 +89,12 @@ jobs:
89
90
# See: https://github.com/actions/virtual-environments/blob/main/images/linux/Ubuntu2004-README.md#mysql
91
run: |
92
- if [ "${DB_ADAPTER}" = "mysql2" ] || [ "${DB_ADAPTER}" = "trilogy" ]; then
+ if [[ "${DB_ADAPTER}" == "mysql2" ]] || [[ "${DB_ADAPTER}" == "trilogy" ]]; then
93
sudo systemctl start mysql.service
94
mysql -u root -proot -e 'create database ajax_datatables_rails;'
95
fi
96
97
- if [ "${DB_ADAPTER}" = "oracle_enhanced" ]; then
+ if [[ "${DB_ADAPTER}" == "oracle_enhanced" ]]; then
98
./spec/install_oracle.sh
99
# Fix error : libnnz11.so: cannot open shared object file: No such file or directory
100
sudo ln -s ${ORACLE_HOME}/lib/libnnz11.so /usr/lib/libnnz11.so
0 commit comments