forked from galaxyproject/training-material
-
Notifications
You must be signed in to change notification settings - Fork 0
69 lines (63 loc) · 2.06 KB
/
video-dry.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
name: Dry-run of Video Generation
on:
pull_request:
paths:
- 'bin/ari*'
- '**/*.html'
jobs:
runner-job:
if: github.repository_owner == 'galaxyproject'
runs-on: ubuntu-latest
services:
# Label used to access the service container
mozillatts:
image: synesthesiam/mozillatts
ports:
- 5002:5002
steps:
# Shallow should be fine for video
- uses: actions/checkout@v2
with:
fetch-depth: 0
# BEGIN Dependencies
- uses: actions/setup-python@v2
with:
python-version: '3.7'
architecture: 'x64'
- uses: ruby/setup-ruby@v1
with:
ruby-version: "2.7"
- uses: actions/setup-node@v2
with:
node-version: '14'
- uses: actions/cache@v2
with:
path: |
vendor/bundle
~/.npm
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}-node-
${{ runner.os }}-gems-
- name: Install dependencies
run: |
gem install bundler
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
npm install
bundle pristine ffi
# END Dependencies
#
- name: Check that all slides extract presenter notes successfully
run: |
find topics -name 'slides.html' -or -name introduction.html -or -name 'slides_*ES.html' | \
xargs ./bin/filter-resource-metadata video | \
xargs bundle exec ruby ./bin/ari-extract-script.rb
- name: Check software versions
run: |
FFMPEG_PATH=$(echo "const ffmpeg = require('ffmpeg-static');console.log(ffmpeg.split('/').slice(0, -1).join('/'));" | node -)
echo "Located FFMPEG at $FFMPEG_PATH"
export PATH="$FFMPEG_PATH:$PATH"
echo "Software Versions"
$FFMPEG_PATH/ffmpeg -version
$(npm bin)/editly --version