From 379b8097aafa025ec3995c6302e016e1d8b0f9c3 Mon Sep 17 00:00:00 2001 From: Paul Koch Date: Wed, 24 Jul 2024 14:37:04 -0700 Subject: [PATCH] ff --- .github/workflows/ci.yml | 43 +++++++++++++++++++++++++--------------- 1 file changed, 27 insertions(+), 16 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f69602100..83e9f1c12 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,21 +19,32 @@ env: windows_test: windows-latest jobs: - bld: - strategy: - matrix: - include: - - name: linux_release_64 - image: ${{ env.ubuntu_bld }} - asm: "-asm" - options: "-release_64" - artifact_name: "libebm_ubuntu_release_64" - - name: linux_debug_64 - image: ${{ env.ubuntu_bld }} - asm: "" - options: "-debug_64" - artifact_name: "libebm_ubuntu_debug_64" - runs-on: ${{ matrix.image }} + hello-world: + runs-on: ubuntu-latest steps: - - name: Check out repository + - name: Checkout repository uses: actions/checkout@v2 + - name: Hello World + run: echo "Hello, World!" + + + +# jobs: +# bld: +# strategy: +# matrix: +# include: +# - name: linux_release_64 +# image: ${{ env.ubuntu_bld }} +# asm: "-asm" +# options: "-release_64" +# artifact_name: "libebm_ubuntu_release_64" +# - name: linux_debug_64 +# image: ${{ env.ubuntu_bld }} +# asm: "" +# options: "-debug_64" +# artifact_name: "libebm_ubuntu_debug_64" +# runs-on: ${{ matrix.image }} +# steps: +# - name: Check out repository +# uses: actions/checkout@v2