Skip to content
This repository has been archived by the owner on Dec 17, 2024. It is now read-only.

Commit

Permalink
Merge pull request #4 from hilldani/main
Browse files Browse the repository at this point in the history
docker already installed
  • Loading branch information
hilldani authored Mar 1, 2023
2 parents 6452697 + ab35ad4 commit 70bb80e
Showing 1 changed file with 21 additions and 5 deletions.
26 changes: 21 additions & 5 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt update
sudo apt install -y docker.io
- name: Build builder image
run: |
builder/build_docker_image
Expand All @@ -21,4 +17,24 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: svr-info
path: dist/
path: dist/svr-info*.tgz

test:
needs: [build]
runs-on: ubuntu-latest
steps:
- name: download svr-info
uses: actions/download-artifact@v3
with:
name: svr-info
- name: run test
run: |
tar -xf svr-info*
cd svr-info
./svr-info -benchmark all -profile all -analyze all -format all -megadata
- name: upload report
if: ${{ always() }}
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.runner }} report
path: svr-info/svr-info*/

0 comments on commit 70bb80e

Please sign in to comment.