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