mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
72 lines
1.9 KiB
YAML
72 lines
1.9 KiB
YAML
name: prototyping
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'master'
|
|
- 'prototyping-*'
|
|
paths:
|
|
- '.github/workflows/**'
|
|
- 'prototyping/**'
|
|
- 'Analysis/**'
|
|
- 'Ast/**'
|
|
- 'CLI/Ast.cpp'
|
|
- 'CLI/FileUtils.*'
|
|
pull_request:
|
|
paths:
|
|
- '.github/workflows/**'
|
|
- 'prototyping/**'
|
|
- 'Analysis/**'
|
|
- 'Ast/**'
|
|
- 'CLI/Ast.cpp'
|
|
- 'CLI/FileUtils.*'
|
|
|
|
jobs:
|
|
linux:
|
|
strategy:
|
|
matrix:
|
|
agda: [2.6.2.1]
|
|
name: prototyping
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- uses: actions/cache@v2
|
|
with:
|
|
path: ~/.cabal/store
|
|
key: prototyping-${{ runner.os }}-${{ matrix.agda }}
|
|
- name: install cabal
|
|
run: sudo apt-get install -y cabal-install
|
|
- name: cabal update
|
|
working-directory: prototyping
|
|
run: cabal update
|
|
- name: cabal install
|
|
working-directory: prototyping
|
|
run: |
|
|
cabal install Agda-${{ matrix.agda }}
|
|
cabal install --lib scientific --package-env .
|
|
cabal install --lib vector --package-env .
|
|
cabal install --lib aeson --package-env .
|
|
- name: check examples
|
|
working-directory: prototyping
|
|
run: ~/.cabal/bin/agda Examples.agda
|
|
- name: build executables
|
|
working-directory: prototyping
|
|
run: |
|
|
~/.cabal/bin/agda --compile PrettyPrinter.agda
|
|
~/.cabal/bin/agda --compile Interpreter.agda
|
|
~/.cabal/bin/agda --compile Properties.agda
|
|
- name: cmake configure
|
|
run: cmake .
|
|
- name: cmake build luau-ast
|
|
run: cmake --build . --target Luau.Ast.CLI
|
|
- name: run tests
|
|
working-directory: prototyping
|
|
run: |
|
|
mkdir test-failures
|
|
python tests -l ../luau-ast --write-diff-failures --diff-failure-location test-failures/
|
|
- uses: actions/upload-artifact@v2
|
|
if: failure()
|
|
with:
|
|
name: test failures
|
|
path: prototyping/test-failures
|
|
retention-days: 5
|