Skip to content

Commit

Permalink
remove some commented out components
Browse files Browse the repository at this point in the history
  • Loading branch information
PastaPastaPasta committed Aug 7, 2024
1 parent 8c025cf commit 2f94e2b
Showing 1 changed file with 1 addition and 22 deletions.
23 changes: 1 addition & 22 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,6 @@ jobs:
include:
- build_target: arm-linux
host: arm-linux-gnueabihf
# - x86_64-w64-mingw32
# - x86_64-pc-linux-gnu
container:
image: ghcr.io/${{ needs.build-image.outputs.repo-name }}/dashcore-ci-runner:${{ needs.build-image.outputs.image-tag }}
options: --user root
Expand All @@ -88,14 +86,6 @@ jobs:
- name: Build dependencies
run: make -j$(nproc) -C depends HOST=${{ matrix.host }}

# Super slow, let's skip for now
# - name: Upload build artifacts
# uses: actions/upload-artifact@v2
# with:
# name: depends
# path: |
# depends/${{ matrix.host }}
# depends/SDKs
build:
name: Build
needs: [build-image, build-depends]
Expand All @@ -105,8 +95,6 @@ jobs:
include:
- build_target: arm-linux
host: arm-linux-gnueabihf
# - build_target: win64
# - build_target: linux64
dep_opts: DEBUG=1
container:
image: ghcr.io/${{ needs.build-image.outputs.repo-name }}/dashcore-ci-runner:${{ needs.build-image.outputs.image-tag }}
Expand All @@ -115,12 +103,6 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

# - name: Download build artifacts
# uses: actions/download-artifact@v2
# with:
# name: depends
# path: ${{ format('depends/{0}', matrix.host) }}

- name: Restore Cache dependencies
uses: actions/cache/restore@v4
with:
Expand All @@ -134,6 +116,7 @@ jobs:
${{ runner.os }}-depends-${{ matrix.host }}-${{ github.sha }}
${{ runner.os }}-depends-${{ matrix.host }}
${{ runner.os }}-depends
- name: CCache
uses: actions/cache@v4
with:
Expand All @@ -145,10 +128,6 @@ jobs:
${{ runner.os }}-${{ matrix.host }}
${{ runner.os }}
# - name: Build dependencies
# run: make -j$(nproc) -C depends HOST=${{ matrix.host }}


- name: Build source and run tests
run: |
git config --global --add safe.directory "$PWD"
Expand Down

0 comments on commit 2f94e2b

Please sign in to comment.