-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add feature to build without Tcl commands (#10)
- Loading branch information
Showing
25 changed files
with
594 additions
and
412 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
name: Linux (without Tcl commands) | ||
on: [push] | ||
permissions: | ||
contents: read | ||
defaults: | ||
run: | ||
shell: bash | ||
jobs: | ||
build: | ||
runs-on: ubuntu-24.04 | ||
timeout-minutes: 5 | ||
strategy: | ||
matrix: | ||
compiler: ["gcc", "clang"] | ||
name: build (${{ matrix.compiler }}) | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
- name: Setup Environment (compiler=${{ matrix.compiler }}) | ||
run: | | ||
sudo apt-get install tcl8.6-dev | ||
mkdir "$HOME/install dir" | ||
echo "CFGOPT_COMMON=--with-tcl=/usr/lib/tcl8.6" >> $GITHUB_ENV | ||
echo "CC=$COMPILER" >> $GITHUB_ENV | ||
env: | ||
COMPILER: ${{ matrix.compiler }} | ||
OPTS: ${{ matrix.compiler }} | ||
- name: Configure | ||
run: | | ||
./configure $CFGOPT_COMMON --disable-tcl-commands "--prefix=$HOME/install dir" "--exec-prefix=$HOME/install dir" || { | ||
cat config.log | ||
echo "::error::Failure during Configure" | ||
exit 1 | ||
} | ||
- name: Build | ||
run: | | ||
make -j || { | ||
echo "::error::Failure during Build" | ||
exit 1 | ||
} | ||
- name: Run Tests | ||
run: | | ||
make test || { | ||
echo "::error::Failure during Test" | ||
exit 1 | ||
} | ||
- name: Test-Drive Installation | ||
run: | | ||
make install || { | ||
echo "::error::Failure during Install" | ||
exit 1 | ||
} | ||
- name: Create Distribution Package | ||
run: | | ||
make dist || { | ||
echo "::error::Failure during Distribute" | ||
exit 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
2024-05-30 Konstantin Kushnir <[email protected]> | ||
* Fix multiple memory leaks | ||
* Add feature to build without Tcl commands | ||
|
||
2024-05-29 Konstantin Kushnir <[email protected]> | ||
* Fix a regression when register volume and unregister with vfs::unmount | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
* Add support for Tcl9 | ||
* Add ability to disable Tcl commands for pages/index. This should reduce binary size. |
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
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
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
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
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
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
Oops, something went wrong.