diff options
| author | 2024-04-21 16:04:38 +0100 | |
|---|---|---|
| committer | 2024-04-21 16:04:38 +0100 | |
| commit | 1ab6ecba6f509b7b76865d65c77ecebc51efd2d3 (patch) | |
| tree | a9b92e15769d483560d5799569b14c985b9c3ea5 /.github/workflows | |
| download | sentrum-1ab6ecba6f509b7b76865d65c77ecebc51efd2d3.tar.gz sentrum-1ab6ecba6f509b7b76865d65c77ecebc51efd2d3.tar.bz2 sentrum-1ab6ecba6f509b7b76865d65c77ecebc51efd2d3.zip | |
Initial commitv0.1.0
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/build.yml | 37 | ||||
| -rw-r--r-- | .github/workflows/ci.yml | 22 | ||||
| -rw-r--r-- | .github/workflows/deps.yml | 11 | 
3 files changed, 70 insertions, 0 deletions
| diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..02c9567 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,37 @@ +name: build every tag +on: +  push: +    tags: +      - '*' +jobs: +  build: +    strategy: +      fail-fast: false +      matrix: +        os: +          - ubuntu-latest +          - macos-latest +          - windows-latest +    runs-on: ${{ matrix.os }} +    steps: +      - uses: actions/checkout@v3 +      - uses: dtolnay/rust-toolchain@master +        with: +          toolchain: stable +      - uses: Swatinem/rust-cache@v2 +      - run: cargo build --release +      - if: matrix.os == 'windows-latest' +        uses: actions/upload-artifact@v3 +        with: +          path: target/release/sentrum.exe +          name: sentrum.exe +      - if: matrix.os == 'ubuntu-latest' +        uses: actions/upload-artifact@v3 +        with: +          path: target/release/sentrum* +          name: sentrum_linux +      - if: matrix.os == 'macos-latest' +        uses: actions/upload-artifact@v3 +        with: +          path: target/release/sentrum* +          name: sentrum_macos diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..d51f1af --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,22 @@ +name: Rust + +on: +  push: +    branches: [ $default-branch ] +  pull_request: +    branches: [ $default-branch ] + +env: +  CARGO_TERM_COLOR: always + +jobs: +  build: + +    runs-on: ubuntu-latest + +    steps: +    - uses: actions/checkout@v3 +    - name: Build +      run: cargo build --verbose +    - name: Run tests +      run: cargo test --verbose diff --git a/.github/workflows/deps.yml b/.github/workflows/deps.yml new file mode 100644 index 0000000..828fffa --- /dev/null +++ b/.github/workflows/deps.yml @@ -0,0 +1,11 @@ +jobs: +  latest_deps: +    name: Latest Dependencies +    runs-on: ubuntu-latest +    continue-on-error: true +    steps: +      - uses: actions/checkout@v3 +      - run: rustup update stable && rustup default stable +      - run: cargo update --verbose +      - run: cargo build --verbose +      - run: cargo test --verbose | 
