diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 8b24e694aef..36102aa4f92 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -251,5 +251,3 @@ jobs: with: run: cat js-framework-benchmark/webdriver-ts/results/results.json | ./yew/tools/target/release/process-benchmark-results - - name: Show output JSON - run: echo ${{ steps.results.outputs.stdout }} diff --git a/.github/workflows/size-cmp.yml b/.github/workflows/size-cmp.yml index 5ea7e4f44d7..df24fd60710 100644 --- a/.github/workflows/size-cmp.yml +++ b/.github/workflows/size-cmp.yml @@ -56,14 +56,14 @@ jobs: version: 'latest' - name: Build master examples - run: find examples/*/index.html | xargs -I '{}' trunk build --release '{}' || exit 0 - working-directory: yew-master + run: find ./*/index.html | xargs -I '{}' trunk build --release '{}' || exit 0 + working-directory: yew-master/examples env: RUSTUP_TOOLCHAIN: nightly - name: Build pull request examples - run: find examples/*/index.html | xargs -I '{}' trunk build --release '{}' || exit 0 - working-directory: current-pr + run: find ./*/index.html | xargs -I '{}' trunk build --release '{}' || exit 0 + working-directory: current-pr/examples env: RUSTUP_TOOLCHAIN: nightly diff --git a/examples/.cargo/config.toml b/examples/.cargo/config.toml index 281a1476d6a..c84bb118123 100644 --- a/examples/.cargo/config.toml +++ b/examples/.cargo/config.toml @@ -1,3 +1,4 @@ +[unstable] build-std = ["std", "panic_abort"] build-std-features = ["panic_immediate_abort"] share-generics = true