Skip to content

Commit

Permalink
Merge branch 'develop' into release-0.6.8
Browse files Browse the repository at this point in the history
# Conflicts:
#	.github/workflows/test.yaml
  • Loading branch information
rturrado committed Oct 16, 2024
2 parents 9e39645 + b487a0a commit 8cb66ee
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 11 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ jobs:
needs: cpp-linters
runs-on: [self-hosted, ARM64, Linux]
container: python:3.11
# Run only on master (until we have a GitHub-hosted runner for Linux/ARM64)
if: github.ref == 'refs/heads/master'
# Run only when merging to develop (until we have a GitHub-hosted runner for Linux/ARM64)
if: github.ref == 'refs/heads/develop'
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -322,6 +322,15 @@ jobs:
${{
contains(needs.*.result, 'failure')
|| contains(needs.*.result, 'cancelled')
|| contains(needs.*.result, 'skipped')
|| (
github.ref != 'refs/heads/develop'
&& contains(needs.*.result, 'skipped')
&& !contains(needs.cpp-linux-arm64.result, 'skipped')
)
||
(
github.ref == 'refs/heads/develop'
&& contains(needs.*.result, 'skipped')
)
}}
run: exit 1
16 changes: 8 additions & 8 deletions src/v3x/instruction_set.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ InstructionSet::InstructionSet()
{ "CR", { 'f', "QV" } },
{ "CR", { 'f', "VQ" } },
{ "CR", { 'f', "VV" } },
{ "CRk", { std::nullopt, "QQ" } },
{ "CRk", { std::nullopt, "QV" } },
{ "CRk", { std::nullopt, "VQ" } },
{ "CRk", { std::nullopt, "VV" } },
{ "CZ", { 'i', "QQ" } },
{ "CZ", { 'i', "QV" } },
{ "CZ", { 'i', "VQ" } },
{ "CZ", { 'i', "VV" } },
{ "CRk", { 'i', "QQ" } },
{ "CRk", { 'i', "QV" } },
{ "CRk", { 'i', "VQ" } },
{ "CRk", { 'i', "VV" } },
{ "CZ", { std::nullopt, "QQ" } },
{ "CZ", { std::nullopt, "QV" } },
{ "CZ", { std::nullopt, "VQ" } },
{ "CZ", { std::nullopt, "VV" } },
{ "H", { std::nullopt, "Q" } },
{ "H", { std::nullopt, "V" } },
{ "I", { std::nullopt, "Q" } },
Expand Down

0 comments on commit 8cb66ee

Please sign in to comment.