Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ jobs:
- name: Release Build
shell: bash
run: |
# required by aarch64 build
apt update && apt install -y gcc-aarch64-linux-gnu

echo "Build command : ./scripts/build.sh --build --release"
./scripts/build.sh --build --release --package \
--target x86_64-linux-gnu,aarch64-linux-gnu, \
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/metrics.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ jobs:
container: ghcr.io/plc-lang/rust-llvm:latest

steps:
- name: Install git
run: apt-get update && apt-get install -y git

- uses: actions/checkout@v3

- name: Update git permissions
Expand Down
Loading