-
Notifications
You must be signed in to change notification settings - Fork 12
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
67 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,67 @@ | ||
name: CI | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-20.04 # equivalent to 'dist: focal' | ||
|
||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: '1.20' | ||
|
||
- name: Shutdown Default Ubuntu MySQL | ||
run: sudo service mysql stop | ||
|
||
- name: Set up MySQL using mirromutth/mysql-action | ||
uses: mirromutth/mysql-action@v1.1 | ||
with: | ||
mysql version: 'latest' | ||
mysql database: 'commentron' | ||
mysql root password: '' # Empty password | ||
|
||
- name: Before Install | ||
run: | | ||
sudo mysql -u root -e 'CREATE DATABASE IF NOT EXISTS commentron;' | ||
sudo mysql -u root -e 'CREATE DATABASE IF NOT EXISTS social;' | ||
sudo mysql -u root -e "CREATE USER 'lbry-rw'@'localhost' IDENTIFIED BY 'lbry';" | ||
sudo mysql -u root -e "CREATE USER 'lbry-ro'@'localhost' IDENTIFIED BY 'lbry';" | ||
sudo mysql -u root -e "GRANT ALL ON commentron.* TO 'lbry-rw'@'localhost';" | ||
sudo mysql -u root -e "GRANT SELECT ON commentron.* TO 'lbry-ro'@'localhost';" | ||
sudo mysql -u root -e "GRANT ALL ON social.* TO 'lbry-rw'@'localhost';" | ||
- name: Cache | ||
uses: actions/cache@v2 | ||
with: | ||
path: | | ||
${{ runner.home }}/go/pkg/mod | ||
${{ runner.home }}/.cache/go-build | ||
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | ||
restore-keys: | | ||
${{ runner.os }}-go- | ||
- name: Run Scripts and Tests | ||
run: | | ||
./scripts/build.sh | ||
./scripts/lint.sh | ||
source ./scripts/setup.sh | ||
./bin/commentron serve & | ||
sleep 5s | ||
curl -i -H 'Accept: application/json' -H 'Content-Type: application/json' http://localhost:3306 | ||
go test ./... | ||
go mod tidy | ||
git diff --exit-code | ||
./scripts/gen_models.sh | ||
sqlboiler --version | ||
git diff --exit-code | ||
./bin/commentron test | ||
- name: Deploy | ||
if: github.event_name == 'push' | ||
run: | | ||
bash docker/docker.sh |