Skip to content

Commit

Permalink
Merge pull request #603 from ut-issl/develop
Browse files Browse the repository at this point in the history
Update main (v3.9.0) on 2023-06-02
  • Loading branch information
meltingrabbit authored Jun 3, 2023
2 parents 89d289a + bf801d1 commit 1b5de00
Show file tree
Hide file tree
Showing 150 changed files with 5,884 additions and 2,872 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,11 @@ on:
jobs:
minimum_user:
name: minimum user
uses: arkedge/workflows-c2a/.github/workflows/c2a-build.yml@v1.0.0
uses: arkedge/workflows-c2a/.github/workflows/build.yml@v2.1.0
with:
c2a_dir: Examples/minimum_user
c2a_custom_setup: |
cd $GITHUB_WORKSPACE
ls -l
cd ./repo
cd ../..
pwd
ls -l
if [ $RUNNER_OS = 'Windows' ]; then
Expand All @@ -27,13 +25,11 @@ jobs:
second_obc_user:
name: 2nd obc user
uses: arkedge/workflows-c2a/.github/workflows/c2a-build.yml@v1.0.0
uses: arkedge/workflows-c2a/.github/workflows/build.yml@v2.1.0
with:
c2a_dir: Examples/2nd_obc_user
c2a_custom_setup: |
cd $GITHUB_WORKSPACE
ls -l
cd ./repo
cd ../..
pwd
ls -l
if [ $RUNNER_OS = 'Windows' ]; then
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_with_s2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
pull_request:

env:
S2E_CORE_VERSION: v5.0.0
S2E_CORE_VERSION: v6.0.0

jobs:
build_s2e_win:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/check_coding_rule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ jobs:
python ./src_core/Script/CI/check_coding_rule.py ./src_core/Script/CI/check_coding_rule.json | tee /tmp/coding-rule.log
status="${PIPESTATUS[0]}"
echo "status: ${status}"
echo "::set-output name=status::${status}"
echo "status=${status}" >> "$GITHUB_OUTPUT"
exit "${status}"
- name: install reviewdog
uses: reviewdog/action-setup@v1.0.3
uses: reviewdog/action-setup@v1.0.4

- name: fix error log source file path
run: |
Expand Down
36 changes: 36 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Rust

on:
push:
branches:
- main
tags:
- v*
pull_request:

env:
CARGO_INCREMENTAL: 0

jobs:
rust:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- uses: dtolnay/rust-toolchain@v1
with:
toolchain: stable
components: clippy, rustfmt

- name: cache dependencies
uses: Swatinem/rust-cache@v2.4.0

- name: reviewdog / clippy
uses: sksat/action-clippy@v0.2.1
with:
reporter: ${{ github.event_name == 'pull_request' && 'github-pr-review' || 'github-check' }}
clippy_flags: --all-features

- name: unit test
run: cargo test
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -63,3 +63,7 @@ Examples/minimum_user/build
Examples/2nd_obc_user/src/src_core
Examples/2nd_obc_user/build
*.pyc

# Added by cargo
/target
/Cargo.lock
Loading

0 comments on commit 1b5de00

Please sign in to comment.