Skip to content

Commit

Permalink
Update README + Add comments to build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
InvictusRMC committed Feb 19, 2024
1 parent 853a427 commit a7e16cd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ on:
jobs:
test:
name: Run Tests
runs-on: windows-latest # TODO: Ubuntu currently broken.
# TODO: Ubuntu currently broken.
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -21,6 +22,10 @@ jobs:
distribution: 'zulu'
java-version: '17'

# TODO: This is currently broken due to SqlDelight.
# - name: Run check
# run: bash ./gradlew check

- name: Run tests
run: bash ./gradlew test

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ Run unit tests:
```
./gradlew test
```
*Note: Currently tests fail on Linux, but pass on Windows and Mac. This is due to the tests relying on a native jlibtorrent binary, of which the linux version cannot be bundled with android builds. We are working on a solution to this problem.*

Run instrumented tests:
```
Expand Down

0 comments on commit a7e16cd

Please sign in to comment.