Skip to content
This repository was archived by the owner on Nov 1, 2023. It is now read-only.

Commit 9e9c548

Browse files
committed
Remove aggressive step skipping in CI
1 parent 4b6c410 commit 9e9c548

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -79,14 +79,10 @@ jobs:
7979
key: ${{env.ACTIONS_CACHE_KEY_DATE}} # additional key for cache-busting
8080
workspaces: src/agent
8181
- name: Linux Prereqs
82-
if: runner.os == 'Linux' && steps.cache-agent-artifacts.outputs.cache-hit != 'true'
83-
run: |
84-
sudo apt-get -y update
85-
sudo apt-get -y install libssl-dev libunwind-dev build-essential pkg-config
86-
- name: Install clang ubuntu
8782
if: runner.os == 'Linux'
8883
run: |
89-
sudo apt install -y clang build-essential
84+
sudo apt-get -y update
85+
sudo apt-get -y install libssl-dev libunwind-dev build-essential pkg-config clang
9086
- name: Clone onefuzz-samples
9187
run: git clone https://github.com/microsoft/onefuzz-samples
9288
- name: Prepare for agent integration tests
@@ -98,11 +94,9 @@ jobs:
9894
cp fuzz.exe ../../../src/agent/onefuzz-task/tests/targets/simple/fuzz.exe
9995
cp *.pdb ../../../src/agent/onefuzz-task/tests/targets/simple/ 2>/dev/null || :
10096
- name: Install Rust Prereqs
101-
if: steps.rust-build-cache.outputs.cache-hit != 'true' && steps.cache-agent-artifacts.outputs.cache-hit != 'true'
10297
shell: bash
10398
run: src/ci/rust-prereqs.sh
10499
- run: src/ci/agent.sh
105-
if: steps.cache-agent-artifacts.outputs.cache-hit != 'true'
106100
shell: bash
107101
- name: Upload coverage to Codecov
108102
uses: codecov/codecov-action@v3

0 commit comments

Comments
 (0)