-
Notifications
You must be signed in to change notification settings - Fork 123
42 lines (39 loc) · 960 Bytes
/
Copy pathcompletion_tests.yaml
File metadata and controls
42 lines (39 loc) · 960 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: completion-tests
on:
push:
branches:
- main
- v*.*.x
pull_request:
branches:
- main
- v*.*.x
permissions:
contents: read
jobs:
completion-all:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v7
with:
fetch-depth: 0
- name: Install system packages
run: |
sudo apt-get -y update
sudo apt-get install -y expect-dev dejagnu python3-sphinx gzip bash zsh fish tcsh tcl8.6 python3
# libtclenvmodules build requirements
sudo apt-get install -y gcc autoconf tcl8.6-dev
- name: Build Modules
run: |
./configure
make
- name: Test shell Tab completion
run: |
script/mt comp
- uses: actions/upload-artifact@v7
if: failure()
with:
name: testsuite-logs-${{ github.job }}
path: |
completion.log
retention-days: 5