Updated #6
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Performance Testing | |
on: | |
push: | |
branches: | |
- main | |
- vibhansa/perftestrunner | |
permissions: | |
issues: write | |
pull-requests: write | |
jobs: | |
PerfTesting: | |
runs-on: [self-hosted, 1ES.Pool=blobfuse2-github-pool] | |
timeout-minutes: 360 | |
steps: | |
- name: 'Host info' | |
run: hostnamectl | |
- name: "Install Dependencies" | |
run: | | |
sudo apt update | |
sudo apt-get install fuse3 libfuse3-dev gcc -y | |
- name: 'Checkout Main' | |
uses: actions/[email protected] | |
- name: "Install Go" | |
run: | | |
./go_installer.sh ../ | |
go version | |
working-directory: ${{ github.workspace }} | |
- name: "Build Blobfuse2" | |
run: | | |
./build.sh | |
working-directory: ${{ github.workspace }} | |
- name: "Validate Version" | |
run: | | |
./blobfuse2 --version | |
working-directory: ${{ github.workspace }} | |