diff options
author | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-10-18 00:27:22 +1100 |
---|---|---|
committer | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-10-18 00:27:22 +1100 |
commit | 5a5d2ee4dd757ec7a5fadb75ac629a5e628bb831 (patch) | |
tree | af481de6c1dadfcfaa15538118b54daa0f82afbe | |
parent | 67ce60faf9876d6c6f28f53514e7a45395d327e3 (diff) |
remove xmake dep
-rw-r--r-- | .github/workflows/continuous-workflow.yml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/.github/workflows/continuous-workflow.yml b/.github/workflows/continuous-workflow.yml index 1b5c8ce..f8bfa86 100644 --- a/.github/workflows/continuous-workflow.yml +++ b/.github/workflows/continuous-workflow.yml @@ -5,11 +5,10 @@ jobs: Compile-and-Test: runs-on: ubuntu-latest steps: - - name: Install system dependencies, xmake, etc + - name: Install system dependencies, make, etc run: | - sudo add-apt-repository ppa:xmake-io/xmake sudo apt update - sudo apt install -y xmake xorg-dev libglu1-mesa-dev clang-format + sudo apt install -y xorg-dev libglu1-mesa-dev clang-format make - name: Check out repository code uses: actions/checkout@v4 - name: List files in the repository |