We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56fa3da commit bd57513Copy full SHA for bd57513
.github/workflows/espresso-enclave.yaml
@@ -13,7 +13,7 @@ permissions:
13
14
jobs:
15
enclave-tests-on-ec2:
16
- runs-on: ubuntu-24.04-8core
+ runs-on: ubuntu-latest
17
timeout-minutes: 40
18
19
steps:
@@ -68,6 +68,18 @@ jobs:
68
--port 22 \
69
--cidr 0.0.0.0/0 || true
70
71
+ - name: Load environment variables
72
+ run: |
73
+ while IFS= read -r line; do
74
+ # Skip comments and empty lines
75
+ if [[ ! "$line" =~ ^#.* ]] && [[ -n "$line" ]]; then
76
+ # Remove quotes from values
77
+ line=$(echo "$line" | sed 's/"\(.*\)"/\1/')
78
+ echo "$line" >> $GITHUB_ENV
79
+ fi
80
+ done < ./espresso/.env
81
+ shell: bash
82
+
83
- name: Launch EC2 Instance
84
id: ec2
85
run: |
0 commit comments