Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Libretro
melonDS
Commits
026d0dca
Unverified
Commit
026d0dca
authored
Jul 27, 2020
by
Arisotura
Committed by
GitHub
Jul 27, 2020
Browse files
Merge pull request #683 from nadiaholmquist/fix/aarch64-ci
Fix aarch64 CI
parents
dff14ca8
40a9f41b
Changes
1
Hide whitespace changes
Inline
Side-by-side
.github/workflows/build-ubuntu-aarch64.yml
View file @
026d0dca
...
...
@@ -17,16 +17,22 @@ jobs:
steps
:
-
uses
:
actions/checkout@v1
-
name
:
Upgrade system
shell
:
bash
working-directory
:
${{runner.workspace}}
run
:
|
sudo apt update
sudo apt full-upgrade
-
name
:
Install dependencies
shell
:
bash
working-directory
:
${{runner.workspace}}
run
:
|
sudo dpkg --add-architecture arm64
\
&&
sudo sh -c "sed \"s|^deb \([a-z\.:/]*\) \([a-z\-]*\) \(.*\)$|deb [arch=amd64] \1 \2 \3\ndeb [arch=arm64] http://ports.ubuntu.com/ubuntu-ports \2 \3|\" /etc/apt/sources.list > /etc/apt/sources.list.new"
\
&&
sudo rm /etc/apt/sources.list
\
&&
sudo mv /etc/apt/sources.list{.new,}
\
&&
sudo apt
-get
update
\
&&
sudo apt
-get
install {gcc-10,g++-10,pkg-config}-aarch64-linux-gnu libsdl2-dev:arm64 qtbase5-dev:arm64 libslirp-dev:arm64
sudo dpkg --add-architecture arm64
sudo sh -c "sed \"s|^deb \([a-z\.:/]*\) \([a-z\-]*\) \(.*\)$|deb [arch=amd64] \1 \2 \3\ndeb [arch=arm64] http://ports.ubuntu.com/ubuntu-ports \2 \3|\" /etc/apt/sources.list > /etc/apt/sources.list.new"
sudo rm /etc/apt/sources.list
sudo mv /etc/apt/sources.list{.new,}
sudo apt update
sudo apt install {gcc-10,g++-10,pkg-config}-aarch64-linux-gnu libsdl2-dev:arm64 qtbase5-dev:arm64 libslirp-dev:arm64
-
name
:
Create build environment
run
:
mkdir ${{runner.workspace}}/build
-
name
:
Configure
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment