]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - .github/workflows/test.yml
Use postgres 10 for tests
[github/Chocobozzz/PeerTube.git] / .github / workflows / test.yml
1 name: Test Suite
2
3 on:
4 push:
5 pull_request:
6 types: [synchronize, opened]
7 schedule:
8 - cron: '0 3 * * 1-5'
9
10 jobs:
11
12 test:
13 runs-on: ubuntu-latest
14
15 services:
16 redis:
17 image: redis
18 ports:
19 - 6379:6379
20
21 postgres:
22 image: postgres:10
23 ports:
24 - 5432:5432
25 env:
26 POSTGRES_USER: peertube
27 POSTGRES_HOST_AUTH_METHOD: trust
28
29 ldap:
30 image: chocobozzz/docker-test-openldap
31 ports:
32 - 10389:10389
33
34 s3ninja:
35 image: chocobozzz/s3-ninja
36 ports:
37 - 9444:9000
38
39 strategy:
40 fail-fast: false
41 matrix:
42 test_suite: [ client, api-1, api-2, api-3, api-4, cli-plugin, lint, external-plugins ]
43
44 env:
45 PGUSER: peertube
46 PGHOST: localhost
47 NODE_PENDING_JOB_WAIT: 250
48 ENABLE_OBJECT_STORAGE_TESTS: true
49
50 steps:
51 - uses: actions/checkout@v2
52
53 - name: Use Node.js
54 uses: actions/setup-node@v1
55 with:
56 node-version: '12.x'
57
58 - name: Setup system dependencies
59 run: |
60 sudo apt-get install postgresql-client-common redis-tools parallel
61 wget --quiet --no-check-certificate "https://download.cpy.re/ffmpeg/ffmpeg-release-4.3.1-64bit-static.tar.xz"
62 tar xf ffmpeg-release-4.3.1-64bit-static.tar.xz
63 mkdir -p $HOME/bin
64 cp ffmpeg-*/{ffmpeg,ffprobe} $HOME/bin
65 echo "$HOME/bin" >> $GITHUB_PATH
66
67 - name: Cache Node.js modules
68 uses: actions/cache@v2
69 with:
70 path: |
71 **/node_modules
72 key: ${{ runner.OS }}-node-${{ hashFiles('**/yarn.lock') }}
73 restore-keys: |
74 ${{ runner.OS }}-node-
75 ${{ runner.OS }}-
76
77 - name: Cache fixtures
78 uses: actions/cache@v2
79 with:
80 path: |
81 fixtures
82 key: ${{ runner.OS }}-fixtures-${{ matrix.test_suite }}-${{ hashFiles('fixtures/*') }}
83 restore-keys: |
84 ${{ runner.OS }}-fixtures-${{ matrix.test_suite }}-
85 ${{ runner.OS }}-fixtures-
86 ${{ runner.OS }}-
87
88 - name: Install dependencies
89 run: yarn install --frozen-lockfile
90
91 - name: Set env test variable (schedule)
92 if: github.event_name != 'schedule'
93 run: |
94 echo "DISABLE_HTTP_IMPORT_TESTS=true" >> $GITHUB_ENV
95
96 - name: Run Test
97 # external-plugins tests only run on schedule
98 if: github.event_name == 'schedule' || matrix.test_suite != 'external-plugins'
99 run: npm run ci -- ${{ matrix.test_suite }}
100
101 - name: Display errors
102 if: ${{ always() }}
103 run: |
104 ( \
105 test -f dist/scripts/parse-log.js && \
106 cat *-ci.log | uniq -c && \
107 NODE_ENV=test node dist/scripts/parse-log.js -l error -f artifacts/*.log \
108 ) || \
109 echo "parse-log.js script does not exist, skipping."
110
111 - name: Upload logs
112 uses: actions/upload-artifact@v2
113 if: failure()
114 with:
115 name: test-storages-${{ matrix.test_suite }}
116 path: artifacts
117 retention-days: 7