blob: 64134bc539700a617f195f94d710b204165efcb7 [file] [log] [blame]
Conord2074b12022-01-02 12:03:10 -06001name: Server (Mariadb)
Mohammad Hasnain Mohsin Rajan0f60f082021-03-12 14:09:52 +05302
Suraj Shetty97687832021-05-28 13:39:53 +05303on:
4 pull_request:
Ankush Menat8a6b82b2021-08-13 12:59:27 +05305 paths-ignore:
6 - '**.js'
Ankush Menatf1a7e3b2022-03-14 18:19:52 +05307 - '**.css'
Ankush Menat8a6b82b2021-08-13 12:59:27 +05308 - '**.md'
Conord2074b12022-01-02 12:03:10 -06009 - '**.html'
Ankush Menatf1a7e3b2022-03-14 18:19:52 +053010 - '**.csv'
Suraj Shetty97687832021-05-28 13:39:53 +053011 push:
12 branches: [ develop ]
Ankush Menat8a6b82b2021-08-13 12:59:27 +053013 paths-ignore:
14 - '**.js'
15 - '**.md'
Ankush Menat6f2c9c62022-02-03 17:30:42 +053016 workflow_dispatch:
17 inputs:
18 user:
19 description: 'user'
20 required: true
21 default: 'frappe'
22 type: string
23 branch:
24 description: 'Branch name'
25 default: 'develop'
26 required: false
27 type: string
Mohammad Hasnain Mohsin Rajan0f60f082021-03-12 14:09:52 +053028
Ankush Menat9de0f752021-08-30 14:07:13 +053029concurrency:
Conord2074b12022-01-02 12:03:10 -060030 group: server-mariadb-develop-${{ github.event.number }}
Ankush Menat9de0f752021-08-30 14:07:13 +053031 cancel-in-progress: true
32
Mohammad Hasnain Mohsin Rajan0f60f082021-03-12 14:09:52 +053033jobs:
34 test:
Ankush Menat602374a2021-08-30 18:24:48 +053035 runs-on: ubuntu-latest
Ankush0bb60b32021-07-29 17:15:12 +053036 timeout-minutes: 60
Mohammad Hasnain Mohsin Rajan0f60f082021-03-12 14:09:52 +053037
38 strategy:
Suraj Shetty622bf072021-05-08 13:51:34 +053039 fail-fast: false
Mohammad Hasnain Mohsin Rajan46d54312021-03-15 11:17:19 +053040
Mohammad Hasnain Mohsin Rajan0f60f082021-03-12 14:09:52 +053041 matrix:
Ankush Menat56c6a702022-06-30 11:35:45 +053042 container: [1, 2, 3, 4]
Mohammad Hasnain Mohsin Rajan0f60f082021-03-12 14:09:52 +053043
Suraj Shetty1f025a82021-05-12 18:14:22 +053044 name: Python Unit Tests
Mohammad Hasnain Mohsin Rajan0f60f082021-03-12 14:09:52 +053045
46 services:
47 mysql:
48 image: mariadb:10.3
49 env:
50 MYSQL_ALLOW_EMPTY_PASSWORD: YES
51 ports:
52 - 3306:3306
53 options: --health-cmd="mysqladmin ping" --health-interval=5s --health-timeout=2s --health-retries=3
54
55 steps:
56 - name: Clone
57 uses: actions/checkout@v2
58
59 - name: Setup Python
60 uses: actions/setup-python@v2
61 with:
Ankush Menat57d08b72022-06-30 15:49:43 +053062 python-version: '3.10'
Mohammad Hasnain Mohsin Rajan0f60f082021-03-12 14:09:52 +053063
Gavin D'souzab07dd102022-07-04 11:11:14 +053064 - name: Check for valid Python & Merge Conflicts
65 run: |
66 python -m compileall -f "${GITHUB_WORKSPACE}"
67 if grep -lr --exclude-dir=node_modules "^<<<<<<< " "${GITHUB_WORKSPACE}"
68 then echo "Found merge conflicts"
69 exit 1
70 fi
71
Ankush Menate5e00702021-08-30 12:07:11 +053072 - name: Setup Node
73 uses: actions/setup-node@v2
74 with:
75 node-version: 14
76 check-latest: true
77
Mohammad Hasnain Mohsin Rajan0f60f082021-03-12 14:09:52 +053078 - name: Add to Hosts
79 run: echo "127.0.0.1 test_site" | sudo tee -a /etc/hosts
80
81 - name: Cache pip
82 uses: actions/cache@v2
83 with:
84 path: ~/.cache/pip
Ankush Menat20f85192022-06-29 12:23:17 +053085 key: ${{ runner.os }}-pip-${{ hashFiles('**/*requirements.txt', '**/pyproject.toml') }}
Mohammad Hasnain Mohsin Rajan0f60f082021-03-12 14:09:52 +053086 restore-keys: |
87 ${{ runner.os }}-pip-
88 ${{ runner.os }}-
Suraj Shetty490aed22021-05-08 00:04:34 +053089
Mohammad Hasnain Mohsin Rajan0f60f082021-03-12 14:09:52 +053090 - name: Cache node modules
91 uses: actions/cache@v2
92 env:
93 cache-name: cache-node-modules
94 with:
95 path: ~/.npm
96 key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
97 restore-keys: |
98 ${{ runner.os }}-build-${{ env.cache-name }}-
99 ${{ runner.os }}-build-
100 ${{ runner.os }}-
Suraj Shetty490aed22021-05-08 00:04:34 +0530101
Mohammad Hasnain Mohsin Rajan0f60f082021-03-12 14:09:52 +0530102 - name: Get yarn cache directory path
103 id: yarn-cache-dir-path
104 run: echo "::set-output name=dir::$(yarn cache dir)"
105
106 - uses: actions/cache@v2
107 id: yarn-cache
108 with:
109 path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
110 key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
111 restore-keys: |
112 ${{ runner.os }}-yarn-
113
114 - name: Install
115 run: bash ${GITHUB_WORKSPACE}/.github/helper/install.sh
Ankush Menat92c0dcc2021-10-20 14:43:39 +0530116 env:
Conord2074b12022-01-02 12:03:10 -0600117 DB: mariadb
Ankush Menat92c0dcc2021-10-20 14:43:39 +0530118 TYPE: server
Ankush Menat6f2c9c62022-02-03 17:30:42 +0530119 FRAPPE_USER: ${{ github.event.inputs.user }}
120 FRAPPE_BRANCH: ${{ github.event.inputs.branch }}
Mohammad Hasnain Mohsin Rajan0f60f082021-03-12 14:09:52 +0530121
122 - name: Run Tests
Suraj Shetty7044bcf2021-05-09 11:29:00 +0530123 run: cd ~/frappe-bench/ && bench --site test_site run-parallel-tests --app erpnext --use-orchestrator --with-coverage
Mohammad Hasnain Mohsin Rajan0f60f082021-03-12 14:09:52 +0530124 env:
Suraj Shetty490aed22021-05-08 00:04:34 +0530125 TYPE: server
Suraj Shetty7044bcf2021-05-09 11:29:00 +0530126 CI_BUILD_ID: ${{ github.run_id }}
Suraj Shetty64083672021-05-10 23:48:37 +0530127 ORCHESTRATOR_URL: http://test-orchestrator.frappe.io
Mohammad Hasnain Mohsin Rajan0f60f082021-03-12 14:09:52 +0530128
Suraj Shetty1fc8fcc2021-09-10 08:08:00 +0530129 - name: Upload coverage data
Ankush Menatc14c5132022-04-10 15:06:38 +0530130 uses: actions/upload-artifact@v3
131 with:
132 name: coverage-${{ matrix.container }}
133 path: /home/runner/frappe-bench/sites/coverage.xml
134
135 coverage:
136 name: Coverage Wrap Up
137 needs: test
138 runs-on: ubuntu-latest
139 steps:
Ankush Menat71de7542022-04-13 18:23:22 +0530140 - name: Clone
141 uses: actions/checkout@v2
142
Ankush Menatc14c5132022-04-10 15:06:38 +0530143 - name: Download artifacts
144 uses: actions/download-artifact@v3
145
146 - name: Upload coverage data
Suraj Shetty1fc8fcc2021-09-10 08:08:00 +0530147 uses: codecov/codecov-action@v2
148 with:
149 name: MariaDB
150 fail_ci_if_error: true
Suraj Shetty1fc8fcc2021-09-10 08:08:00 +0530151 verbose: true