Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test moc inlining #77

Closed
wants to merge 9 commits into from
7 changes: 7 additions & 0 deletions .github/workflows/perf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
env:
DFX_VERSION: 0.14.4
IC_REPL_VERSION: 0.4.1
MOC_ARTIFACT: 923960883
MOC_VERSION: 0.10.0
IC_WASM_VERSION: 0.4.0
steps:
Expand Down Expand Up @@ -80,6 +81,12 @@ jobs:
cd main
make
dfx stop
wget https://nightly.link/dfinity/motoko/actions/artifacts/$MOC_ARTIFACT.zip
unzip $MOC_ARTIFACT.zip
chmod a+x bin/moc
cp -rf bin/moc $(dfx cache show)
rm -f /usr/local/bin/ic-repl
cargo install --git https://github.com/dfinity/ic-repl.git --branch new-meter
dfx start --clean --background
- name: Run perf
run: make
Expand Down