Skip to content

Commit

Permalink
Hopefully permanently fix CI
Browse files Browse the repository at this point in the history
CI was complaining about CRLF line endings.
This commit *should* automatically convert gradlew to LF, so it can be run without failing
  • Loading branch information
cuttestkittensrule authored Aug 25, 2024
1 parent 8b7193b commit 42123fa
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ jobs:
cache: gradle
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Ensure LF
working-directory: Robot2024
run: set -o xtrace
\ tr -d '\015' < "gradlew">"gradlew.temp"
\ rm -f "gradlew"
\ mv "gradlew.temp" "gradlew"
- name: Run build with Gradle Wrapper
working-directory: Robot2024
run: ./gradlew build

0 comments on commit 42123fa

Please sign in to comment.