Skip to content

Commit

Permalink
remove package cloud deps
Browse files Browse the repository at this point in the history
  • Loading branch information
yanksyoon committed Jul 25, 2024
1 parent 139cbe1 commit d56373f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 10 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/benchmark-arm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ jobs:
runs-on: [self-hosted, ARM64]
# timeout-minutes: 120
steps:
- run: sudo apt-get update
if: ${{ always() }}
### Network tests
- name: Download indico resource test
if: ${{ always() }}
Expand Down Expand Up @@ -65,7 +67,6 @@ jobs:
- name: CPU benchmarks
if: ${{ always() }}
run: |
curl -s https://packagecloud.io/install/repositories/akopytov/sysbench/script.deb.sh | sudo bash
sudo apt-get install sysbench -y
echo "---CPU benchmark test start---"
sysbench cpu run
Expand Down Expand Up @@ -122,8 +123,6 @@ jobs:
done
sleep 1
### DISK TESTS
- run: sudo apt-get update
if: ${{ always() }}
- run: sudo apt install -y fio
if: ${{ always() }}
- name: seq write
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/benchmark-github-hosted.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ jobs:
runs-on: ubuntu-latest
# timeout-minutes: 120
steps:
- run: sudo apt-get update
if: ${{ always() }}
### Network tests
- name: Download indico resource test
if: ${{ always() }}
Expand Down Expand Up @@ -120,8 +122,6 @@ jobs:
done
sleep 1
### DISK TESTS
- run: sudo apt-get update
if: ${{ always() }}
- run: sudo apt install -y fio
if: ${{ always() }}
- name: seq write
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/benchmark.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ jobs:
runs-on: [self-hosted, xlarge, linux, X64, jammy]
# timeout-minutes: 120
steps:
- run: sudo apt-get update
if: ${{ always() }}
### Network tests
- name: Download indico resource test
if: ${{ always() }}
Expand Down Expand Up @@ -65,7 +67,6 @@ jobs:
- name: CPU benchmarks
if: ${{ always() }}
run: |
curl -s https://packagecloud.io/install/repositories/akopytov/sysbench/script.deb.sh | sudo bash
sudo apt-get install sysbench -y
echo "---CPU benchmark test start---"
sysbench cpu run
Expand Down Expand Up @@ -121,8 +122,6 @@ jobs:
done
sleep 1
### DISK TESTS
- run: sudo apt-get update
if: ${{ always() }}
- run: sudo apt install -y fio
if: ${{ always() }}
- name: seq write
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ jobs:
name: Integration tests
runs-on: [self-hosted, noble]
steps:
- name: apt update
run: sudo apt-get update -y
- name: Fix snap issue in privileged LXD containers
run: ln -s /bin/true /usr/local/bin/udevadm
# Below is a series of simple tests to assess the functionality of the newly spawned runner.
Expand Down Expand Up @@ -55,8 +57,6 @@ jobs:
run: jq --version
- name: yq version
run: yq --version
- name: apt update
run: sudo apt-get update -y
# Use pipx for 24.04 noble, check-jsonschema breaks OS system packages.
- name: install pipx
run: sudo apt-get install -y pipx
Expand Down

0 comments on commit d56373f

Please sign in to comment.