Skip to content

Commit

Permalink
switch back to ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Braun committed Sep 22, 2023
1 parent 8734a53 commit 6ce7290
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/harness_stress_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ env:
jobs:
harness:
name: Harness
runs-on: windows-latest
runs-on: ubuntu-latest
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.9.1
Expand All @@ -23,6 +23,11 @@ jobs:
- name: Checkout Code
uses: actions/checkout@v3

- name: Configure sccache
run: |
echo "RUSTC_WRAPPER=sccache" >> $GITHUB_ENV
echo "SCCACHE_GHA_ENABLED=true" >> $GITHUB_ENV
- name: Run sccache-cache
uses: mozilla-actions/sccache-action@v0.0.3

Expand All @@ -43,7 +48,8 @@ jobs:

- name: Install Protobuf and LLVM
run: |
choco install protoc llvm
sudo apt-get install protobuf-compiler
sudo apt install llvm
- name: t2n3 && 1 proposal per session
run: cargo run --package dkg-test-orchestrator --features=debug-tracing -- --tmp /tmp --threshold 2 --n 3 --bind 127.0.0.1:7777 --n-tests 10 -p 1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
# dkg-substrate integration tests
local_chain:
name: Local Chain Tests
runs-on: windows-latest
runs-on: ubuntu-latest
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.9.1
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:

- name: Install Protobuf and LLVM
run: |
choco install protoc llvm
sudo apt-get install protobuf-compiler llvm
- name: Install cargo make
run: cargo install --force cargo-make
Expand Down

0 comments on commit 6ce7290

Please sign in to comment.