From: Chase <44284917+TotallyNotChase@users.noreply.github.com> Date: Sun, 4 Oct 2020 17:42:22 +0000 (+0800) Subject: :wrench: Remove gwion-action from linux/macos/windows workflows X-Git-Tag: nightly~1244^2^2~8 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=d8e33cdf6759dc01f4ebd9364d38572eed4364f2;p=gwion.git :wrench: Remove gwion-action from linux/macos/windows workflows --- 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