Picol  Check-in [f819f68aa3]

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:CI: Replace Travis CI with GitHub Actions for Linux.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | trunk
Files: files | file ages | folders
SHA1: f819f68aa31129f2569e047e812627c0e0e41867
User & Date: dbohdan 2023-11-28 18:45:48
Original Comment: CI: Replace Travis CI with GitHub Actions for Linux
Context
2023-11-28
18:45
CI: Replace Travis CI with GitHub Actions for Linux. Leaf check-in: f819f68aa3 user: dbohdan tags: trunk
2023-11-26
09:47
appveyor.yml: Do not try to upload to Bintray. check-in: 89ce6ec405 user: dbohdan tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Added .github/workflows/ci.yml.





























>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
name: CI
on: [push, pull_request]
jobs:
  linux:
    runs-on: ubuntu-latest
    steps:
    - name: Checkout
      uses: actions/checkout@v3
    - name: Install dependencies
      run: sudo apt-get update && sudo apt-get install -y tcl
    - name: Run tests
      run: |
        make test
        make examples-test

Deleted .travis.yml.

1
2
3
4
5
6
7
8
language: c
addons:
  apt:
    packages:
      - tcl
script:
- make test
- make examples-test
<
<
<
<
<
<
<
<
















Changes to README.md.

1
2
3
4
[![Travis CI build status](https://travis-ci.org/dbohdan/picol.svg)](https://travis-ci.org/dbohdan/picol)
[![AppVeyor CI build status](https://ci.appveyor.com/api/projects/status/github/dbohdan/picol?branch=trunk&svg=true)](https://ci.appveyor.com/project/dbohdan/picol)

Picol is a tiny Tcl interpreter. For more information, build instructions and binary downloads see the [Fossil repository](https://chiselapp.com/user/dbohdan/repository/picol/index).
|



1
2
3
4
[![GitHub Actions CI status.](https://github.com/dbohdan/picol/actions/workflows/ci.yml/badge.svg)](https://github.com/dbohdan/picol/actions/workflows/ci.yml)
[![AppVeyor CI build status](https://ci.appveyor.com/api/projects/status/github/dbohdan/picol?branch=trunk&svg=true)](https://ci.appveyor.com/project/dbohdan/picol)

Picol is a tiny Tcl interpreter. For more information, build instructions and binary downloads see the [Fossil repository](https://chiselapp.com/user/dbohdan/repository/picol/index).