-
Notifications
You must be signed in to change notification settings - Fork 357
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Testing - Limit for MacOS on GH #149
Limit MacOS for testing only "caf basic" to view only DRAW status. Simplify cmake install operation for each job
- Loading branch information
Showing
1 changed file
with
8 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -77,12 +77,7 @@ jobs: | |
- name: Build OCCT | ||
run: | | ||
cd build | ||
cmake --build . --config Release -- /m | ||
- name: Install OCCT | ||
run: | | ||
cd build | ||
cmake --install . --config Release | ||
cmake --build . --target install --config Release | ||
- name: Upload install directory | ||
uses: actions/[email protected] | ||
|
@@ -152,12 +147,7 @@ jobs: | |
- name: Build OCCT | ||
run: | | ||
cd build | ||
cmake --build . --config Release | ||
- name: Install OCCT | ||
run: | | ||
cd build | ||
cmake --install . --config Release | ||
cmake --build . --target install --config Release | ||
- name: Upload install directory | ||
uses: actions/[email protected] | ||
|
@@ -208,12 +198,7 @@ jobs: | |
- name: Build OCCT | ||
run: | | ||
cd build | ||
make -j$(sysctl -n hw.logicalcpu) | ||
- name: Install OCCT | ||
run: | | ||
cd build | ||
make install | ||
make install -j$(sysctl -n hw.logicalcpu) | ||
- name: Upload install directory | ||
uses: actions/[email protected] | ||
|
@@ -264,12 +249,7 @@ jobs: | |
- name: Build OCCT | ||
run: | | ||
cd build | ||
make -j$(sysctl -n hw.logicalcpu) | ||
- name: Install OCCT | ||
run: | | ||
cd build | ||
make install | ||
make install -j$(sysctl -n hw.logicalcpu) | ||
- name: Upload install directory | ||
uses: actions/[email protected] | ||
|
@@ -323,12 +303,7 @@ jobs: | |
- name: Build OCCT | ||
run: | | ||
cd build | ||
make -j"$(nproc)" | ||
- name: Install OCCT | ||
run: | | ||
cd build | ||
make install | ||
cmake --build . --target install --config Release -- -j | ||
- name: Upload install directory | ||
uses: actions/[email protected] | ||
|
@@ -382,12 +357,7 @@ jobs: | |
- name: Build OCCT | ||
run: | | ||
cd build | ||
make -j"$(nproc)" | ||
- name: Install OCCT | ||
run: | | ||
cd build | ||
make install | ||
cmake --build . --target install --config Release -- -j | ||
- name: Upload install directory | ||
uses: actions/[email protected] | ||
|
@@ -564,7 +534,7 @@ jobs: | |
cd install | ||
cd bin | ||
source env.sh | ||
./DRAWEXE -v -c testgrid | ||
./DRAWEXE -v -c testgrid caf basic | ||
shell: bash | ||
env: | ||
LIBGL_ALWAYS_SOFTWARE: 1 | ||
|
@@ -619,7 +589,7 @@ jobs: | |
cd install | ||
cd bin | ||
source env.sh | ||
./DRAWEXE -v -c testgrid | ||
./DRAWEXE -v -c testgrid caf basic | ||
shell: bash | ||
env: | ||
LIBGL_ALWAYS_SOFTWARE: 1 | ||
|