From 6ab2f1b89c52f419e4ecb587ebb3c34d8e31e299 Mon Sep 17 00:00:00 2001 From: the Date: Wed, 15 Mar 2023 01:26:02 +0800 Subject: [PATCH] [Build] replace travis ci with github action --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2bbcb33..36a6611 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,13 +9,13 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - run: sudo apt-get update && apt-get install -y libnuma-dev linux-headers-$(uname -r) python3-pip + - uses: actions/checkout@v2 + - run: sudo apt-get update && sudo apt-get install -y libnuma-dev linux-headers-$(uname -r) python3-pip - run: sudo pip3 install setuptools meson ninja pyelftools - - run: ./boot.sh + - run: ${{ github.workspace }}/boot.sh test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - run: sudo apt-get update && apt-get install -y libnuma-dev linux-headers-$(uname -r) python3-pip + - uses: actions/checkout@v2 + - run: sudo apt-get update && sudo apt-get install -y libnuma-dev linux-headers-$(uname -r) python3-pip - run: sudo pip3 install setuptools meson ninja pyelftools \ No newline at end of file