Skip to content

Commit

Permalink
Remove appveyor compatibility. (#2831)
Browse files Browse the repository at this point in the history
  • Loading branch information
slaff authored Jun 24, 2024
1 parent 626ae7b commit 3f8f2ef
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
approvers: slaff
- name: Install xmlstarlet
if: ${{ github.ref_type == 'tag' }}
run: sudo apt-get install -y xmlstarlet
run: sudo apt-get install -y jq xmlstarlet
- name: Build docs
if: ${{ github.ref_type == 'tag' }}
run: |
Expand Down
6 changes: 0 additions & 6 deletions Sming/Arch/Host/Tools/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,3 @@
#
# Host install.sh

# Required by deployment script
if [ -n "$APPVEYOR" ]; then
$PKG_INSTALL \
jq \
xmlstarlet
fi
7 changes: 0 additions & 7 deletions Tools/ci/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,6 @@ set -ex

if [ -z "$SMING_TOOLS_PREINSTALLED" ]; then

# appveyor-specific
if [ -n "$APPVEYOR" ]; then
export PYTHON=$HOME/venv3.9/bin/python
export ESP32_PYTHON_PATH=$HOME/venv3.9/bin
source "$HOME/venv3.9/bin/activate"
fi

if [ "$BUILD_DOCS" = "true" ]; then
INSTALL_OPTS="doc"
else
Expand Down
6 changes: 1 addition & 5 deletions Tools/ci/testnotify.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,6 @@ case "$status" in
;;
esac

if [ -n "$APPVEYOR" ]; then
appveyor $cmd "$testname" -Framework Sming -Filename "$MODULE" -Outcome $status -Duration $elapsedMillis
else
echo "TestNotify: $cmd $testname -Framework Sming -Filename $MODULE -Outcome $status -Duration $elapsedMillis"
fi
echo "TestNotify: $cmd $testname -Framework Sming -Filename $MODULE -Outcome $status -Duration $elapsedMillis"

echo "$curNanos" > "$testfile"

0 comments on commit 3f8f2ef

Please sign in to comment.