Skip to content

Commit

Permalink
Cross-compilation on GitHub Actions Round 3
Browse files Browse the repository at this point in the history
  • Loading branch information
Dadoum committed Jul 30, 2023
1 parent 1af504c commit 0aae3e0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/cmake-cross-compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ jobs:
steps:
- name: Install dependencies
run: |
cat << EOF | sudo tee /etc/apt/sources.list.d/gdc-backports.list
deb http://ppa.launchpad.net/ubuntu-toolchain-r/ppa/ubuntu jammy main
deb-src http://ppa.launchpad.net/ubuntu-toolchain-r/ppa/ubuntu jammy main
EOF
apt-get update
apt-get install -y git gdc-13-aarch64-linux-gnu dub libz-dev
Expand Down Expand Up @@ -44,6 +48,10 @@ jobs:
steps:
- name: Install dependencies
run: |
cat << EOF | sudo tee /etc/apt/sources.list.d/gdc-backports.list
deb http://ppa.launchpad.net/ubuntu-toolchain-r/ppa/ubuntu jammy main
deb-src http://ppa.launchpad.net/ubuntu-toolchain-r/ppa/ubuntu jammy main
EOF
apt-get update
apt-get install -y git gdc-13-arm-linux-gnueabihf dub libz-dev
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ jobs:
steps:
- name: Install dependencies
run: |
cat << EOF | sudo tee /etc/apt/sources.list.d/gdc-backports.list
deb http://ppa.launchpad.net/ubuntu-toolchain-r/ppa/ubuntu jammy main
deb-src http://ppa.launchpad.net/ubuntu-toolchain-r/ppa/ubuntu jammy main
EOF
apt-get update
apt-get install -y git gdc-13-i686-linux-gnu dub libz-dev
Expand Down

0 comments on commit 0aae3e0

Please sign in to comment.