Skip to content

Commit

Permalink
ff
Browse files Browse the repository at this point in the history
  • Loading branch information
paulbkoch committed Jul 24, 2024
1 parent 2ba1c38 commit 379b809
Showing 1 changed file with 27 additions and 16 deletions.
43 changes: 27 additions & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 379b809

Please sign in to comment.