Try 2: add more pre/post steps for janet-pm #576
Workflow file for this run
This file contains hidden or 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: Test | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
test-posix: | |
name: Build and test on POSIX systems | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ ubuntu-latest, macos-latest, macos-13 ] | |
janet-version: [ heads/master, tags/v1.38.0, tags/v1.37.1, tags/v1.36.0, tags/v1.35.2 ] | |
steps: | |
- name: Checkout Janet | |
uses: actions/checkout@v4 | |
with: | |
repository: janet-lang/janet | |
path: janet | |
ref: refs/${{ matrix.janet-version }} | |
- name: Build Janet | |
run: cd janet && make clean && make && make test | |
- name: Install Janet | |
run: cd janet && sudo make install | |
- name: Checkout the repository | |
uses: actions/checkout@v4 | |
with: | |
path: spork | |
- name: Build Spork | |
run: cd spork && janet -l ./bundle -e "(build)" | |
- name: Test Install | |
run: sudo janet -e '(bundle/install "spork")' | |
- name: Run Tests | |
run: cd spork && VERBOSE=1 janet -l ./bundle -e "(check)" | |
test-windows: | |
name: Build and test on Windows | |
strategy: | |
matrix: | |
os: [ windows-2022, windows-latest ] | |
janet-version: [ 1.35.2, 1.36.0, 1.37.1, 1.38.0 ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
path: spork | |
- name: Download Janet Latest Release | |
shell: cmd | |
run: curl -fSLo janet.msi https://github.com/janet-lang/janet/releases/download/v${{ matrix.janet-version }}/janet-${{ matrix.janet-version }}-windows-x64-installer.msi | |
- name: Install Janet | |
shell: cmd | |
run: msiexec /quiet /i janet.msi ALLUSERS=1 /log install.log && type install.log | |
- name: Build Spork | |
shell: cmd | |
run: | | |
refreshenv & cd spork & janet -l ./bundle -e "(do (setdyn :verbose true) (build))" | |
- name: Test Install | |
shell: cmd | |
run: | | |
refreshenv & janet -e "(bundle/install `spork`)" | |
- name: Run Tests | |
shell: cmd | |
run: | | |
refreshenv & cd spork & janet -l ./bundle -e "(check)" |