CI/CD with GitHub Actions
Below is a step-by-step guide on how to set up a self-hosted GitHub Actions runner on AI-LAB. This allows you to run CI/CD jobs directly from GitHub on AI-LAB.
1. Create a self-hosted runner in GitHub
- Go to the repository in GitHub where you want to use the runner.
- Click “Settings” (at the top, depending on GitHub’s UI).
- Select “Actions” in the left menu, then choose “Runners.”
- Click “New self-hosted runner.”
- Choose Linux as the OS and X64 for the architecture.
- GitHub will display commands you need to run on AI-LAB.
- Press "Enter" to all settings, to get the default setup.
- Once you run
./run.sh
, the runner will stay in the foreground and listen for new GitHub jobs. Stop it with Ctrl+C when you’re done testing.
2. Create a GitHub Actions workflow
-
Create or edit a file called .github/workflows/ci.yaml in your repository with a minimal workflow:
name: AI-LAB test job on: push: branches: - main jobs: test-hpc: runs-on: self-hosted steps: - name: Check out repo uses: actions/checkout@v3 - name: AI-LAB hostname info run: | sbatch --output=hostname_output.txt --wrap="hostname"
-
With the runner, running on AI-LAB, the job should start immediately. Once complete, you can check the output file using:
cat actions-runner/_work/ai-lab-data/ai-lab-data/hostname_output.txt