Skip to content

Commit

Permalink
fail on purpose
Browse files Browse the repository at this point in the history
  • Loading branch information
samelamin committed Oct 3, 2023
1 parent 8a40168 commit f045785
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ jobs:
machine_type: e2-highcpu-32
disk_size: 200
machine_zone: us-central1-b
shutdown_timeout: 10

# - uses: actions/checkout@v4
#
# - name: Install Protobuf
# run: sudo apt install protobuf-compiler
- uses: actions/checkout@v4

- name: Install Protobuf
# Fail on purpose
run: sudo apt install protoobuf-compiler
#
# - name: Install minimal nightly Rust
# uses: actions-rs/toolchain@v1
Expand All @@ -54,8 +54,9 @@ jobs:
# - name: Run tests with benchmarks
# run: cargo test --features runtime-benchmarks
#
# - name: Delete runner VM
# run: >
# gcloud compute instances delete
# gce-gh-runner-${{ github.run_id }}-${{ github.run_attempt }}
# --quiet --zone us-central1-b
- name: Delete runner VM
if: always()
run: >
gcloud compute instances delete
gce-gh-runner-${{ github.run_id }}-${{ github.run_attempt }}
--quiet --zone us-central1-b

0 comments on commit f045785

Please sign in to comment.