We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cab1935 commit 08fe700Copy full SHA for 08fe700
.github/workflows/linux-build.yml
@@ -15,13 +15,17 @@ jobs:
15
- "clang"
16
steps:
17
- name: Checkout
18
- uses: actions/checkout@v4
+ uses: actions/checkout@v5
19
+ - name: Checkout tclconfig
20
21
+ with:
22
+ repository: tcltk/tclconfig
23
+ ref: main
24
+ path: tclconfig
25
- name: Setup Environment (compiler=${{ matrix.compiler }})
26
run: |
27
sudo apt-get install tcl8.6-dev libgdbm-dev liblmdb-dev
28
mkdir "$HOME/install dir"
- curl https://core.tcl-lang.org/tclconfig/tarball/main/tclconfig.tar.gz >tclconfig.tar.gz
- tar xfz tclconfig.tar.gz
29
echo "CFGOPT=--with-tcl=/usr/lib/tcl8.6 --with-gdbm --with-lmdb" >> $GITHUB_ENV
30
echo "CC=$COMPILER" >> $GITHUB_ENV
31
env:
0 commit comments