Skip to content

Commit

Permalink
mem
Browse files Browse the repository at this point in the history
  • Loading branch information
Manishearth committed Nov 21, 2022
1 parent 7359948 commit c1a6678
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -875,7 +875,7 @@ jobs:

# Only run the memory benchmark if the main build succeeded. The memory benchmark does not
# rely on any of the build artifacts.
needs: [check]
# needs: [check]

steps:
- uses: actions/checkout@v2
Expand All @@ -886,11 +886,13 @@ jobs:
rustup override set nightly
echo "ICU4X_NIGHTLY_TOOLCHAIN=nightly" >> $GITHUB_ENV
echo "INSTALLED_NIGHTLY_VERSION=nightly" >> $GITHUB_ENV
- name: echo
run: echo "toolchain is $INSTALLED_NIGHTLY_VERSION"
# Nightly is only needed for the `--profile bench` line. Once that is stabilized,
# then this line is no longer needed.
- uses: actions-rs/toolchain@v1
with:
toolchain: $INSTALLED_NIGHTLY_VERSION
toolchain:
override: true

- name: Run the example with dhat-rs to collect memory information
Expand Down

0 comments on commit c1a6678

Please sign in to comment.