Skip to content

Commit

Permalink
CI: Fix arch -arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
smoe committed May 3, 2024
1 parent 3db3e6d commit 918e5cc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,10 @@ jobs:
- name: Install Dependencies
run: |
if [ "${{ matrix.os }}" = "macos-latest" ]; then
#brew update
brew install autoconf-archive autoconf automake libtool m4
brew install wxwidgets tinyxml zstd libpng sqlite
brew install dylibbundler pkg-config
brew install googletest
arch -arm64 brew install autoconf-archive autoconf automake libtool m4
arch -arm64 brew install wxwidgets tinyxml zstd libpng sqlite
arch -arm64 brew install dylibbundler pkg-config
arch -arm64 brew install googletest
elif [ "${{ matrix.os }}" = "ubuntu-latest" ]; then
sudo apt-get update
sudo apt-get install autoconf-archive
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ jobs:
# queries: security-extended,security-and-quality
- name: Install Dependencies
run: |
arch
#if [ "${{ matrix.os }}" = "macos-latest" ]; then
#brew update # seems to make problems
brew install autoconf-archive autoconf automake libtool m4
brew install wxwidgets tinyxml zstd libpng sqlite
brew install dylibbundler pkg-config
brew install googletest
arch -x86_64 brew install autoconf-archive autoconf automake libtool m4
arch -x86_64 brew install wxwidgets tinyxml zstd libpng sqlite
arch -x86_64 brew install dylibbundler pkg-config
arch -x86_64 brew install googletest
#elif [ "${{ matrix.os }}" = "ubuntu-latest" ]; then
# sudo apt-get update
# sudo apt install libwxgtk3.2-dev || sudo apt install wx3.2-headers || sudo apt install libwxgtk3.0-gtk3-dev || sudo apt install libwxgtk3.0-dev
Expand Down

0 comments on commit 918e5cc

Please sign in to comment.