Skip to content

Commit

Permalink
dropme
Browse files Browse the repository at this point in the history
Signed-off-by: Roberto Scolaro <[email protected]>
  • Loading branch information
therealbobo committed Oct 27, 2023
1 parent c53c0a4 commit ff92fa8
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,32 +16,32 @@ jobs:
fetch-version:
uses: ./.github/workflows/reusable_fetch_version.yaml

build-dev-packages:
needs: [fetch-version]
uses: ./.github/workflows/reusable_build_packages.yaml
with:
arch: x86_64
version: ${{ needs.fetch-version.outputs.version }}
#build-dev-packages:
# needs: [fetch-version]
# uses: ./.github/workflows/reusable_build_packages.yaml
# with:
# arch: x86_64
# version: ${{ needs.fetch-version.outputs.version }}

test-dev-packages:
needs: [fetch-version, build-dev-packages]
uses: ./.github/workflows/reusable_test_packages.yaml
strategy:
fail-fast: false
matrix:
static: ["static", ""]
with:
arch: x86_64
static: ${{ matrix.static != '' && true || false }}
version: ${{ needs.fetch-version.outputs.version }}
#test-dev-packages:
# needs: [fetch-version, build-dev-packages]
# uses: ./.github/workflows/reusable_test_packages.yaml
# strategy:
# fail-fast: false
# matrix:
# static: ["static", ""]
# with:
# arch: x86_64
# static: ${{ matrix.static != '' && true || false }}
# version: ${{ needs.fetch-version.outputs.version }}

build-dev-minimal:
uses: ./.github/workflows/reusable_build_dev.yaml
with:
arch: x86_64
git_ref: ${{ github.event.pull_request.head.sha }}
minimal: true
build_type: Debug
#build-dev-minimal:
# uses: ./.github/workflows/reusable_build_dev.yaml
# with:
# arch: x86_64
# git_ref: ${{ github.event.pull_request.head.sha }}
# minimal: true
# build_type: Debug

# builds using system deps, checking out the PR's code
# note: this also runs a command that generates an output of form: "<engine_version> <some_hash>",
Expand Down

0 comments on commit ff92fa8

Please sign in to comment.