Skip to content

Commit

Permalink
disable broken builds for now
Browse files Browse the repository at this point in the history
  • Loading branch information
kalamay committed Mar 7, 2024
1 parent 48a46b0 commit 98a06bf
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,33 +54,33 @@ jobs:
with:
command: test

test_android:
name: Test Android
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Install Cross
run: |
CROSS_URL=https://github.com/rust-embedded/cross/releases/download/v0.2.1/cross-v0.2.1-x86_64-unknown-linux-gnu.tar.gz
mkdir -p "$HOME/.bin"
curl -sfSL --retry-delay 10 --retry 5 "${CROSS_URL}" | tar zxf - -C "$HOME/.bin"
echo "$HOME/.bin" >> $GITHUB_PATH
- name: Run cross test
run: cross test --target aarch64-linux-android
# test_android:
# name: Test Android
# runs-on: ubuntu-latest
# steps:
# - name: Checkout sources
# uses: actions/checkout@v2
# - name: Install stable toolchain
# uses: actions-rs/toolchain@v1
# with:
# profile: minimal
# toolchain: stable
# override: true
# - name: Install Cross
# run: |
# CROSS_URL=https://github.com/rust-embedded/cross/releases/download/v0.2.1/cross-v0.2.1-x86_64-unknown-linux-gnu.tar.gz
# mkdir -p "$HOME/.bin"
# curl -sfSL --retry-delay 10 --retry 5 "${CROSS_URL}" | tar zxf - -C "$HOME/.bin"
# echo "$HOME/.bin" >> $GITHUB_PATH
# - name: Run cross test
# run: cross test --target aarch64-linux-android

build_misc:
name: Build miscellaneous systems
strategy:
matrix:
target:
- x86_64-sun-solaris
#- x86_64-sun-solaris
- x86_64-unknown-netbsd
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 98a06bf

Please sign in to comment.