File: all.yml

package info (click to toggle)
tup 0.8-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 21,076 kB
  • sloc: ansic: 256,651; sh: 19,101; perl: 184; python: 67; lisp: 63; makefile: 56
file content (39 lines) | stat: -rw-r--r-- 1,135 bytes parent folder | download | duplicates (2)
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
name: Build and Test
on: [push, pull_request]
jobs:
  ubuntu:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2
    - run: sudo apt-get install ccache libfuse3-dev build-essential flex bison gperf libncurses5-dev libncursesw5-dev gawk libmpfr-dev libgpm-dev zlib1g-dev yasm graphviz
    - run: pip3 install sh
    - run: ./bootstrap.sh
    - run: cd test && ./test.sh --keep-going

# Currently bootstrap.sh is not supported on Windows, since build.sh is not supported on Windows.
# However, when it is, this commented-out github action below can be used.

# windows:
#   runs-on: windows-latest
#   defaults:
#     run:
#       shell: msys2 {0}
#   steps:
#   - uses: msys2/setup-msys2@v2
#     with:
#       msystem: MINGW64
#       update: true
#       install: >-
#         base-devel
#   - uses: actions/checkout@v2
#   - run: ./bootstrap.sh
#   - run: cd test && ./test.sh --keep-going

#  macos:
#    runs-on: macos-latest
#    steps:
#    - uses: actions/checkout@v2
#    - run: brew install macfuse ccache
#    - run: pip3 install sh
#    - run: ./bootstrap.sh
#    - run: cd test && ./test.sh --keep-going