Skip to content

Fixed encoding in tken files (text files) and token utils #196

Fixed encoding in tken files (text files) and token utils

Fixed encoding in tken files (text files) and token utils #196

Workflow file for this run

# SPDX-FileCopyrightText: 2009 Fermi Research Alliance, LLC
# SPDX-License-Identifier: Apache-2.0
on:
push:
branches:
- master
- branch_v3_7
jobs:
build_job:
runs-on: ubuntu-latest
name: A job to build GWMS RPMs
steps:
- name: Sparse checkout
shell: bash
run: |
REPO="https://${GITHUB_ACTOR}:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git"
BRANCH="${GITHUB_REF/#refs\/heads\//}"
# Following code is based on logs of actions/checkout@v, with sparseCheckout stuff inserted in the middle
echo "Syncing repository: $GITHUB_REPOSITORY"
echo "Working directory is '$(pwd)' GITHUB_WORKSPACE=$GITHUB_WORKSPACE BRANCH=$BRANCH"
git version
git init $GITHUB_WORKSPACE
git remote add origin https://github.com/$GITHUB_REPOSITORY
git config --local gc.auto 0
# Now interesting part
git config core.sparseCheckout true
# Add here contents of sparse-checkout line by line
echo ".github" >> .git/info/sparse-checkout
git -c protocol.version=2 fetch --no-tags --prune --progress --depth=10 origin +${GITHUB_SHA}:refs/remotes/origin/${BRANCH}
git checkout --progress --force -B ${BRANCH} refs/remotes/origin/${BRANCH}
id: sparse-checkout
- name: Checkout
uses: actions/checkout@v2
with:
path: "glideinwms"
- name: RPM build action step
id: build_rpm
uses: ./.github/actions/build-in-sl7-docker
- name: Archive RPM packages
if: always()
uses: actions/upload-artifact@v2
with:
name: rpmpackages
path: rpms.tar.bz2
retention-days: 7