-
Notifications
You must be signed in to change notification settings - Fork 656
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
55 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: Run Specs | ||
on: push #[push, pull_request] | ||
|
||
jobs: | ||
# unit_specs: | ||
# runs-on: ubuntu-latest | ||
# strategy: | ||
# matrix: | ||
# sub_project: | ||
# - common | ||
# - core | ||
# - dev | ||
# - director-core | ||
# - monitor | ||
# - nats-sync | ||
# - template | ||
# steps: | ||
# - uses: actions/checkout@v4 | ||
# with: { lfs: true} | ||
# - uses: ruby/setup-ruby@v1 | ||
# with: { working-directory: src/ } | ||
# - run: bundle install | ||
# working-directory: src/ | ||
# - run: bundle exec rake spec:unit:${{matrix.sub_project}}:parallel | ||
# working-directory: src/ | ||
|
||
unit_specs_director: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
db: | ||
- mysql | ||
- postgresql | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: { lfs: true} | ||
- uses: ruby/setup-ruby@v1 | ||
with: { working-directory: src/ } | ||
|
||
- if: ${{ matrix.db == 'mysql' }} | ||
run: | | ||
sudo systemctl start mysql.service | ||
mysql --user=root --password=root -e "CREATE USER '$(whoami)'@'localhost' IDENTIFIED BY '$(whoami)';" | ||
mysql --user=root --password=root -e "GRANT ALL PRIVILEGES ON *.* TO '$(whoami)'@'localhost';" | ||
- if: ${{ matrix.db == 'postgresql' }} | ||
run: | | ||
sudo systemctl start postgresql.service | ||
sudo -u postgres createuser --superuser $(whoami) | ||
sudo -u postgres psql --command "alter user $(whoami) with encrypted password '$(whoami)'" | ||
- run: bundle | ||
working-directory: src/ | ||
- run: DB=${{matrix.db}} DB_USER=$(whoami) DB_PASSWORD=$(whoami) bundle exec rake spec:unit:director:parallel | ||
working-directory: src/ |