Skip to content

Commit

Permalink
[ci] update ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Clo91eaf committed May 10, 2024
1 parent 1aa8e70 commit 6613e60
Showing 1 changed file with 23 additions and 7 deletions.
30 changes: 23 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,51 +1,67 @@
name: test
on: push
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
am-test:
name: am-test
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@master
uses: actions/checkout@v2
with:
submodule: true
- name: test
run: cargo test --test am-tests
riscv-test-rv64ui:
name: riscv-test-rv64ui
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@master
uses: actions/checkout@v2
with:
submodule: true
- name: test
run: cargo test --test riscv-tests-rv64ui
riscv-test-rv64mi:
name: riscv-test-rv64mi
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@master
uses: actions/checkout@v2
with:
submodule: true
- name: test
run: cargo test --test riscv-tests-rv64mi
riscv-test-rv64si:
name: riscv-test-rv64si
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@master
uses: actions/checkout@v2
with:
submodule: true
- name: test
run: cargo test --test riscv-tests-rv64si
riscv-test-rv64um:
name: riscv-test-rv64um
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@master
uses: actions/checkout@v2
with:
submodule: true
- name: test
run: cargo test --test riscv-tests-rv64um
riscv-test-rv64ua:
name: riscv-test-rv64ua
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@master
uses: actions/checkout@v2
with:
submodule: true
- name: test
run: cargo test --test riscv-tests-rv64ua

0 comments on commit 6613e60

Please sign in to comment.