-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add workflow doing comparative testing of toolchain branches across m…
…ultiple targets
- Loading branch information
Showing
18 changed files
with
427 additions
and
126 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
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,11 @@ | ||
#!/bin/bash | ||
|
||
source `dirname ${BASH_SOURCE[0]}`/config.sh | ||
source `dirname ${BASH_SOURCE[0]}`/../config.sh | ||
|
||
rm -rf $BINUTILS_BUILD_PATH | ||
BINUTILS_BUILD_PATH=$BUILD_PATH/binutils | ||
|
||
echo "::group::Delete binutils build" | ||
rm -rf $BINUTILS_BUILD_PATH/* | ||
echo "::endgroup::" | ||
|
||
echo 'Success!' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/bin/bash | ||
|
||
source `dirname ${BASH_SOURCE[0]}`/config.sh | ||
|
||
echo "root-path-env=$ROOT_PATH" >> $GITHUB_OUTPUT | ||
echo "build-path-env=$BUILD_PATH" >> $GITHUB_OUTPUT | ||
echo "ccache-dir-path-env=$CCACHE_DIR_PATH" >> $GITHUB_OUTPUT | ||
echo "artifact-path-env=$ARTIFACT_PATH" >> $GITHUB_OUTPUT | ||
|
||
if [ -x "$(command -v wslpath)" ]; then | ||
echo "root-path-host=`wslpath -w $ROOT_PATH`" >> $GITHUB_OUTPUT | ||
echo "build-path-host=`wslpath -w $BUILD_PATH`" >> $GITHUB_OUTPUT | ||
echo "ccache-dir-path-host=`wslpath -w $CCACHE_DIR_PATH`" >> $GITHUB_OUTPUT | ||
echo "artifact-path-host=`wslpath -w $ARTIFACT_PATH`" >> $GITHUB_OUTPUT | ||
else | ||
echo "root-path-host=$ROOT_PATH" >> $GITHUB_OUTPUT | ||
echo "build-path-host=$BUILD_PATH" >> $GITHUB_OUTPUT | ||
echo "ccache-dir-path-host=$CCACHE_DIR_PATH" >> $GITHUB_OUTPUT | ||
echo "artifact-path-host=$ARTIFACT_PATH" >> $GITHUB_OUTPUT | ||
fi |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/bash | ||
|
||
source `dirname ${BASH_SOURCE[0]}`/../config.sh | ||
|
||
GCC_BUILD_PATH=$BUILD_PATH/gcc | ||
|
||
echo "::group::Delete GCC build" | ||
rm -rf $GCC_BUILD_PATH/* | ||
echo "::endgroup::" | ||
|
||
echo 'Success!' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/bash | ||
|
||
source `dirname ${BASH_SOURCE[0]}`/../config.sh | ||
|
||
GCC_BUILD_PATH=$BUILD_PATH/gcc | ||
|
||
echo "::group::Pack GCC build" | ||
mkdir -p $ARTIFACT_PATH | ||
tar czf $ARTIFACT_PATH/gcc-build.tar.gz -C $GCC_BUILD_PATH . | ||
echo "::endgroup::" | ||
|
||
echo 'Success!' |
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.