From d8e33cdf6759dc01f4ebd9364d38572eed4364f2 Mon Sep 17 00:00:00 2001 From: Chase <44284917+TotallyNotChase@users.noreply.github.com> Date: Mon, 5 Oct 2020 01:42:22 +0800 Subject: [PATCH] :wrench: Remove gwion-action from linux/macos/windows workflows --- .github/workflows/linux.yml | 16 +++++++++++----- .github/workflows/macos.yml | 18 ++++++++++++------ .github/workflows/windows.yml | 21 +++++++++++++-------- 3 files changed, 36 insertions(+), 19 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 25c37960..abccc770 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -17,12 +17,18 @@ jobs: double: [0, 1] steps: - - name: Build Gwion - uses: fennecdjay/gwion-action@v1 - with: - ref: ${{ github.sha }} - run: true + - name Checkout + uses: actions/checkout@v2 + + - name: Init submodules + run: git submodule update --init util ast + + - name: Build + run: make env: CC: ${{ matrix.cc }} USE_DOUBLE: ${{ matrix.double }} USE_DEBUG: 1 + + - name: Test + run: make test diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 1be69714..bc69fcb3 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -17,12 +17,18 @@ jobs: double: [0, 1] steps: - - name: Build Gwion - uses: fennecdjay/gwion-action@v1 - with: - ref: ${{ github.sha }} - run: true + - name Checkout + uses: actions/checkout@v2 + + - name: Init submodules + run: git submodule update --init util ast + + - name: Build + run: make env: CC: ${{ matrix.cc }} + USE_DOUBLE: ${{ matrix.double }} USE_DEBUG: 1 - USE_DOUBLE: 1 + + - name: Test + run: make test diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index fe451bda..875c76a4 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -16,13 +16,18 @@ jobs: double: [0, 1] steps: - - name: Build Gwion - uses: fennecdjay/gwion-action@v1 - with: - dir: . - ref: ${{ github.sha }} - run: true + - name Checkout + uses: actions/checkout@v2 + + - name: Init submodules + run: git submodule update --init util ast + + - name: Build + run: make env: - CC: gcc + CC: ${{ matrix.cc }} USE_DOUBLE: ${{ matrix.double }} - BUILD_ON_WINDOWS: 1 + USE_DEBUG: 1 + + - name: Test + run: make test -- 2.43.0