Run test with old runtime on ST3 build #117
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: "* 0 * * SAT" | |
workflow_dispatch: | |
jobs: | |
no_defpkg_stable: | |
name: Without default packages, latest stable | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./ | |
with: | |
build: stable | |
package_root: test/no_defpkg | |
# TODO indentation tests | |
# TODO reference & definition tests | |
defpkg_stable: | |
name: With default packages, latest stable | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./ | |
with: | |
build: stable | |
default_packages: binary | |
package_root: test/defpkg | |
no_defpkg_old_build: | |
name: Without default packages, build 4073 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./ | |
with: | |
build: 4073 | |
package_root: test/no_defpkg | |
third-party_stable: | |
name: Third-party, latest stable | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo (primary package) | |
uses: actions/checkout@v4 | |
- name: Checkout INI package (dependency) | |
uses: actions/checkout@v4 | |
with: | |
repository: jwortmann/ini-syntax | |
ref: v1.5.0 | |
path: third-party/INI | |
- uses: ./ | |
with: | |
build: stable | |
package_root: test/third-party | |
additional_packages: third-party/INI | |
dummy_syntax_stable: | |
name: Dummy Syntax, latest stable | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo (primary package) | |
uses: actions/checkout@v4 | |
- uses: ./ | |
with: | |
build: stable | |
package_root: test/dummy-syntax | |
dummy_syntaxes: text.dummy | |
st3: | |
name: Without default packages, ST3 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./ | |
with: | |
build: 3210 | |
default_packages: v3189 | |
package_root: test/st3 | |
st3_no_defpkg_old_runtime: | |
name: Without default packages, ST3, ubuntu-20.04 | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./ | |
with: | |
build: 3210 | |
package_root: test/no_defpkg | |
# This is expected to error and used to test the error wrapper | |
st3_error: | |
name: Error on purpose | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./ | |
continue-on-error: true | |
with: | |
build: 4189 | |
default_packages: master | |
package_root: test/st3 |