Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dav1dde committed Mar 15, 2024
1 parent 95e48b3 commit dc924ee
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 23 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ jobs:
timeout-minutes: 30
strategy:
matrix:
target: [aarch64-unknown-linux-gnu, x86_64-unknown-linux-gnu]
target: [aarch64-unknown-linux-gnu]

name: Build Docker Image
runs-on: ubuntu-latest
Expand All @@ -193,13 +193,17 @@ jobs:
with:
submodules: recursive
- uses: dtolnay/rust-toolchain@stable
target: ["${{ matrix.target }}"]
with:
targets: "${{ matrix.target }}"
- uses: swatinem/rust-cache@v2
with:
key: ${{ github.job }}-${{ matrix.arch }}
- name: Get Cross
run: cargo install cross
- name: Compile
run: |
cargo build --all-features --release --target "${{ matrix.target }}"
export PATH="/home/runner/.cargo/bin/:$PATH"
cross build --all-features --release --target "${{ matrix.target }}"
# build:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: Deploy

on:
push:
branches:
- master

# Run actions on PRs, but only deploy on master
pull_request:
# push:
# branches:
# - master
#
# # Run actions on PRs, but only deploy on master
# pull_request:

env:
CARGO_TERM_COLOR: always
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/enforce-license-compliance.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name: Enforce License Compliance

on:
push:
branches:
- master
- release/**
- release-library/**

pull_request:
branches: [master]
# push:
# branches:
# - master
# - release/**
# - release-library/**
#
# pull_request:
# branches: [master]

jobs:
enforce-license-compliance:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/validate-pipelines.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: Validate Deployment Pipelines

on:
push:
branches:
- master
- test/pipeline-*

pull_request:
# push:
# branches:
# - master
# - test/pipeline-*
#
# pull_request:

jobs:
files-changed:
Expand Down

0 comments on commit dc924ee

Please sign in to comment.