Commit 68473e7 Michael Hansen
committed Jul 1, 2020
1 parent 5e35718 commit 68473e7 Copy full SHA for 68473e7
File tree 3 files changed +23
-1
lines changed
3 files changed +23
-1
lines changed Original file line number Diff line number Diff line change 27
27
uses : actions/checkout@v1
28
28
- name : Deploy image
29
29
run : |
30
+ scripts/download-dependencies.sh
30
31
./configure --enable-in-place
31
32
make deploy
32
33
env :
Original file line number Diff line number Diff line change 25
25
with :
26
26
python-version : ${{ matrix.python-version }}
27
27
- name : Install Python dependencies
28
- run : make install
28
+ run : |
29
+ ./configure --enable-in-place
30
+ make
31
+ make install
29
32
- name : Check code
30
33
run : make check
31
34
- name : Make package
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+ set -e
3
+
4
+ # Directory of *this* script
5
+ this_dir=" $( cd " $( dirname " $0 " ) " && pwd ) "
6
+ src_dir=" $( realpath " ${this_dir} /.." ) "
7
+
8
+ download=" ${src_dir} /download"
9
+ mkdir -p " ${download} "
10
+
11
+ # -----------------------------------------------------------------------------
12
+
13
+ for docker_arch in amd64 armv7 arm64 armv6; do
14
+ nanotts=" nanotts-20200520_${docker_arch} .tar.gz"
15
+ if [[ ! -s " ${download} /${nanotts} " ]]; then
16
+ wget -O " ${download} /${nanotts} " " https://github.com/synesthesiam/prebuilt-apps/releases/download/v1.0/${nanotts} "
17
+ fi
18
+ done
You can’t perform that action at this time.
0 commit comments