ci(github): add #1
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: CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Tcl | |
run: sudo apt-get install -y tcl | |
- name: Start Redis server | |
run: sudo service redis-server start | |
- name: Download Jim Tcl versions | |
run: | | |
wget -O jimsh-0.76 https://github.com/dbohdan/jimsh-static/releases/download/v1/jimsh-0.76-51f65c6d38-i386 | |
wget -O jimsh-0.77 https://github.com/dbohdan/jimsh-static/releases/download/v1/jimsh-0.77-a9bf5975fd-i386 | |
wget -O jimsh-0.78 https://github.com/dbohdan/jimsh-static/releases/download/v1/jimsh-0.78-022f902632-i386 | |
wget -O jimsh-0.79 https://github.com/dbohdan/jimsh-static/releases/download/v2/jimsh-0.79-0aa0fb4e3a-amd64 | |
wget -O jimsh-0.80 https://github.com/dbohdan/jimsh-static/releases/download/v4-0.80-e4416cf86f/jimsh-0.80-e4416cf86f-amd64 | |
wget -O jimsh-0.82 https://github.com/dbohdan/jimsh-static/releases/download/v5-0.82-fcbb4499a6/jimsh-0.82-fcbb4499a6-amd64 | |
chmod +x jimsh* | |
- name: 'Set `PATH`' | |
run: echo "PATH=$PATH:$PWD/jimtcl" >> $GITHUB_ENV | |
- name: Run tests | |
run: | | |
./jimsh-0.76 tests.tcl | |
./jimsh-0.77 tests.tcl | |
./jimsh-0.78 tests.tcl | |
./jimsh-0.79 tests.tcl | |
./jimsh-0.80 tests.tcl | |
./jimsh-0.82 tests.tcl | |
tclsh tests.tcl |