Skip to content

Commit

Permalink
Moved cxxopts into its own dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
EPICGameGuy committed Nov 22, 2023
1 parent 49f44f5 commit caaebb0
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/checkout@v3
- name: Get dependencies
run: |
apk add build-base git cmake xorriso cxxopts-dev
apk add build-base git cmake xorriso
- name: Install ps2stuff
run: |
Expand All @@ -36,6 +36,15 @@ jobs:
cmake ..
make clean all install -j$(getconf _NPROCESSORS_ONLN)
- name: Install cxxopts
run: |
git clone https://github.com/jarro2783/cxxopts.git dependencies/cxxopts
cd dependencies/cxxopts
mkdir -p build
cd build
cmake ..
make clean all install -j$(getconf _NPROCESSORS_ONLN)
- name: Compile egg-library
run: |
cd dependencies/egg-library
Expand Down

0 comments on commit caaebb0

Please sign in to comment.