-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
98 changed files
with
4,802 additions
and
1,193 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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
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,26 @@ | ||
name: Mirror to EBRAINS | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
|
||
jobs: | ||
sync_to_ebrains: | ||
runs-on: ubuntu-latest | ||
if: ${{ github.repository_owner == 'NeuralEnsemble' }} | ||
steps: | ||
- name: syncmaster | ||
uses: wei/git-sync@55c6b63b4f21607da0e9877ca9b4d11a29fc6d83 # corresponds to v3 | ||
with: | ||
source_repo: "NeuralEnsemble/elephant" | ||
source_branch: "master" | ||
destination_repo: "https://ghpusher:${{ secrets.EBRAINS_GITLAB_ACCESS_TOKEN }}@gitlab.ebrains.eu/neuralensemble/elephant.git" | ||
destination_branch: "master" | ||
|
||
- name: synctags | ||
uses: wei/git-sync@55c6b63b4f21607da0e9877ca9b4d11a29fc6d83 # corresponds to v3 | ||
with: | ||
source_repo: "NeuralEnsemble/elephant" | ||
source_branch: "refs/tags/*" | ||
destination_repo: "https://ghpusher:${{ secrets.EBRAINS_GITLAB_ACCESS_TOKEN }}@gitlab.ebrains.eu/neuralensemble/elephant.git" | ||
destination_branch: "refs/tags/*" |
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
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,11 @@ | ||
# This workflow will be executed on gitlab and trigger the spack build process | ||
# on commit to master branch on github NeuralEnsemble master branch. | ||
stages: # List of stages for jobs, and their order of execution | ||
- build | ||
|
||
build-job: # This job runs in the build stage, which runs first. | ||
stage: build | ||
script: | ||
- curl -X POST --fail -F "token=$EBRAINS_SPACK_BUILD_TRIGGER" -F "ref=feature/dev_version" https://gitlab.ebrains.eu/api/v4/projects/322/trigger/pipeline | ||
tags: | ||
- shell-runner |
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
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
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
Oops, something went wrong.