Skip to content

Commit

Permalink
ci: disable full debug symbol generation (#1364)
Browse files Browse the repository at this point in the history
# Description

Hoping this will mitigate our ci failures for windows.

# Related Issue(s)
<!---
For example:

- closes #106
--->

# Documentation

<!---
Share links to useful documentation
--->
  • Loading branch information
roeap authored May 13, 2023
1 parent 6b6911b commit 5665eb1
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ jobs:
- macos-11
- windows-latest
runs-on: ${{ matrix.os }}
env:
# Disable full debug symbol generation to speed up CI build and keep memory down
# "1" means line tables only, which is useful for panic tracebacks.
RUSTFLAGS: -C debuginfo=1
steps:
- uses: actions/checkout@v3
- name: Install minimal stable with clippy and rustfmt
Expand Down Expand Up @@ -97,16 +101,16 @@ jobs:
profile: default
toolchain: stable
override: true

- uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '17'
distribution: "zulu"
java-version: "17"

- uses: beyondstorage/setup-hdfs@master
with:
hdfs-version: '3.3.2'
hdfs-version: "3.3.2"

- name: Set Hadoop env
run: |
echo "CLASSPATH=$CLASSPATH:`hadoop classpath --glob`" >> $GITHUB_ENV
Expand Down

0 comments on commit 5665eb1

Please sign in to comment.