-
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.
- Loading branch information
Showing
5 changed files
with
131 additions
and
44 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,62 @@ | ||
name: Linux | ||
on: [push] | ||
permissions: | ||
contents: read | ||
defaults: | ||
run: | ||
shell: bash | ||
jobs: | ||
build: | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
matrix: | ||
compiler: | ||
- "gcc" | ||
- "clang" | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
- name: Setup Environment (compiler=${{ matrix.compiler }}) | ||
run: | | ||
sudo apt-get install tcl8.6-dev tcl-vfs | ||
mkdir "$HOME/install dir" | ||
echo "CFGOPT=--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 "--prefix=$HOME/install dir" "--exec-prefix=$HOME/install dir" --enable-xz || { | ||
cat config.log | ||
echo "::error::Failure during Configure" | ||
exit 1 | ||
} | ||
- name: Build | ||
run: | | ||
make || { | ||
echo "::error::Failure during Build" | ||
exit 1 | ||
} | ||
- name: Run Tests | ||
run: | | ||
make test || { | ||
echo "::error::Failure during Test" | ||
exit 1 | ||
} | ||
env: | ||
ERROR_ON_FAILURES: 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
* Add the make recipe 'package' | ||
* Make tests fail with an error on unsuccessful run | ||
* Detect tclsh correctly on Windows platform | ||
* Add Github workflow | ||
|
||
2024-04-06 Konstantin Kushnir <[email protected]> | ||
* Add basic benchmarks | ||
|
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
# cookfs |
File renamed without changes.