Skip to content

Commit

Permalink
CI - Change --disable-asm info text to "no asm"
Browse files Browse the repository at this point in the history
* Also name runs using `github.sha` rather than
  `github.event.head_commit_message` as this is defined for more event
types
  • Loading branch information
frankplow committed Apr 16, 2023
1 parent cd2870a commit 578f1a6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: test
run-name: ${{ github.workflow }} - "${{ github.event.head_commit.message }}"
run-name: ${{ github.workflow }} - ${{ github.sha }}
on:
push:
branches: [ main ]
Expand All @@ -25,7 +25,7 @@ jobs:
- { name: clang, flags: --cc=clang }
- { name: msvc, flags: --toolchain=msvc }
assembler:
- { name: none, flags: --disable-asm }
- { name: no asm, flags: --disable-asm }
- { name: yasm, flags: --as=yasm }
- { name: nasm, flags: --as=nasm }
exclude:
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
diffutils
- name: Get assembler
if: ${{ matrix.os.shell == 'msys2 {0}' && matrix.assembler.name != 'none' }}
if: ${{ matrix.os.shell == 'msys2 {0}' && matrix.assembler.name != 'no asm' }}
run: pacman --noconfirm -S ${{ matrix.assembler.name }}

- name: Get source
Expand Down

0 comments on commit 578f1a6

Please sign in to comment.