aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/test.yml
blob: 5fed0d9ac20dc9a498dbb4ae09167ce390c06410 (plain)
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
name: test_everything
on: [push]
jobs:
  test_stdlib_on_jvm:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: ./.github/workflows/setup_aedifex
      - run: cd ./stdlib/ && ../lux.sh with jvm with bibliotheca test
  test_aedifex:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: ./.github/workflows/setup_aedifex
      - run: cd ./stdlib/ && ../lux.sh with aedifex test
  # Temporarily disabled because of strange "replaceAll" issue on CI.
#  test_stdlib_on_node_js:
#    runs-on: ubuntu-latest
#    steps:
#      - uses: actions/checkout@v2
#      - uses: ./.github/workflows/setup_aedifex
#      # https://github.com/actions/setup-node
#      - uses: actions/setup-node@v3
#        with:
#          node-version: '14'
#      - run: cd ./stdlib/ && ../lux.sh with js with bibliotheca test
  test_stdlib_on_python_3:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: ./.github/workflows/setup_aedifex
      # https://github.com/actions/setup-python
      - uses: actions/setup-python@v2
        with:
          python-version: '3.9'
          architecture: 'x64'
      - run: cd ./stdlib/ && ../lux.sh with python with bibliotheca test
  # Temporarily disabled because of strange compiler bug that manifests when trying to run tests.
#  test_stdlib_on_ruby:
#    runs-on: ubuntu-latest
#    steps:
#      - uses: actions/checkout@v2
#      - uses: ./.github/workflows/setup_aedifex
#      # https://github.com/actions/setup-ruby
#      - uses: actions/setup-ruby@v1
#        with:
#          ruby-version: '2.6'
#      - run: cd ./stdlib/ && ../lux.sh with ruby with bibliotheca test
  # Temporarily disabled because the Lua version used in the CI is a bit outdated and some text/string operations fail as a consequence.
#  test_stdlib_on_lua:
#    runs-on: ubuntu-latest
#    steps:
#      - uses: actions/checkout@v2
#      - uses: ./.github/workflows/setup_aedifex
#      # https://github.com/marketplace/actions/setup-lua-luajit
#      - uses: xpol/setup-lua@v0.3
#        with:
#          lua-version: "5.3.5"
#      - run: cd ./stdlib/ && ../lux.sh with lua with bibliotheca test