-
Notifications
You must be signed in to change notification settings - Fork 1
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 #19 from acisops/auto_build
Setting up automated builds
- Loading branch information
Showing
3 changed files
with
83 additions
and
0 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,10 @@ | ||
## Description | ||
|
||
|
||
|
||
## Testing | ||
|
||
- [ ] Passes unit tests on MacOS, linux, Windows (at least one required) | ||
- [ ] Functional testing | ||
|
||
Fixes # |
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,44 @@ | ||
name: Conda build | ||
on: | ||
push: | ||
branches: | ||
- master | ||
release: | ||
types: | ||
- created | ||
repository_dispatch: | ||
types: | ||
- conda-build | ||
|
||
jobs: | ||
build-linux: | ||
runs-on: ubuntu-latest | ||
name: Build on Linux | ||
steps: | ||
- name: Login to GitHub Package Registry | ||
run: docker login docker.pkg.github.com -u $GITHUB_ACTOR -p ${{ secrets.GITHUB_TOKEN }} | ||
- name: Pull Docker image | ||
run: docker pull docker.pkg.github.com/sot/skare3/centos5-builder:latest | ||
- name: Build | ||
id: build | ||
run: > | ||
docker run --rm --name builder -v $GITHUB_WORKSPACE:/github/workspace -w /github/workspace | ||
-e CONDA_PASSWORD -e GIT_USERNAME -e GIT_PASSWORD | ||
docker.pkg.github.com/sot/skare3/centos5-builder:latest | ||
${GITHUB_REPOSITORY} --tag ${GITHUB_SHA} | ||
env: | ||
CONDA_PASSWORD: ${{ secrets.CONDA_PASSWORD }} | ||
GIT_USERNAME: chandra-xray | ||
GIT_PASSWORD: ${{ secrets.CHANDRA_XRAY_TOKEN }} | ||
GIT_ASKPASS: /home/aca/git_pass.py | ||
- uses: sot/skare3_tools/actions/gdrive_upload@master | ||
name: Upload to Google Drive | ||
with: | ||
files: | | ||
builds/linux-64 | ||
builds/noarch | ||
directory: /ska3/conda-test | ||
options: --drive=cxc_ops | ||
env: | ||
GOOGLE_DRIVE_CREDENTIALS: ${{ secrets.GOOGLE_DRIVE_CREDENTIALS }} | ||
|
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,29 @@ | ||
name: Release | ||
on: | ||
release: | ||
types: | ||
- created | ||
|
||
jobs: | ||
patch-release: | ||
runs-on: ubuntu-latest | ||
name: Patch Release | ||
steps: | ||
- name: Fetch Skare3 Tools | ||
uses: actions/checkout@v2 | ||
with: | ||
repository: sot/skare3_tools | ||
ref: master | ||
path: skare3_tools | ||
- name: Release Description and Skare3 Issue | ||
run: | | ||
sudo -H pip3 install setuptools wheel | ||
sudo -H pip3 install -r ./skare3_tools/requirements.txt | ||
sudo -H pip3 install ./skare3_tools | ||
echo skare3-release-merge-info --user $GITHUB_ACTOR --repository $GITHUB_REPOSITORY --sha $GITHUB_SHA | ||
export GITHUB_PASSWORD=${{ secrets.GITHUB_TOKEN }} | ||
skare3-release-merge-info --user $GITHUB_ACTOR --repository $GITHUB_REPOSITORY --sha $GITHUB_SHA | ||
export GITHUB_PASSWORD=${{ secrets.CHANDRA_XRAY_TOKEN }} | ||
echo skare3-create-issue --user chandra-xray --repository sot/skare3 --latest-release $GITHUB_REPOSITORY --label 'Package update' | ||
skare3-create-issue --user chandra-xray --repository sot/skare3 --latest-release $GITHUB_REPOSITORY --label 'Package update' | ||
echo done |