Skip to content

Commit

Permalink
build: add more steps
Browse files Browse the repository at this point in the history
  • Loading branch information
akikanellis committed Apr 4, 2024
1 parent 9bbdf00 commit 6145520
Showing 1 changed file with 32 additions and 32 deletions.
64 changes: 32 additions & 32 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,38 +21,38 @@ jobs:
glances --export csv --export-csv-file glances.csv --quiet &
echo "pid=$!" >> "$GITHUB_OUTPUT"
# - name: Free disk space
# uses: jlumbroso/free-disk-space@v1.3.1
#
# - name: Checkout
# # yamllint disable-line rule:line-length
# uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
#
# - name: Setup just
# # yamllint disable-line rule:line-length
# uses: extractions/setup-just@dd310ad5a97d8e7b41793f8ef055398d51ad4de6 # v2.0.0
# with:
# # renovate: datasource=crate depName=just
# just-version: 1.25.2
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
#
# - name: Install Python
# # yamllint disable-line rule:line-length
# uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
# with:
# # renovate: datasource=docker depName=python versioning=docker
# python-version: 3.12.2
# cache: pip
#
# - name: Update apt
# run: sudo apt update
#
# - name: Install test dependencies
# run: sudo apt install vagrant virtualbox
#
# - name: Install dependencies
# run: just install-dependencies
- name: Free disk space
uses: jlumbroso/free-disk-space@v1.3.1

- name: Checkout
# yamllint disable-line rule:line-length
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

- name: Setup just
# yamllint disable-line rule:line-length
uses: extractions/setup-just@dd310ad5a97d8e7b41793f8ef055398d51ad4de6 # v2.0.0
with:
# renovate: datasource=crate depName=just
just-version: 1.25.2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Install Python
# yamllint disable-line rule:line-length
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
with:
# renovate: datasource=docker depName=python versioning=docker
python-version: 3.12.2
cache: pip

- name: Update apt
run: sudo apt update

- name: Install test dependencies
run: sudo apt install vagrant virtualbox

- name: Install dependencies
run: just install-dependencies

- name: Stop Glances
run: kill ${{ steps.start-glances.outputs.pid }}
Expand Down

0 comments on commit 6145520

Please sign in to comment.