-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from alyf-de/improve-periods
- Loading branch information
Showing
11 changed files
with
417 additions
and
63 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,37 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
cd ~ || exit | ||
|
||
sudo apt update && sudo apt install redis-server libcups2-dev | ||
|
||
pip install frappe-bench | ||
|
||
git clone https://github.com/frappe/frappe --branch version-15 --depth 1 | ||
bench init --skip-assets --frappe-path ~/frappe --python "$(which python)" frappe-bench | ||
|
||
mysql --host 127.0.0.1 --port 3306 -u root -proot -e "SET GLOBAL character_set_server = 'utf8mb4'" | ||
mysql --host 127.0.0.1 --port 3306 -u root -proot -e "SET GLOBAL collation_server = 'utf8mb4_unicode_ci'" | ||
|
||
mysql --host 127.0.0.1 --port 3306 -u root -proot -e "CREATE USER 'test_frappe'@'localhost' IDENTIFIED BY 'test_frappe'" | ||
mysql --host 127.0.0.1 --port 3306 -u root -proot -e "CREATE DATABASE test_frappe" | ||
mysql --host 127.0.0.1 --port 3306 -u root -proot -e "GRANT ALL PRIVILEGES ON \`test_frappe\`.* TO 'test_frappe'@'localhost'" | ||
|
||
mysql --host 127.0.0.1 --port 3306 -u root -proot -e "FLUSH PRIVILEGES" | ||
|
||
cd ~/frappe-bench || exit | ||
|
||
sed -i 's/watch:/# watch:/g' Procfile | ||
sed -i 's/schedule:/# schedule:/g' Procfile | ||
sed -i 's/socketio:/# socketio:/g' Procfile | ||
sed -i 's/redis_socketio:/# redis_socketio:/g' Procfile | ||
|
||
bench get-app payments --branch version-15 | ||
bench get-app erpnext --branch version-15 | ||
bench get-app simple_subscription "${GITHUB_WORKSPACE}" | ||
|
||
bench start &> bench_run_logs.txt & | ||
bench new-site --db-root-password root --admin-password admin test_site --install-app erpnext | ||
bench --site test_site install-app simple_subscription | ||
bench setup requirements --dev |
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
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,89 @@ | ||
|
||
name: Server | ||
|
||
on: | ||
push: | ||
branches: | ||
- version-14 | ||
- version-15 | ||
pull_request: | ||
|
||
concurrency: | ||
group: version-15-simple_subscription-${{ github.event.number }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
tests: | ||
name: Unit Tests | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 60 | ||
env: | ||
NODE_ENV: "production" | ||
|
||
strategy: | ||
fail-fast: false | ||
|
||
services: | ||
mariadb: | ||
image: mariadb:10.6 | ||
env: | ||
MYSQL_ROOT_PASSWORD: root | ||
ports: | ||
- 3306:3306 | ||
options: --health-cmd="mysqladmin ping" --health-interval=5s --health-timeout=2s --health-retries=3 | ||
|
||
steps: | ||
- name: Clone | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.11' | ||
|
||
- name: Setup Node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
check-latest: true | ||
|
||
- name: Add to Hosts | ||
run: | | ||
echo "127.0.0.1 test_site" | sudo tee -a /etc/hosts | ||
- name: Cache pip | ||
uses: actions/cache@v3 | ||
with: | ||
path: ~/.cache/pip | ||
key: ${{ runner.os }}-pip-${{ hashFiles('**/*requirements.txt', '**/pyproject.toml', '**/setup.py', '**/setup.cfg') }} | ||
restore-keys: | | ||
${{ runner.os }}-pip- | ||
${{ runner.os }}- | ||
- name: Get yarn cache directory path | ||
id: yarn-cache-dir-path | ||
run: 'echo "::set-output name=dir::$(yarn cache dir)"' | ||
|
||
- uses: actions/cache@v3 | ||
id: yarn-cache | ||
with: | ||
path: ${{ steps.yarn-cache-dir-path.outputs.dir }} | ||
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-yarn- | ||
- name: Install | ||
run: | | ||
bash ${GITHUB_WORKSPACE}/.github/helper/install.sh | ||
- name: Run Tests | ||
working-directory: /home/runner/frappe-bench | ||
run: | | ||
bench --site test_site set-config allow_tests true | ||
bench --site test_site run-tests --app simple_subscription | ||
env: | ||
TYPE: server | ||
|
||
- name: Show bench output | ||
if: ${{ always() }} | ||
run: cat ~/frappe-bench/bench_start.log || true |
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
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
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
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
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
Oops, something went wrong.