generated from ut-issl/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #518 from ut-issl/feature/use-arkedge-build-ci-wor…
…kflow Use arkedge/workflows-c2a/c2a-build.yml for Build CI
- Loading branch information
Showing
3 changed files
with
43 additions
and
207 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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: Build | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- develop | ||
pull_request: | ||
|
||
jobs: | ||
minimum_user: | ||
name: minimum user | ||
uses: arkedge/workflows-c2a/.github/workflows/[email protected] | ||
with: | ||
c2a_dir: Examples/minimum_user | ||
c2a_custom_setup: | | ||
cd $GITHUB_WORKSPACE | ||
ls -l | ||
cd ./repo | ||
pwd | ||
ls -l | ||
if [ $RUNNER_OS = 'Windows' ]; then | ||
cmd "/C setup.bat" | ||
else | ||
./setup.sh | ||
fi | ||
second_obc_user: | ||
name: 2nd obc user | ||
uses: arkedge/workflows-c2a/.github/workflows/[email protected] | ||
with: | ||
c2a_dir: Examples/2nd_obc_user | ||
c2a_custom_setup: | | ||
cd $GITHUB_WORKSPACE | ||
ls -l | ||
cd ./repo | ||
pwd | ||
ls -l | ||
if [ $RUNNER_OS = 'Windows' ]; then | ||
cmd "/C setup.bat" | ||
else | ||
./setup.sh | ||
fi |
This file was deleted.
Oops, something went wrong.
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