fixed indium for gcc14 errors #98
Workflow file for this run
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
name: indium obs trigger | |
on: | |
push: | |
paths: | |
- '**/indium-x/**' | |
- '**/prepare_obs' | |
- '**/catChangeLog' | |
- .github/workflows/indium-obs.yml | |
- '!**/doc/*' | |
- '!**.md' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout_indium | |
uses: actions/checkout@v4 | |
- name: prepare obs | |
run: | | |
sudo apt-get update; sudo apt-get install libmysqlclient-dev tcl-dev | |
cd indium-x; ./prepare_obs indium | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: indium | |
path: ~/stage | |
- shell: bash | |
name: trigger_obs | |
run: | | |
# create ssh environment | |
mkdir ~/.ssh | |
echo "${{secrets.sf_private_key}}" > ~/.private_key | |
chmod 600 ~/.private_key | |
echo "${{secrets.sf_known_hosts}}" > ~/.ssh/known_hosts | |
# create gpg environment | |
echo "Importing gpg key" | |
echo "${{secrets.software_key}}" | gpg --batch --import | |
echo "Listing gpg key" | |
gpg --list-secret-keys --keyid-format LONG | |
# create archive and transfer | |
cd ~/stage | |
tar cvfz $GITHUB_WORKSPACE/indium-obs.tar.gz * | |
# create detached signature for obs archive | |
echo "${{secrets.software_passphrase}}" | gpg2 --pinentry-mode loopback \ | |
--passphrase-fd 0 --default-key "${{secrets.software_user}}" \ | |
-o indium-obs.sig --detach-sig $GITHUB_WORKSPACE/indium-obs.tar.gz | |
# copy to /home/frs/project/indimail/github | |
scp -q -i ~/.private_key $GITHUB_WORKSPACE/indium-obs.tar.gz \ | |
~/stage/indium-obs.sig "${{secrets.sf_user}}:${{secrets.sf_upload_path}}" | |
rm -f ~/.private_key ~/.ssh/known_hosts $GITHUB_WORKSPACE/indium-obs.tar.gz | |
rm -rf ~/stage |