forked from cisco/ChezScheme
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add further archs for testing (cisco#24)
Add testing for non-threaded x86_64, and i386 versions and remove references to travis_fold directives in testing.
- Loading branch information
Paulo Matos
authored
May 18, 2020
1 parent
5b14f79
commit 441cdb1
Showing
4 changed files
with
15 additions
and
32 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 |
---|---|---|
@@ -1,15 +1,13 @@ | ||
#!/bin/bash | ||
set -e -o pipefail | ||
echo 'travis_fold:start:build' | ||
echo Building Chez Scheme... | ||
./configure -m=$TARGET_MACHINE | ||
./configure -m=$MACH | ||
make | ||
case $TARGET_MACHINE in | ||
case $MACH in | ||
*a6nt) | ||
curl -Ls https://github.com/burgerrg/win-iconv/releases/download/v0.0.9/iconv-x64.dll > $TARGET_MACHINE/bin/$TARGET_MACHINE/iconv.dll | ||
;; | ||
*i3nt) | ||
curl -Ls https://github.com/burgerrg/win-iconv/releases/download/v0.0.9/iconv-x86.dll > $TARGET_MACHINE/bin/$TARGET_MACHINE/iconv.dll | ||
;; | ||
esac | ||
echo 'travis_fold:end:build' |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -10,12 +10,18 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
mach: ['ta6le'] | ||
mach: ['i3le', 'ti3le', 'a6le', 'ta6le'] | ||
|
||
env: | ||
TARGET_MACHINE: ${{ matrix.mach }} | ||
MACH: ${{ matrix.mach }} | ||
|
||
steps: | ||
- uses: Bogdanp/[email protected] | ||
with: | ||
distribution: 'minimal' # minimal is enough | ||
variant: 'CS' # lets dog-food CS | ||
version: 'current' | ||
packages: 'cs-bootstrap' | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: 'recursive' | ||
|
@@ -33,7 +39,7 @@ jobs: | |
sudo apt-get update | ||
sudo apt-get install -y libncurses5-dev uuid-dev libssl-dev | ||
- name: Build bootfiles | ||
run: .github/scripts/dobootfile.sh | ||
run: racket -l cs-bootstrap | ||
- name: Build Chez | ||
run: .github/scripts/build.sh | ||
- name: Test Chez | ||
|